Creating a Resource Tracking and Analysis report
To create a Resource Tracking and Analysis report, submit the JCL in member CMRRAP in BBSAMP to execute the CMRRAPR report program and any associated control statements as a batch job.
The sample job stream shown in the following figure produces the Resource Tracking and Analysis report:
/*JOBPARM user parameters
//JOBLIB DD DISP=SHR,DSN=CMR.CMRV5.BBLINK
//CMRRAPR EXEC PGM=CMRRAPR
//SYSOUT DD SYSOUT=*
//SYSPRINT DD SYSOUT=*
//REPORT DD SYSOUT=*
//CMRDETL DD DISP=SHR,DSN=CMR.CMRV5.CMRDETL
//SORTWK01 DD UNIT=SYSDA,SPACE=(CYL,(1,1))
//SYSIN DD *
(control statements)
The following table describes the required JCL statements to produce this report:
JCL | Use |
---|---|
JOB | Initiates the job |
EXEC | Specifies the name of the program that generates the report (PGM=CMRRAPR) |
//JOBLIB | Defines the program library containing the BMC AMI Ops Monitor for CICS load modules (BBLINK) |
//CMRDETL | Defines a VSAM disk or tape data set containing records for each IBM CICS transaction (CMRDETL) You can also use //CMRDETnn statements to define additional VSAM disk or tape data sets, where nn is 01 to 99 and must be specified as consecutive numbers. |
//REPORT | Defines the report output for the predefined reports |
//SORTWKnn | Identifies one to nine work data sets that can be defined for CMRRAPR data sorting nn is a numeric value (01-09). |
//SYSPRINT | Defines the output class for a sort utility The name of the DD statement is determined at CICS system generation. |
//TAPEIN | Ddefines the archive data set produced by CMRPURG, described in Archiving-data-CMRPURG, as input to the report program |
//SYSOUT | Defines the output class |
//SYSIN | Defines PERFORMANCE REPORTER control statements as input to the batch program |
This section contains the following topics:
Related topic