/*------------------------------------------------------------*
* program:     cdisc2b.sas                                    *
* Description: Verify input multiple datasets                 *
* By:          Sy Truong, 10/14/2009                          *
*-------------------------------------------------------------*/
 
libname templib '../data';

*** Create some data to be selected ***;
data templib.cdisc2b_1 (label="Demographics");
   usubjid='';
   b=2;
   c=3;
run;

data templib.cdisc2b_2 (label="Demographics");
   a=1;
   b=2;
   c=3;
run;

data templib.cdisc2b_3 (label="Demographics");
   a=1;
   b=2;
   c=3;
run;


*** Test multiple datasets to capture all ***;
%cdisc (datlib=templib, datname= cdisc2b_1 cdisc2b_2 cdisc2b_3);

