CPAFOR - FOR reports

This JCL runs the Performance List and Summary reports for a File-Owning-Region.
Figure 1. Sample JCL CPAFOR - FOR reports
//CPAFOR   JOB ,CLASS=A,NOTIFY=&SYSUID
//CICSPA   EXEC PGM=CPAMAIN,REGION=4M,PARM=NOSTAE
//STEPLIB  DD  DSN=CPA.V3R2M0.SCPALINK,DISP=SHR
//SYSPRINT DD  SYSOUT=*
//* SMF Input Files
//SMFIN001 DD  DISP=SHR,DSN=<SMF.Input.DSN.applid1>
//* External Work Data Sets
//CPAXW001 DD  DSN=&&CPAXW001,DISP=(NEW,DELETE),
//             UNIT=SYSDA,SPACE=(CYL,(10,10))
//* Sort Work Data Sets
//CPASWK01 DD DISP=(NEW,DELETE),UNIT=SYSDA,SPACE=(CYL,(20,5))
//CPASWK02 DD DISP=(NEW,DELETE),UNIT=SYSDA,SPACE=(CYL,(20,5))
//CPASWK03 DD DISP=(NEW,DELETE),UNIT=SYSDA,SPACE=(CYL,(20,5))
//CPASWK04 DD DISP=(NEW,DELETE),UNIT=SYSDA,SPACE=(CYL,(20,5))
//SYSOUT   DD SYSOUT=*
//* Commands to request CICS PA reports
//SYSIN    DD  *
   CICSPA IN(SMFIN001),
          APPLID(<applid1>),
      LIST(OUTPUT(LIST0001),
          FIELDS(TRAN,                Transaction identifier
                 STOP(TIMES),         Task stop time
                 RESPONSE,            Transaction response time
                 DISPATCH(TIME),      Dispatch time
                 CPU(TIME),           CPU time
                 SUSPEND(TIME),       Suspend time
                 DISPWAIT(TIME),      Redispatch wait time
                 FCWAIT(TIME),        File I/O wait time
                 FCAMCT,              File access-method requests
                 FCADD,               File ADD requests
                 FCBROWSE,            File Browse requests
                 FCDELETE,            File DELETE requests
                 FCGET,               File GET requests
                 FCPUT,               File PUT requests
                 FCTOTAL)),           File Control requests
      SUMMARY(OUTPUT(SUMM0001),
          EXTERNAL(CPAXW001),
          FIELDS(TRAN,                Transaction identifier
                 RESPONSE(AVE),       Transaction response time
                 DISPATCH(TIME(AVE)), Dispatch time
                 CPU(TIME(AVE)),      CPU time
                 SUSPEND(TIME(AVE)),  Suspend time
                 DISPWAIT(TIME(AVE)), Redispatch wait time
                 FCWAIT(TIME(AVE)),   File I/O wait time
                 FCAMCT(AVE),         File access-method requests
                 FCADD(AVE),          File ADD requests
                 FCBROWSE(AVE),       File Browse requests
                 FCDELETE(AVE),       File DELETE requests
                 FCGET(AVE),          File GET requests
                 FCPUT(AVE),          File PUT requests
                 FCTOTAL(AVE)))       File Control requests
/*