Batch reports
Batch reports are generated in batch mode using the BKMBPROC member of the Advanced Backup and Recovery for z/OS® JCL library.
Generating batch reports
You submit batch reports using REPORT statements as input to the BKMBPROC procedure. Any number of REPORT statements can be included in a BKMBPROC invocation.
Note: Note:
- Only one report type can be specified with each REPORT statement.
- You can continue multiple lines using either a plus sign (+) or a minus sign (-) and by leaving at least one blank after the parameter value. Continued lines can begin in any position.
Example
This example shows a request for multiple reports: an Overlap by Data Set report (OVERLAPD) and a Data Set List by Data Set Name, Date report (DSNLIST):
//STEPNAME EXEC BKMBPROC
//BKMBATCH.SYSIN DD *
REPORT OVERLAPD-CBTI DS(dsname1)
REPORT DSNLIST-CBTI DS(dsname1)