Sysview in batch - How to Remove the Header Line from Output
search cancel

Sysview in batch - How to Remove the Header Line from Output

book

Article ID: 206121

calendar_today

Updated On:

Products

SYSVIEW Performance Management NXBRIDGE - SYSVIEW/ENDEVOR

Issue/Introduction

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                                

Environment

Release : ALL

Component : SYSVIEW

Resolution

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.