Chapter Contents |
Previous |
Next |
SAS Companion for the OpenVMS Operating Environment |
FORE
.27A0D1D2
).x 'dirf'; /* an invalid OpenVMS command */ %put This OpenVMS status is &sysrc; x 'dir'; /* a valid OpenVMS command */ %put The corrected OpenVMS status is &sysrc;When these statements are issued, the following lines are written to the SAS log:
This OpenVMS status is 229520 The corrected OpenVMS status is 0
VMS_AXP
. In the OpenVMS VAX operating environment, SYSSCP returns the value
VMS
.OpenVMS
for both the OpenVMS Alpha and VAX operating environments.xresources="name"
or the word
SAS
plus the SAS session ID.
SAS
is the default. The SAS session ID is incremented once for each concurrent
session that is started. For example, if you start a second SAS session without
ending the first session, then the default client name for the second session
is
SAS2
. The following is an example using this macro variable:
data test; infile '[school]roster.dat'; input name $ age grade $; run; proc print data=test; title "Output generated by &vmssasin program."; run;
Alternatively, you could put the value of the VMSSASIN macro variable into a variable in your data set:
data test; infile '[school]roster.dat'; input name $ age grade $; job=symget("vmssasin"); run;
Chapter Contents |
Previous |
Next |
Top of Page |
Copyright 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.