View - How to create a report showing how much output is from what jobs
search cancel

View - How to create a report showing how much output is from what jobs

book

Article ID: 256095

calendar_today

Updated On:

Products

View

Issue/Introduction

How to to produce a report including the following information?
Report Archive Date and Time, Jobname,  and Number of lines of output. 

Is there a way to extract this from SAR?

Environment

Release : 14.0

Cause

 

Resolution

Run the following SARGRW program:

//XXXXXXXX JOB ...
//SARGRW01 EXEC PGM=SARGRW                                        
//STEPLIB  DD   DISP=SHR,DSN=VIEW.CVDELOAD  <=== Modify, if STEPLIB used        
//SORTWK01 DD UNIT=SYSDA,SPACE=(CYL,(5),,CONTIG)                  
//SORTWK02 DD UNIT=SYSDA,SPACE=(CYL,(5),,CONTIG)                  
//SORTWK03 DD UNIT=SYSDA,SPACE=(CYL,(5),,CONTIG)                  
//SYSUDUMP DD SYSOUT=*                                            
//SYSOUT   DD SYSOUT=*                                            
//SYSPRINT DD SYSOUT=*                                            
//PRTFILE  DD SYSOUT=*,DCB=(BLKSIZE=133)                          
//*                                                               
//SYSIN    DD *                                                   
/CONTROL SEQ=RID DATABASE=view_hlq   <=== Modify DB name                        
/TITLE 'LISTING OF SYSOUTS'                                       
/PRINT JOBNAME  'JOBNAME'                                         
/PRINT ARCHDATE 'ARC DATE'                                        
/PRINT ARCHTIME 'ARC TIME'                                        
/PRINT LINES    'LINES    '                                       
/END                                                              
/*                                                                
//