Performance List Extended

The command to produce the default report is:
CICSPA LISTX
To tailor the report, you can specify report options as follows:
CICSPA LISTX(
        [OUTPUT(ddname),]
        [EXTERNAL(ddname),]
        [BY(by1(ASCEND|DESCEND),
                 by2(ASCEND|DESCEND),
                 by3(ASCEND|DESCEND)),]
        [LIMIT(byfield(proclim)),]
        [FIELDS(field1[(options)],...),]
        [LINECOUNT(nnn),]
        [TITLE1('...sub-heading left ...'),]
        [TITLE2('...sub-heading right...'),]
        [SELECT(PERFORMANCE(INCLUDE|EXCLUDE(field1(values1),...),...)),]
        [SELECT2(PERFORMANCE(INCLUDE|EXCLUDE(field1(values1),...),...))])

The Performance List Extended report is produced using an external SORT facility. An External Work Data Set is required to store the records before they are sorted. This data set is either specified explicitly using EXTERNAL(ddname), or CICS PA assigns one from the External Work File pool.

The FIELDS operand controls the format of the report by specifying the desired fields and the order of the columns.

The BY operand specifies up to 3 sort fields, ascending or descending. For one of the sort fields, LIMIT specifies the maximum number of records to process. The default sort sequence is ascending BY(TRAN) with no LIMIT.

If BY and FIELDS are not specified, the default is:
CICSPA LISTX(BY(TRAN),
             FIELDS(TRAN,              Transaction ID
                    STYPE,             Start type of transaction
                    USERID,            User ID
                    RSYSID,            Remote System ID
                    PROGRAM,           Initial program name
                    TASKNO,            Transaction number
                    STOP(TIMET),       Stop time (hh:mm:ss.thm)
                    RESPONSE,          Response time
                    DISPATCH(TIME),    Dispatch time (sss.thmi)
                    CPU(TIME),         CPU time
                    SUSPEND(TIME),     Suspend time
                    DISPWAIT(TIME),    Dispatch wait time
                    FCWAIT(TIME),      File Control I/O wait time
                    FCAMCT(TIME),      File Control access method calls
                    IRWAIT(TIME)))     Inter-Region (MRO) I/O wait time

The CICS PA dialog uses the LISTX Report Form to generate the FIELDS and BY operands.