CPAPEXP - Performance Data extract

This JCL runs the CICS PA Performance Data extract.
Figure 1. Sample JCL CPAPEXP - Performance Data extract
//CPAPEXP  JOB ,CLASS=A,NOTIFY=&SYSUID
//CICSPA   EXEC PGM=CPAMAIN,REGION=4M,PARM=NOSTAE
//STEPLIB  DD  DSN=CICSPA.V3R2M0.SCPALINK,DISP=SHR
//SYSPRINT DD  SYSOUT=*
//*
//* SMF Input File(s)
//SMFIN001 DD  DISP=SHR,DSN=<SMF.Input.DSN.applid1>
//* Extract Data Sets
//PEXPX001 DD DSN=<CICSPA.Perform.Extract>,
//            DISP=(NEW,CATLG),
//            UNIT=SYSDA,SPACE=(CYL,(10,10))
//*
//* Commands to request the extract
//SYSIN    DD  *
         CICSPA IN(SMFIN001),
                APPLID(<applid1>),
            EXTRACTPERFORMANCE(DDNAME(PEXPX001),
                DELIMIT(';'),
                LABELS)
/*