Request selected reports


The following example request specific reports, in this case, free space analysis and IOVE space analysis reports.

01//PFP EXEC PGM=PFPMAIN,REGION=0M
02//STEPLIB          DD DISP=SHR,DSN=BMC.PFP.LOAD
03//                 DD DISP=SHR,DSN=IMSVS.RESLIB
04//                 DD DISP=SHR,DSN=IMSVS.DFSMDA
05//IMSACB           DD DISP=SHR,DSN=IMSVS.ACBLIB
06//PFPSAMP1         DD DISP=SHR,DSN=BMCPFP.PFPSAMP.PFPSAMP1
07//PFPSYSIN DD *
08  ANALYZE DBD=PFPSAMP,IAREA=PFPSAMP1
09       REPORT REPORT_DEFAULT=NO,
10     FREESPACE_ANALYSIS=YES,
11     IOVF_SPACE_ANALYSIS=YES
/*

Line no.

Comments

01-04

EXEC and STEPLIB DD statements for Fast Path/EP offline execution.

05

IMSACB DD statement used for database processing.

06

Area data set name.

07

PFPSYSIN DD for Fast Path/EP control statements.

08

Only the PFPSAMP1 area is analyzed. Quick (checksum) pointer validation is performed on area PFPSAMP1 by default.

09

Sets report generation default to NO (no reports are generated unless specified by name).

10

The Free Space Analysis Report is generated.

11

The IOVF Space Analysis Report is generated.


 

Tip: For faster searching, add an asterisk to the end of your partial query. Example: cert*

Fast Path Offline Suite 4.0