The syntax for this operand is INPUT(ddname1,ddname2,...) if one or more CICS® systems, or INPUT=ddname if only one. Use this operand to specify the ddnames of the input data sets or log stream for each CICS system to be reported. If not specified, the default ddname is SMFIN. The CICS PA dialog, however, assigns ddnames in the format SMFINnnn where nnn is a sequential number in the range 001-999 to uniquely identify each CICS system's data sets.
CICSPA INPUT(SMFIN004),
LIST,
SUMMARY
The input data sets to be processed by CICS PA reports and extracts must be specified in your JCL. To do this:
//CICSPA JOB (Job Accounting)
//CPA EXEC PGM=CPAMAIN
//SYSPRINT DD SYSOUT=*
//* SMF Files for APPLID=APPL1
//SMFIN001 DD DSN=CICS.APPL1.FILE1,DISP=SHR
// DD DSN=CICS.APPL1.FILE2,DISP=SHR,UNIT=AFF=SMFIN001
//* SMF Files for APPLID=APPL2
//SMFIN002 DD DSN=CICS.APPL2.FILE1,DISP=SHR,UNIT=AFF=SMFIN001
// DD DSN=CICS.APPL2.FILE2,DISP=SHR,UNIT=AFF=SMFIN001
. . .
//SYSIN DD *
CICSPA IN(SMFIN001),APPLID(APPL1),
LIST(OUTPUT(LIST0001)),
SUMMARY(OUTPUT(SUMM0001))
CICSPA IN(SMFIN002),APPLID(APPL2),
LIST(OUTPUT(LIST0002)),
SUMMARY(OUTPUT(SUMM0002))
/*
//