Is there an option to remove all the header, from batch reports, and only show the “data”? Below is an example of a job where I do not need the header information.
//HBRBVOLS EXEC PGM=GSVXBAT,
// PARM='LINECNT=66,MENUOFF,SHOWINP=NO,PRINTOFF'
//SYSPRINT DD SYSOUT=*
//SYSTSPRT DD SYSOUT=*
//SYSIN DD *
MENUOFF
PRINTOFF
COMMAND=(PROFILE SWITCH userid )
COMMAND=(JOBSUM)
PRINTON
COMMAND=(SORT SPOOL,D)
SCROLL
COMMAND=END
Release : ALL
Component : SYSVIEW
The header can be omitted by adding the line
COMMAND=(SET HEADERLINE NO).
In the above example, include it after the COMMAND=(JOBSUM) line, and prior to the PRINTON command.