SAS Documentation
SASĀ® Solution for Stress Testing
Reference manual - version 08.2021
Loading...
Searching...
No Matches
va_report_config.sas
Go to the documentation of this file.
1/*
2 Copyright (C) 2017 SAS Institute Inc. Cary, NC, USA
3*/
4
5/**
6 \file
7 \brief The table VA_REPORT_CONFIG contains lists to drive interaction in VA reports
8
9 |PK |Variable |Type |Not Null * |Label |Description |
10 |--------------|------------|------------------|-----------|---------------------------------|------------------------------------------------------|
11 | | ITEM_TYPE | VARCHAR(100) | Y | Item Type | |
12 | | ITEM_NM | VARCHAR(100) | Y | Item Name | |
13
14 (*) indicates a not-nullable variable.
15
16
17 \details
18
19 \ingroup ddlStaticReporting
20 \author SAS Institute Inc.
21 \date 2015
22*/
23CREATE TABLE &LIBREF..VA_REPORT_CONFIG (
24 ITEM_TYPE VARCHAR(100) label='Item Type',
25 ITEM_NM VARCHAR(100) label='Item Name'
26);