EREP User's Guide
Previous topic | Next topic | Contents | Contact z/OS | Library | PDF


Step 8: Generating a Detail Summary for I/O Errors

EREP User's Guide
GC35-0151-03

Use the following example to generate a set of detail summary reports of all I/O errors not already covered in the preceding reports:

EXAMPLE JCL EXPLANATION
//STEP8 EXEC PGM=IFCEREP1,PARM='CARD' Execute IFCEREP1 with the parameters in the SYSIN DD statement, see Table 1.
//ACCIN DD DSN=EHISTORY,DISP=(OLD,PASS) Define the history input data set. EHISTORY is the data set created in Step 1: Creating a History Data Set. Multiple history data sets can be concatenated on this DD statement.
//DIRECTWK  DD  UNIT=SYSDA,
//              SPACE=(CYL,(10,10))
Define and allocate DASD space for the temporary work data set needed to process history (ACCIN) input records.
//EREPPT    DD  SYSOUT=A,DCB=BLKSIZE=133
Define and allocate space for the output data set that holds the EREP report.
//TOURIST   DD  SYSOUT=A,DCB=BLKSIZE=133
Define and allocate space for the output data set that holds EREP messages and processing information.
//SYSIN     DD  DSN=EREP.PARMS(STEP8),
//              DISP=(OLD,PASS)
Define the data set containing the EREP parameters needed for this step. The contents of the parameter data set, EREP.PARMS(STEP8), are listed below.
//          DD  DSN=EREP.CONTROLS,
//              DISP=(OLD,PASS)
Define the data set containing the EREP control statements needed for all the reports, see Table 1. EREP uses only those that apply to the report requested in this step.
/* This delimiter is optional; refer to the JCL manual for your MVS system.

EREP.PARMS(STEP8) contains the following EREP parameters:

EREP PARAMETERS EXPLANATION
PRINT=SU Request only detail summaries.
TYPE=DOTH Select the records by type:
D
DDR: Dynamic device reconfiguration records
O
OBR: Outboard records; unit checks
T
MDR (formerly TPR): Miscellaneous data records
H
MIH: Missing interrupt records
DEV=(N34XX,N3704,N3705,N3720,N3725,N3745) Select by device type; excluding those already covered.
HIST Input records are in the history data set.
ACC=N No history data set generated.
ENDPARM End of parameters. ENDPARM must begin on column 1. Parameters may be indented.

Go to the previous page Go to the next page




Copyright IBM Corporation 1990, 2014