The LCSF command can be used to report same information as Scoreboard or CSF.
Release: All
Component: ESP Workload Automation
The LCSF command supports the same filter criteria as freeform filter on CSF, which is documented in the Operator's Guide. This command was added for web-based interface, so its output has a format easy for parsing.
You can issue LCSF command from page mode, or in a batch job.
Here is an example to show jobs that are in Waiting status:
From page mode:
LCSF STATUS='WAITING-'
In batch job:
//ESPBATCH JOB
//ESP EXEC PGM=ESP,PARM='SUBSYS(sub_sys)'
//STEPLIB DD DSN=prefix.CD7YLOAD,DISP=SHR
//SYSPRINT DD SYSOUT=*
//SYSIN DD *
LCSF STATUS='WAITING-'
//
Note: Change sub_sys and prefix to proper values. SYSPRINT can be defined as below to allow longer line output:
//SYSPRINT DD SYSOUT=X,
// DCB=(RECFM=FB,LRECL=400,BLKSIZE=12000),
// SPACE=(CYL,(1,1),RLSE)