Execution |
Scroll |
The syntax to invoke the ISPF interface from TSO option 6 is:
EXEC 'SQDATA.V4nnnnn.ISPFLIB(SQDC$STA)' 'SQDATA.V4nnnnn' |
Where the first argument is the fully qualified name of the start module SQDC$STA and the second argument is the high-level qualifier of the SQDATA ISPF library. You can change your load library and other defaults values in Defaults option 0 (see below).
To create a REXX exec to invoke the ISPF interface, simply create a new exec member with the following contents.
/* --------------------- REXX procedure ---------------------- */ EXEC “'SQDATA.V4nnnnn.ISPFLIB(SQDC$STA)' 'SQDATA.V4nnnnn'” |