The following SAS program
validates CDISC SDTM data that is stored in the SAS data set Results.AE:
-
The LIBNAME statement
assigns the libref Results to the physical location of the input SAS
data set to be validated.
-
The PROC CDISC statement
specifies CDISC SDTM as the model.
-
The SDTM statement specifies
the SDTM version number.
-
The DOMAINDATA statement
specifies the SAS data set to be validated, the two-character domain
code, and the domain model type.
libname Results 'C:\MyFiles\'; 1
proc cdisc model=sdtm; 2
sdtm sdtmversion="3.1"; 3
domaindata data=Results.AE domain=AE category=events; 4
run;
libname Results clear;