ISPCAPS System Option: z/OS

Specifies whether to convert to uppercase printable ISPF parameters that are used in CALL ISPEXEC and CALL ISPLINK.
Valid in: Configuration file, SAS invocation, OPTIONS statement, SAS System Options window
Category: Host Interfaces: ISPF
PROC OPTIONS GROUP= ISPF
Default: NOISPCAPS
z/OS specifics: All

Syntax

ISPCAPS | NOISPCAPS

Details

If ISPCAPS is in effect, then the values of variables and literals that are used as parameters are passed to ISPF in uppercase.
If NOISPCAPS is in effect, then the caller must ensure that the parameters are in the proper case. The names of most ISPF parameters must be in uppercase.
The following example shows two ISPLINK calls. The first turns on the ISPCAPS option. As a result, the parameters that are specified in lowercase in the second ISPLINK call are passed to ISPF in uppercase.
DATA _NULL_;
   CALL ISPLINK('SAS','ISPCAPS');
   CALL ISPLINK('display', 'dmiem1');
   RUN;
To display the current settings of your ISPF options, use PROC OPTIONS GROUP=ISPF.