1                                          The SAS System          16:27 Wednesday, November 9, 2005

NOTE: Copyright (c) 1999-2001 by SAS Institute Inc., Cary, NC, USA. 
NOTE: SAS (r) Proprietary Software Release 8.2 (TS2M0)
      Licensed to META-XCEED INC, Site 0035729001.
NOTE: This session is executing on the WIN_PRO  platform.



NOTE: SAS initialization used:
      real time           0.14 seconds
      cpu time            0.07 seconds
      

NOTE: AUTOEXEC processing beginning; file is C:\WorkRoom\varlen\testing\saspgm\autoexec.sas.

NOTE: Libref _TEMPLIB was successfully assigned as follows: 
      Engine:        V8 
      Physical Name: C:\WorkRoom\varlen\testing\saspgm

NOTE: AUTOEXEC processing completed.

1          /*------------------------------------------------------------*
2          * program:     varlen4.sas                                    *
3          * Description: Verify that ROUND only accepts value 			*
4          *              is 10, 20 or none.									*
5          * By:          Nam Phuong, 11/9/2005                          *
6          *-------------------------------------------------------------*/
7          libname dat '..\data\varlen';
NOTE: Libref DAT was successfully assigned as follows: 
      Engine:        V8 
      Physical Name: C:\WorkRoom\varlen\testing\data\varlen
8          
9          %varlen(indata= dat.varlen_demo, round=5,output=);

  
ERROR: [varlen] ROUND parameter must be 10, 20 or none. 
  
NOTE: PROCEDURE DISPLAY used:
      real time           0.23 seconds
      cpu time            0.04 seconds
      

10         %varlen(indata= dat.varlen_demo, round=6,output=);

  
ERROR: [varlen] ROUND parameter must be 10, 20 or none. 
  
NOTE: PROCEDURE DISPLAY used:
      real time           0.01 seconds
      cpu time            0.01 seconds
      

11         %varlen(indata= dat.varlen_demo, round=25,output=);

  
2                                          The SAS System          16:27 Wednesday, November 9, 2005

ERROR: [varlen] ROUND parameter must be 10, 20 or none. 
  
NOTE: PROCEDURE DISPLAY used:
      real time           0.00 seconds
      cpu time            0.00 seconds
      

12         %varlen(indata= dat.varlen_demo, round=15,output=);

  
ERROR: [varlen] ROUND parameter must be 10, 20 or none. 
  
NOTE: PROCEDURE DISPLAY used:
      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.56 seconds
      cpu time            0.23 seconds
      
