Published on :
Macro CREATION_INTERNE

CST Framework Initialization and CDISC-SDTM Table Creation

This code is also available in: Deutsch Español Français
Awaiting validation
This program initializes standard properties for the SAS© Clinical Standards Toolkit (CST) framework. It defines the root macro variable (_cstGroot) and uses the '%cst_createTablesForDataStandard' macro to generate the tables or structures necessary for the CDISC-SDTM version 3.1.2 standard in the work library (WORK).
Data Analysis

Type : CREATION_INTERNE


Data structures are generated by CST framework macros based on the specified standard's metadata.

1 Code Block
MACRO CALL
Explanation :
Macro call to initialize and set standard properties for the CST framework.
Copied!
1* initialize the toolkit framework;
2%cst_setStandardProperties(
3 _cstStandard=CST-FRAMEWORK,
4 _cstSubType=initialize);
2 Code Block
MACRO CALL
Explanation :
Utility call to define the global macro variable _cstGroot, likely indicating the toolkit's root path.
Copied!
1* define _ctsGroot macro variable;
2%cstutil_setcstgroot;
3 
3 Code Block
MACRO CALL Data
Explanation :
Generation of tables associated with the CDISC-SDTM v3.1.2 standard in the WORK library via the dedicated framework macro.
Copied!
1%cst_createTablesForDataStandard(
2 _cstStandard=XYZ std CDISC-SDTM,
3 _cstStandardVersion=3.1.2,
4 _cstOutputLibrary=work
5 );
This material is provided "as is" by We Are Cas. There are no warranties, expressed or implied, as to merchantability or fitness for a particular purpose regarding the materials or code contained herein. We Are Cas is not responsible for errors in this material as it now exists or will exist, nor does We Are Cas provide technical support for it.