1                                          The SAS System          08:38 Thursday, February 16, 2006

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_HOME  platform.



NOTE: SAS initialization used:
      real time           0.12 seconds
      cpu time            0.07 seconds
      

NOTE: AUTOEXEC processing beginning; file is C:\temp\cdiscbld\testing\saspgm\autoexec.sas.

NOTE: Libref _CDISC_ was successfully assigned as follows: 
      Engine:        V9 
      Physical Name: d:\My Projects\SAS\CDISCBUILDER\sashelp

NOTE: AUTOEXEC processing completed.

1          /*------------------------------------------------------------*
2          * program:     findings1.sas                                  *
3          * Description: Test missing required parameters.              *
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: C:\temp\cdiscbld\testing\data\findings
9          
10         data data.shoes;
11         attrib usubjid length=8 label="Patient ID";
12         set sashelp.shoes;
13         usubjid=datetime()*100;
14         run;

NOTE: There were 395 observations read from the data set SASHELP.SHOES.
NOTE: The data set DATA.SHOES has 395 observations and 8 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.01 seconds
      

15         
16         *** Test of missing DATA ***;
17         %findings(data=, studyid=, rdomain=, usubjid=, testvars=, varname=, output=, basecode=);

  
ERROR: [findings] is missing required parameter DATA. 
  
NOTE: PROCEDURE DISPLAY used (Total process time):
      real time           0.12 seconds
2                                          The SAS System          08:38 Thursday, February 16, 2006

      cpu time            0.09 seconds
      

18         
19         *** Test of missing STUDYID ***;
20         %findings(data=data.shoes, studyid=, rdomain=, usubjid=, testvars=, varname=, output=,
20       ! basecode=);

  
ERROR: [findings] is missing required parameter STUDYID. 
  
NOTE: PROCEDURE DISPLAY used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      

21         
22         *** Test of missing RDOMAIN ***;
23         %findings(data=data.shoes, studyid=studyid, rdomain=, usubjid=, testvars=, varname=,
23       ! output=, basecode=);

  
ERROR: [findings] is missing required parameter RDOMAIN. 
  
NOTE: PROCEDURE DISPLAY used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      

24         
25         *** Test of missing USUBJID ***;
26         %findings(data=data.shoes, studyid=studyid, rdomain=AU, usubjid=, testvars=, varname=,
26       ! output=, basecode=);

  
ERROR: [findings] is missing required parameter USUBJID. 
  
NOTE: PROCEDURE DISPLAY used (Total process time):
      real time           0.01 seconds
      cpu time            0.01 seconds
      

27         
28         *** Test of missing VARNAME ***;
29         %findings(data=data.shoes, studyid=studyid, rdomain=AU, usubjid=usubjid, testvars=,
29       ! varname=, output=, basecode=);

  
ERROR: [findings] is missing required parameter VARNAME. 
  
NOTE: PROCEDURE DISPLAY used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      
3                                          The SAS System          08:38 Thursday, February 16, 2006


30         

NOTE: SAS Institute Inc., SAS Campus Drive, Cary, NC USA 27513-2414
NOTE: The SAS System used:
      real time           0.32 seconds
      cpu time            0.20 seconds
      
