List all Suspended Events in ESP
search cancel

List all Suspended Events in ESP

book

Article ID: 262747

calendar_today

Updated On:

Products

ESP Workload Automation

Issue/Introduction

Need to display a list of all applications / jobs that are suspended in ESP

Environment

Release : 12.0

Cause

Applications and jobs in ESP are by definition not actually suspended, SUSPEND is performed at the EVENT level.

Any workload associated with an EVENT that is suspended could be considered 'suspended'.

Resolution

Run the List Event command as below to generate a list of all Suspended EVENTs.

In Pagemode:

L LEVEL(-.-) SELECT(SUSPENDED) ALL

In Batch

//STEP001  EXEC PGM=ESP,PARM='SUBSYS(xxxx) MASTER’   <===  enter ESP subsys id           

//STEPLIB  DD DSN=<esp load library>,DISP=SHR   <===  enter steplib if required           

//SYSPRINT DD  SYSOUT=*      <===  can be SYSOUT or to a file.           

//SYSIN    DD *                                             

   L LEVEL(-.-) SELECT(SUSPENDED) ALL

 

Refer the INVOKE statement to determine what workload (application / jobs) is associated with the EVENT.

Additional Information

Further information on LIST command