Thursday, October 10, 2019

REXX: Delayed-Access Columns in SDSF


To create variables for the alternate field list including delayed access columns, the below ADDRESS SDSF command should be issued.

isfprefix = "your prefix *"
rc=isfcalls('on')
address sdsf "isfexec st (alternate delayed)"
do index=1 to jobid.ix
     say timer.index
     say dater.index
end

timer and dater are alternate field variables. They are introduced into your macro by the command (alternate delayed).

 Entire list of columns in ST panel is available at List of Columns in ST Panel.


Related topics: Accessing SDSF using REXX

Featured Post

REXX Skeleton: Submitting jobs through Rexx

Submitting jobs through REXX and reading the spool through REXX gives us immense potential to automate many manual activities in mainframes....