The following are some of the most common ways to display Exits and Exit Routines:
1. Display the names of all the Exits
/D PROG,EXIT,ALL
Example of what this command returns:
CSV460I 13.31.32 PROG,EXIT DISPLAY 941
EXIT DEF EXIT DEF EXIT DEF
SYSSTC.IEFACTRT E SYSSTC.IEFUJI E SYSSTC.IEFUJV E
SYS.IEFACTRT E SYS.IEFUJI E SYS.IEFUJV E
SYS.IEFU83 E SYS.IEFU84 E SYS.IEFU85 E
SYSSTC.IEFU83 E SYSSTC.IEFU84 E SYSSTC.IEFU85 E
...
2. Display the names of all exit routines associated with the named exit
/D PROG,EXIT,EXITNAME=exit_name
Example:
exit_name = SYS.IEFACTRT
/D PROG,EXIT,EXITNAME=SYS.IEFACTRT
Returns:
RESPONSE=TST1
CSV461I 14.15.02 PROG,EXIT DISPLAY 068
EXIT MODULE STATE MODULE STATE MODULE STATE
SYS.IEFACTRT IEFACTRT A STRBACTR A
3. Display the names of the exits with which the specified exit routine is associated
/D PROG,EXIT,MODNAME=mod_name
Example:
mod_name = IEFACTRT
/D PROG,EXIT,MODNAME=IEFACTRT
Returns:
RESPONSE=TST1
CSV462I 14.20.25 PROG,EXIT DISPLAY 906
MODULE IEFACTRT
EXIT(S) SYSSTC.IEFACTRT SYS.IEFACTRT
Be the first to comment