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


Step 4: Generating an Event History Report

EREP User's Guide
GC35-0151-03

Use the following example to generate an event history report:

EXAMPLE JCL EXPLANATION
//STEP4 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(STEP4),
//              DISP=(OLD,PASS)
Define the data set containing the EREP parameters needed for this step. The contents of the parameter data set, EREP.PARMS(STEP4), are listed below.
  EREP control statements do not apply to the event history report, so the EREP.CONTROLS data set is not needed.
/* This delimiter is optional; refer to the JCL manual for your MVS system.

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

EREP PARAMETERS EXPLANATION
EVENT Request an event history report. Note the absence of selection parameters; the report is to include every record.
HIST Input records are in the history data set.
ACC=N No history data set generated.

Go to the previous page Go to the next page




Copyright IBM Corporation 1990, 2014