Previous Page | Next Page

System Options under z/OS

SASAUTOS= System Option: z/OS



Specifies the location of the autocall library.
Default: SASAUTOS
Valid in: configuration file, SAS invocation, OPTIONS statement, OPTIONS window
Category: Environment Control: ENVFILES
Macro: MACRO
PROC OPTIONS GROUP= ENVFILES
MACRO
z/OS specifics: file-specification
See: SAS Macro Language: Reference

Syntax
Details
See Also

Syntax

SASAUTOS=file-specification | (file-specification-1 . . . file-specification-n)

file-specification

identifies the name of an external autocall library. Under z/OS, it can be any valid SAS fileref or a physical filename of a PDS, PDSE, or UFS directory.

You can specify one or more autocall libraries. They are searched in the order in which they are listed.


Details

SAS looks for autocall members in autocall libraries specified by SASAUTOS=. By default, SAS looks in the library that is associated with the SASAUTOS fileref. Once you specify the SASAUTOS= system option, that specification replaces the default.

The SASAUTOS= system option enables the concatenation of autocall libraries that have different encodings. For example, the following statements will concatenate two libraries where one library has the open_ed-1047 encoding and one library has the open_ed-1143 encoding.

FILENAME XYG1 'SASPROD.XYG1.AUTOCALL.SAS' ENCODING='open_ed-1047';
FILENAME mymacro 'USERID.AUTOCALL.SAS' ENCODING='open_ed-1143';
OPTIONS SASAUTOS=(mymacro, XYG1, SASAUTOS);

You can use the APPEND and INSERT system options to add additional file specifications. For details see the APPEND and INSERT system options.


See Also

Previous Page | Next Page | Top of Page