1                                                          The SAS System                            14:35 Monday, February 22, 2010

NOTE: Unable to open SASUSER.REGSTRY. WORK.REGSTRY will be opened instead.
NOTE: All registry changes will be lost at the end of the session.

WARNING: Unable to copy SASUSER registry to WORK registry. Because of this, you will not see registry customizations during this 
         session.
NOTE: Unable to open SASUSER.PROFILE. WORK.PROFILE will be opened instead.
NOTE: All profile changes will be lost at the end of the session.
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           1.01 seconds
      cpu time            0.28 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.01 seconds
      cpu time            0.00 seconds
      


NOTE: AUTOEXEC processing completed.

1          /*------------------------------------------------------------*
2          * program:     findings3b.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 file type ***;
11         %findings(data=data.findings, studyid=studyid, rdomain=AU, usubjid=usubjid,
11       ! testvars=Testvar1 Testvar2, varname=Var1 Var2 Var3, output=data.AU,
11       ! basecode=.\basecode.txt);
NOTE: Libref CDISCBLD was successfully assigned as follows: 
2                                           The SAS System             14:35 Monday, February 22, 2010

      Engine:        V9 
      Physical Name: C:\Program Files\MetaXceed\Cdiscbuilder\saspgm

12               options nofmterr;

  
WARNING: [findings] base code file name is invalid. 
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.01 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
3                                           The SAS System             14:35 Monday, February 22, 2010

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):
      real time           0.23 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.03 seconds
      cpu time            0.03 seconds
      

NOTE: Unable to open SASUSER.PROFILE. WORK.PROFILE will be opened instead.
NOTE: All profile changes will be lost at the end of the session.

NOTE: PROCEDURE DISPLAY used (Total process time):
      real time           2.26 seconds
      cpu time            0.45 seconds
      


NOTE: SAS Institute Inc., SAS Campus Drive, Cary, NC USA 27513-2414
NOTE: The SAS System used:
      real time           3.57 seconds
      cpu time            0.76 seconds
      
