The OUTPUT statement specifies the output processing options for SYSOUT data sets. It allows for customized control of printed output, such as formatting, destination, and number of copies.
1//name OUTPUT parameter[,parameter]...
1//OUTJOB OUTPUT CLASS=A,COPIES=3,DEST=LOCAL
123//REPORT OUTPUT CLASS=A,COPIES=2,FORMS=STD,DEST=RMT01 //STEP1 EXEC PGM=PAYROLL //PRINT DD SYSOUT=*,OUTPUT=*.REPORT
1234//REP1 OUTPUT COPIES=1,DEST=LOCAL //REP2 OUTPUT COPIES=1,DEST=RMT02 //STEP1 EXEC PGM=PAYROLL //PRINT DD SYSOUT=A,OUTPUT=(*.REP1,*.REP2)