1 The SAS System 16:31 Sunday, July 26, 2026 NOTE: Copyright (c) 2002-2012 by SAS Institute Inc., Cary, NC, USA. NOTE: SAS (r) Proprietary Software 9.4 (TS1M4) Licensed to NORTH CAROLINA STATE UNIVERSITY-SFA-T&R, Site 70081220. NOTE: This session is executing on the Linux 5.14.0-284.11.1.el9_2.x86_64 (LIN X64) platform. NOTE: Updated analytical products: SAS/STAT 14.2 SAS/ETS 14.2 SAS/OR 14.2 SAS/IML 14.2 SAS/QC 14.2 NOTE: Additional host information: Linux LIN X64 5.14.0-284.11.1.el9_2.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Apr 12 10:45:03 EDT 2023 x86_64 Red Hat Enterprise Linux release 9.2 (Plow) You are running SAS 9. Some SAS 8 files will be automatically converted by the V9 engine; others are incompatible. Please see http://support.sas.com/rnd/migration/planning/platform/64bit.html PROC MIGRATE will preserve current SAS file attributes and is recommended for converting all your SAS libraries from any SAS 8 release to SAS 9. For details and examples, please see http://support.sas.com/rnd/migration/index.html This message is contained in the SAS news file, and is presented upon initialization. Edit the file "news" in the "misc/base" directory to display site-specific news and information in the program log. The command line option "-nonews" will prevent this display. NOTE: SAS initialization used: real time 0.34 seconds cpu time 0.05 seconds 1 /* 2 Date: 2019-11-04 ERROR: '/share/groupid/username' : No such directory. 3 Purpose: My_program 4 */ 5 6 *Set filerefs and librefs; 7 x "cd /share/groupid/username" 7 ! ; 8 filename lsas "."; 9 libname lsas "."; NOTE: Libref LSAS was successfully assigned as follows: Engine: V9 Physical Name: /gpfs_common/share01/Support/rsenthi/SAS 10 ** use this directory to store any output you want to see or use after the program is done, 11 ** all file in working directory will be deleated once program is done; 2 The SAS System 16:31 Sunday, July 26, 2026 12 13 *Global options; 14 *ods trace off; 15 ods listing ; 16 options linesize = 90 NODATE ; 17 18 19 data work.A ; 20 var1 = "Hello World!"; 21 run; NOTE: The data set WORK.A has 1 observations and 1 variables. NOTE: DATA statement used (Total process time): real time 0.19 seconds cpu time 0.02 seconds 22 23 24 proc print data=work.A; 25 run; NOTE: There were 1 observations read from the data set WORK.A. NOTE: The PROCEDURE PRINT printed page 1. NOTE: PROCEDURE PRINT used (Total process time): real time 0.06 seconds cpu time 0.00 seconds 26 27 * If use ods pdf to print output, close it here; 28 *ods pdf close; 29 quit; ERROR: Errors printed on page 1. NOTE: SAS Institute Inc., SAS Campus Drive, Cary, NC USA 27513-2414 NOTE: The SAS System used: real time 1.13 seconds cpu time 0.10 seconds