You have the option of manually preparing and submitting your own report JCL. The ISPF report request facility will meet most requirements, but by preparing your own JCL and control statements you can use the full formatting flexibility of the CAZPRINT program.
The following CAZPRINT capabilities that are not available directly by using the ISPF report request facility are available if you prepare your own JCL and control statements:
The following illustrates an example of JCL and control statements to produce a performance analysis report:
//CAZRPT01 JOB (job parameters)
//*
//STEP1 EXEC PGM=CAZPRINT
//STEPLIB DD DISP=SHR,DSN=hlq.SCAZAUTH
//SFILE01 DD DISP=SHR,DSN=measurement.file.name
//CAZLOG DD SYSOUT=*
//PRINT1 DD SYSOUT=*
//PDFFILE DD DISP=SHR,DSN=any.file
//*
//* Instream control statements.
//*
//CAZCTL DD *
*
PROFILE 01 Input=SFILE01
*
SECTION S01 Profile=01
SECTION S02 Profile=01
SECTION S03 Profile=01
SECTION S04 Profile=01
SECTION S05 Profile=01
SECTION S06 Profile=01
SECTION S07 Profile=01
*
SECTION C01 Profile=01
SECTION C02 Profile=01
SECTION C03 Profile=01
SECTION C04 Profile=01
SECTION C05 Profile=01
*
SECTION W01 Profile=01
*
SECTION D01 Profile=01
SECTION D02 Profile=01
SECTION D03 Profile=01
SECTION D04 Profile=01
*
CONVERT Format=PDF DDNAME=PDFFILE
PRINT DDNAME=PRINT1
*
/*
The above illustrates JCL and control statements that produce output in both line printer format and in PDF format. A brief explanation of the JCL statements is presented below. Detailed descriptions of each of the DD statements are then presented later in this section. For detailed descriptions of the control statements (ddname CAZCTL) see, Specifying control statements.
[ Top of Page | Previous Page | Next Page | Contents | Index ]