SAS Documentation
SASĀ® Solution for Stress Testing
Reference manual - version 08.2021
Loading...
Searching...
No Matches
report_config.sas
Go to the documentation of this file.
1/* Copyright (C) 2017 SAS Institute Inc. Cary, NC, USA */
2
3/*!
4\file
5\brief The table REPORT_CONFIG contains configuration for the generation of disclosure reports.
6
7 |PK |Variable |Type | Required? |Label |Description |
8 |--------------|------------------|------------------|-----------|---------------------------|--------------------------------------------------------------------------------------------------------------------|
9 | ![ ](pk.jpg) | REPORT_ID | VARCHAR(100) | Y | Report Id | Unique identifier of the report |
10 | | REPORT_NAME | VARCHAR(256) | Y | Report Name | Name of the report |
11 | | TEMPLATE_NAME | VARCHAR(256) | Y | Template Name | Name of the Excel template file (including xlsx extension) to be populated |
12 | | SOURCE_CODE | VARCHAR(256) | Y | Source Code | SAS program to be executed (must be saved under irm/source/sas/nodes) |
13
14\details
15
16
17\ingroup ddlStaticReporting
18\author SAS Institute Inc.
19\date 2019
20*/
21
22CREATE TABLE &LIBREF..REPORT_CONFIG (
23 REPORT_ID VARCHAR(100) NOT NULL label = 'Report Id',
24 REPORT_NAME VARCHAR(256) NOT NULL label = 'Report Name',
25 TEMPLATE_NAME VARCHAR(256) NOT NULL label = 'Template Name',
26 SOURCE_CODE VARCHAR(256) NOT NULL label = 'Source Code',
27 CONSTRAINT PRIM_KEY PRIMARY KEY (REPORT_ID)
28);