1                                          The SAS System          08:35 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.14 seconds
      cpu time            0.17 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:     ordervar3.sas                                  *
3          * Description: Test condition where the parameter basecode is *
4          *              invalid.                                       *
5          *                                                             *
6          * By:          Meta-Xceed, Inc.                               *
7          *              Minh Nguyen, 09/15/2005                        *
8          *-------------------------------------------------------------*/
9          libname data '..\data\ordervar';
NOTE: Libref DATA was successfully assigned as follows: 
      Engine:        V9 
      Physical Name: C:\temp\cdiscbld\testing\data\ordervar
10         
11         data data.shoes;
12         set sashelp.shoes;
13         run;

NOTE: There were 395 observations read from the data set SASHELP.SHOES.
NOTE: The data set DATA.SHOES has 395 observations and 7 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.01 seconds
      

14         data data.company;
15         set sashelp.company;
16         run;

NOTE: There were 48 observations read from the data set SASHELP.COMPANY.
NOTE: The data set DATA.COMPANY has 48 observations and 8 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      
2                                          The SAS System          08:35 Thursday, February 16, 2006


17         data data.manage;
18         set sashelp.manage;
19         run;

NOTE: There were 12 observations read from the data set SASHELP.MANAGE.
NOTE: The data set DATA.MANAGE has 12 observations and 7 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.01 seconds
      

20         
21         *** Test of invalid path ***;
22         %ordervar(data=data.shoes, rdomain=AE, key1=product, basecode=z:\invalid\basecode.sas);

  
ERROR: [ordervar] The base code path 'z:\invalid' does not exist. 
  
NOTE: PROCEDURE DISPLAY used (Total process time):
      real time           0.14 seconds
      cpu time            0.10 seconds
      

23         
24         *** Test of invalid file type ***;
25         %ordervar(data=data.shoes, rdomain=AE, key1=product, basecode=.\basecode.txt);

  
ERROR: [ordervar] The base code file must be SAS file. 
  
NOTE: PROCEDURE DISPLAY used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      


NOTE: SAS Institute Inc., SAS Campus Drive, Cary, NC USA 27513-2414
NOTE: The SAS System used:
      real time           0.39 seconds
      cpu time            0.31 seconds
      
