1                                           The SAS System             14:35 Monday, February 22, 2010

NOTE: Copyright (c) 2002-2003 by SAS Institute Inc., Cary, NC, USA. 
NOTE: SAS (r) 9.1 (TS1M3)
      Licensed to META-XCEED INC, Site 0035729001.
NOTE: This session is executing on the XP_PRO  platform.



NOTE: SAS 9.1.3 Service Pack 2

NOTE: SAS initialization used:
      real time           0.86 seconds
      cpu time            0.21 seconds
      
WARNING:  C:\Program Files\SAS\SAS 9.1\dquality\sasmsg IS MISSING FROM CONCATENATION.

NOTE: AUTOEXEC processing beginning; file is D:\TEST SCRIPT\CDISCBUILDER\thu muc 
      data\saspgm\autoexec.sas.


----> This is the part of the autoexec.
NOTE: DATA statement used (Total process time):
      real time           0.03 seconds
      cpu time            0.01 seconds
      


NOTE: AUTOEXEC processing completed.

1          /*------------------------------------------------------------*
2          * program:     findings3a.sas                                 *
3          * Description: Test if the basecode is invalid.               *
4          *                                                             *
5          * By:          Meta-Xceed, Inc.                               *
6          *              Minh Nguyen, 09/07/2005                        *
7          *-------------------------------------------------------------*/
8          libname data '..\data\findings';
NOTE: Libref DATA was successfully assigned as follows: 
      Engine:        V9 
      Physical Name: D:\TEST SCRIPT\CDISCBUILDER\thu muc data\data\findings
WARNING:  c:\apache\htdocs\biflash\VB6\saspgm is missing from concatenation.
WARNING:  C:\Program Files\SAS\SAS 9.1\dquality\sasmacro is missing from concatenation.
9          
10         *** Test of invalid path ***;
11         %findings(data=data.findings, studyid=studyid, rdomain=AU, usubjid=usubjid,
11       ! testvars=Testvar1 Testvar2, varname=Var1 Var2 Var3, output=data.AU,
11       ! basecode=xyz:\basecode.sas);
NOTE: Libref CDISCBLD was successfully assigned as follows: 
      Engine:        V9 
      Physical Name: C:\Program Files\MetaXceed\Cdiscbuilder\saspgm

12               options nofmterr;

  
WARNING: [findings] base code file path does not exist. 
2                                           The SAS System             14:35 Monday, February 22, 2010

NOTE: base code file will not be created. 
  
  
WARNING: [findings] the output DATA.AU dataset is already exist. 
NOTE: This dataset will be overwritten with new information. 
  
13         data TESTVAR1 ;
14            attrib testname label="Test Name" length=$100;
15            set DATA.AU data.findings;
16            testname = "TESTVAR1 ";
17            studyid = "studyid";
18            rdomain = "AU";
19            usubjid = usubjid;
20            autest = TESTVAR1 ;
21            keep autest Var1 Var2 Var3 testname studyid rdomain usubjid ;
22         run;

NOTE: There were 0 observations read from the data set DATA.AU.
NOTE: There were 3 observations read from the data set DATA.FINDINGS.
NOTE: The data set WORK.TESTVAR1 has 3 observations and 8 variables.
NOTE: DATA statement used (Total process time):
      real time           0.03 seconds
      cpu time            0.03 seconds
      

23         data TESTVAR2;
24            attrib testname label="Test Name" length=$100;
25            set DATA.AU data.findings;
26            testname = "TESTVAR2";
27            studyid = "studyid";
28            rdomain = "AU";
29            usubjid = usubjid;
30            autest = TESTVAR2;
31            keep autest Var1 Var2 Var3 testname studyid rdomain usubjid ;
32         run;

NOTE: There were 0 observations read from the data set DATA.AU.
NOTE: There were 3 observations read from the data set DATA.FINDINGS.
NOTE: The data set WORK.TESTVAR2 has 3 observations and 8 variables.
NOTE: DATA statement used (Total process time):
      real time           0.03 seconds
      cpu time            0.01 seconds
      

33         data DATA.AU;
34            set
35               TESTVAR1
36               TESTVAR2;
37         run;

NOTE: There were 3 observations read from the data set WORK.TESTVAR1.
NOTE: There were 3 observations read from the data set WORK.TESTVAR2.
NOTE: The data set DATA.AU has 6 observations and 8 variables.
NOTE: DATA statement used (Total process time):
3                                           The SAS System             14:35 Monday, February 22, 2010

      real time           0.06 seconds
      cpu time            0.00 seconds
      

  
NOTE: [findings] has created the new output data: DATA.AU 
  
38                  data DATA.AU(label="Autopsy Findings");
39                     set DATA.AU;
40                  run;

NOTE: There were 6 observations read from the data set DATA.AU.
NOTE: The data set DATA.AU has 6 observations and 8 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.01 seconds
      

NOTE: PROCEDURE DISPLAY used (Total process time):
      real time           3.00 seconds
      cpu time            0.37 seconds
      


NOTE: SAS Institute Inc., SAS Campus Drive, Cary, NC USA 27513-2414
NOTE: The SAS System used:
      real time           4.18 seconds
      cpu time            0.65 seconds
      
