Chapter Contents |
Previous |
Next |
SAS Macro Language: Reference |
If your code runs in two different environments, you have essentially doubled the worth of your development effort. But portable applications require some planning ahead of time. For more details on any host-specific feature of the SAS System, refer to the SAS documentation for your host environment.
Using Portable SAS Language Functions with %SYSFUNC |
You can use the %SYSFUNC macro function to access SAS language functions to perform most host-specific operations, such as opening or deleting a file. You can find more information on these and other functions in the description of %SYSFUNC in Chapter 13.
Using %SYSFUNC to access portable SAS language functions can save you a lot of macro coding (and is therefore not only portable but also more efficient). Portable SAS Language Functions and Their Uses lists some common host-specific tasks and the functions that perform those tasks.
Task | SAS Language Function(s) |
---|---|
assign and verify existence of fileref and physical file | FILENAME, FILEREF, PATHNAME |
open a file | FOPEN, MOPEN |
verify existence of a file | FEXIST, FILEEXIST |
list available files | FILEDIALOG |
get information about afile | FINFO, FOPTNAME, FOPTNUM |
write data to a file | FAPPEND, FWRITE |
read from a file | FPOINT, FREAD, FREWIND, FRLEN |
close a file | FCLOSE |
delete a file | FDELETE |
open a directory | DOPEN |
return information about a directory | DINFO, DNUM, DOPTNAME, DOPTNUM, DREAD |
close a directory | DCLOSE |
read a host-specfic option | GETOPTION |
interact with the File Data Buffer (FDB) | FCOL, FGET, FNOTE, FPOS, FPUT, FSEP |
assign and verify librefs | LIBNAME, LIBREF, PATHNAME |
get information about executed host environment commands | SYSRC |
Note: Of course, you can also use other functions, such
as ABS, MAX, and TRANWRD, with %SYSFUNC. A few SAS language functions are
not available with %SYSFUNC; see Chapter 13 for more details.
The following program deletes the file identified by the fileref MYFILE:
%macro testfile(filrf); %let rc=%sysfunc(filename(filrf,physical-filename)); %if &rc = 0 and %sysfunc(fexist(&filrf)) %then %let rc=%sysfunc(fdelete(&filrf)); %let rc=%sysfunc(filename(filrf)); %mend testfile; %testfile(myfile)
Using Portable Automatic Variables with Host-specific Values |
The portable automatic macro variables are available under all host environments, but the values are determined by each host. Portable Automatic Macro Variables with Host-specific Results lists the portable macro variables by task. The "Type" column tells you if the variable can be changed (Read/Write) or can only be inspected (Read Only).
Task | Automatic Macro Varible | Type |
---|---|---|
list the name of the current graphics device on DEVICE=. | SYSDEVIC | Read/Write |
list of the mode of execution (values are FORE or BACK). Some host environments allow only one mode, FORE. | SYSENV | Read Only |
list the name of the currently executing batch job, userid, or process. For example, on UNIX, SYSJOBID is the PID. | SYSJOBID | Read Only |
list the last return code generated by your host environment, based
on commands executed using the X statement in open code, the X command in
display manager, or the %SYSEXEC (or %TSO or %CMS) macaro statements. The default value is 0. |
SYSRC | Read/Write |
list the abbreviation of the host environment you are using. | SYSSCP | Read Only |
list a more detailed abbreviation of the host environment you are using. | SYSSCPL | Read Only |
retrieve a character string that was passed to the SAS System by the SYSPARM= system option. | SYSPARM | Read/Write |
The macro DELFILE uses the value of SYSSCP to determine the platform that is running SAS and deletes a file with the TMP file extension (or file type). FILEREF is a macro parameter that contains a filename. Because the filename is host-specific, making it a macro parameter enables the macro to use whatever filename syntax is necessary for the host environment.
%macro delfile(fileref); %if /* Unix */sysscp=HP 800 or &sysscp=HP 300 %then %do; %sysexec rm &fileref..TMP; %end; %else %if /* VMS */sysscp=VMS %then %do; %sysexec %str(DELETE &fileref..TMP;*); %end; %else %if /* PC platforms */sysscp=OS2 or &sysscp=WIN %then %do; %sysexec DEL &fileref..TMP; %end; %else %if /* CMS */sysscp=CMS %then %do; %sysexec ERASE &fileref TMP A; %end; %mend delfile;
Here is a call to the macro DELFILE in a PC environment that deletes a file named C:\SAS\SASUSER\DOC1.TMP:
%delfile(c:\sas\sasuser\doc1)
In this program, note the use of the portable %SYSEXEC statement to carry out the host-specific operating system commands.
Now, suppose you know your macro application is going to run on some flavor of Microsoft Windows. It could be Windows NT, Windows 95, or Windows 3.1. Although these host environments use similar host environment command syntax, some terminology differs between them, different system options are available, and so on. The SYSSCPL automatic macro variable provides information about the name of the host environment, similar to the SYSSCP automatic macro variable. However, SYSSCPL provides more information and enables you to further tailor your macro code. Here is an example using SYSSCPL.
%macro whichwin; /* Discover which OS is running. */ %if &sysscpl=WIN_32S %then %do; %let flavor=32-bit version of Windows; %let term=directory; %end; %else %if &sysscpl=WIN_95 %then %do; %let flavor=Windows 95; %let term=folder; %end; %else %if &sysscpl=WNT_NT %then %do; %let flavor=Windows NT; %let term=folder; %end; %else %put *** You must be running a 16-bit version of Windows. ***; %mend whichwin; %macro direct; /* Issue directions to the user. */ %whichwin %put This program is running under &flavor; %put Please enter the &term your SAS files are stored in:; . . more macro code . %mend direct;
Suppose the SYSPARM= system option is set to the name of a city. That means the SYSPARM automatic variable is set to the name of that city. You can use that value to subset a data set and generate code specific to that value. Simply by making a small change to the command that invokes SAS (or to the configuration SAS file), your SAS job will perform different tasks.
/* Create a data set, based on the value of the */ /* SYSPARM automatic variable. */ /* An example data set name could be MYLIB.BOSTON. */ data mylib.&sysparm; set mylib.alltowns; /* Use the SYSPARM SAS language function to */ /* compare the value (city name) */ /* of SYSPARM to a data set variable. */ if town=sysparm(); run;
When this program executes, you end up with a data set that contains data for only the town you are interested in--and you can change what data set is generated before you start your SAS job.
Now suppose you want to further use the value of SYSPARM to control what procedures your job uses. The following macro does just that:
%macro select; %if %upcase(&sysparm) eq BOSTON %then %do; proc report ... more SAS code; title "Report on &sysparm"; run; %end; %if %upcase(&sysparm) eq CHICAGO %then %do; proc chart ... more SAS code; title "Growth Values for &sysparm"; run; %end; . . /* more macro code */ . %mend select;
The value of the SYSPARM automatic macro variable is the same as the
value of the SYSPARM= system option, which is equivalent to the return value
of the SAS language function SYSPARM. The default value is null. Because you
can use the SYSPARM= system option at SAS invocation, you can set the value
of the SYSPARM automatic macro variable before your SAS session begins.
The value of the SYSRC automatic macro variable contains the last return code generated by your host environment. The code returned is based on commands you execute using the X statement in open code, the X command in display manager, or the %SYSEXEC macro statement (as well as the nonportable %TSO and %CMS macro statements). Use the SYSRC automatic macro variable to test the success or failure of a host environment command.
Note: While supported on all
host environments in that it does not generate an error message in the SAS
log, the SYSRC automatic macro variable is not useful under all host environments.
For example, under some host environments, the value of this variable is always
99, regardless of the success or failure of the host environment command.
Check the SAS companion for your host environment to see if the SYSRC automatic
macro variable is useful for your host environment.
Macro Language Elements With System Dependencies |
Several macro language elements are host-specific, including the following:
For example, consider the following program:
%macro testsort(var); %if &var < a %then %put *** &var is less than a ***; %else %put *** &var is greater than a ***; %mend testsort; %testsort(1) /* Invoke the macro with the number 1 as the parameter. */
On EBCDIC systems, such as MVS, CMS, and VSE, this program causes the following to be written to the SAS log:
*** 1 is greater than a ***
But on ASCII systems (such as OS/2, OpenVMS, UNIX, or Windows), the following is written to the SAS log:
*** 1 is less than a ***
ASCII systems | blank . < ( + & ! $ * ) ; ^ - / , % | |
EBCDIC systems | blank . < ( + | & ! $ * ) ; ¬ - / , % | ¢ |
Host-Specific Macro Variables |
Some host environments create unique macro variables. Host-specific Macro Variables for MVS, Host-specific Macro Variables for OpenVMS, and Host-specific Macro Variables for the Macintosh list some commonly used host-specific macro variables. Additional host-specific macro variables may be available in future releases. See your SAS companion for more details.
Variable Name | Description |
---|---|
SYS99ERR | SVC99 error reason code |
SYS99INF | SVC99 info reason code |
SYS99MSG | YSC99 text message corresponding to the SVC error or info reason code |
SYS99R15 | SVC99 return code |
SYSJCTID | value of the JCTUSER field in the JCT control block |
SYSJMRID | value of the JMRUSEID field in the JCT control block |
SYSUID | the TSO userid associated with the SAS session |
Variable Name | Description |
---|---|
VMSSASIN | value of the SYSIN= system option or the name of the noninteractive file that was submitted |
Variable Name | Description |
---|---|
SYSSTNAM | step name |
SYSETIME | elapsed time |
SYSFRMEM | free memory available |
SYSBFTRY | number of attempts to access data in a host buffer used for SAS files |
SYSBFHIT | number of successful attempts to access data in a host buffer |
SYSXRDS | number of reads to external files |
SYSXWRS | number of writes to external files |
SYSXBRD | number of bytes read from external files |
SYSBWR | number of bytes written to external files |
SYSXOPNS | number of opens for external files |
SYSSRDS | number of reads to SAS files |
SYSSWRS | number of writes to SAS files |
SYSSBRD | number of bytes read from SAS files |
SYSSBWR | number of bytes written to SAS files |
SYSSOPNS | number ofopens for SAS files |
Naming Macros and External Files for Use with the Autocall Facility |
When naming macros that will be stored in an autocall library, you should consider the following:
Chapter Contents |
Previous |
Next |
Top of Page |
Copyright 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.