JCL example of producing configuration reports

This example shows the JCL statements to produce IOCP reports of all the Ax IOCDSs read from the Support Element hard disk. IOCP requires SYSLST for the output data set. It sends reports to SYSLST. You do not need an ASSGN statement to access an IOCDS from the Support Element hard disk.
// JOB   IOCP2 
// ASSGN SYSLST,cuu 
// EXEC PGM=ICPIOCP,SIZE=AUTO,PARM='REPORT=A'
In the example:
JOB
Specifies the JOB statement.
SYSLST
Specifies the printer to receive messages and reports. You must assign SYSLST to a physical printer or to a VSE/POWER spooled printer. (IOCP records contain ANSI device control characters and have a length of 133 bytes.)
EXEC
Specifies the EXEC statement with the following options coded:
PGM=ICPIOCP
Specifies that you want to run the ICPIOCP program.
SIZE=AUTO
Specifies that the IOCP program uses the remaining partition size for GETVIS or IARV64.
PARM='REPORT=A'
Specifies that IOCP reads all the Ax IOCDSs from the Support Element hard disk to produce reports.