Hi,
I'm executing 3 REXX programs (#RXPGM1, #RXPGM2 and #RXPGM3) from library ABC.DEF.GHI.RXLIB and writing the output to a single file ABC.DEF.GHI.OUTPUT in a single step STEP01 (JCL is as below)
//STEP01 EXEC PGM=IKJEFT1A,DYNAMNBR=200
//SYSEXEC DD DISP=SHR,DSN=ABC.DEF.GHI.RXLIB
//SYSTSPRT DD DISP=(NEW,KEEP,DELETE),
// DSN=ABC.DEF.GHI.OUTPUT,
// SPACE=(TRK,(50,20),RLSE),
// BLKSIZE=27951,RECFM=FB,LRECL=121,DSORG=PS
//SYSTSIN DD *
#RXPGM1
#RXPGM2
#RXPGM3
/*
The output file contains below data
READY
#RXPGM1
_Output from the program #RXPGM1
READY
#RXPGM2
_Output from the program #RXPGM2
READY
#RXPGM3
_Output from the program #RXPGM2
READY
END
Could anyone please suggest how can I get rid of the words which REXX is automatically writing to the output (Highlighted in Red)? Is there any way to suppress those words?