Figure 1. Sample JCL
CPAPLSFC - File Control//CPAPLSFC JOB ,CLASS=A,NOTIFY=&SYSUID
//CICSPA EXEC PGM=CPAMAIN,REGION=8M,PARM=NOSTAE
//STEPLIB DD DSN=CICSPA.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>),
SELECT(PERFORMANCE(INCLUDE(FCTOTAL(1-999999999)))),
LIST(OUTPUT(PLST0001),
FIELDS(TRAN, Transaction identifier
PROGRAM, Program name
STOP(TIMES), Task stop time
RESPONSE, Transaction response time
DISPATCH(TIME), Dispatch time
CPU(TIME), CPU time
SUSPEND(TIME), Suspend 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(PSUM0001),
FIELDS(TRAN, Transaction identifier
TASKCNT, Total Task count
RESPONSE(AVE), Transaction response time
DISPATCH(TIME(AVE)), Dispatch time
CPU(TIME(AVE)), CPU time
SUSPEND(TIME(AVE)), Suspend 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
/*