CPATRU - Transaction Resource Usage reports

This JCL runs the Transaction Resource Usage List and Summary reports for File and Temporary Storage.
Figure 1. Sample JCL CPATRU - Transaction Resource Usage reports
//CPATRU   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>
//*  
//* Commands to request CICS PA reports
//SYSIN    DD  *                                           
   CICSPA IN(SMFIN001),                                    
          APPLID(<applid1>),                               
*     List report for File and Temporary Storage           
      RESUSAGE(OUTPUT(RESU0001),TRANLIST(FILE,TEMPSTOR)),  
*     Transaction Summary for Files                        
      RESUSAGE(OUTPUT(RESU0002),TRANSUMM(FILE)),           
*     Transaction Summary for Temporary Storage            
      RESUSAGE(OUTPUT(RESU0003),TRANSUMM(TEMPSTOR)),       
*     File Usage Summary                                   
      RESUSAGE(OUTPUT(RESU0004),FILESUMM(BYTRAN,TOTAL)),   
*     Temporary Storage Usage Summary                      
      RESUSAGE(OUTPUT(RESU0005),TSSUMM(BYTRAN,TOTAL))      
/*