*-------------------------------------------------------------*;              
* program:     cdisc.sas                                      *;              
* Description: Verify SAS datasets against CDISC standards    *;
* By:          Sy Truong, 8/15/2003                           *;              
*-------------------------------------------------------------*;              

*** Update the path to reflect your location ***;
libname pgmlib 'C:\temp\progs';

%macro cdisc(datlib=, datname=);
   proc display cat = pgmlib.cdisc.cdisc.scl;
   run;
%mend ;

%macro install;
   *** Update the filename to reflect your location ***;
   filename outfile 'C:\temp\progs\cdisc.xpt';

   *** Perform CIMPORT to create a proper catalog ***;
   proc cimport catalog = pgmlib.cdisc
      file = outfile;
   run;
%mend ;


