Report command

The Transaction Resource Usage List report can be requested from a Report Set in the CICS PA dialog. Select the Transaction Resource Usage List report in the Transaction Resource Usage Reports category.

In batch, the RESUsage(TRANLIST) command is used to request the Transaction Resource Usage List report.

The command to produce the default report is:
CICSPA RESUSAGE(TRANLIST)
This produces the Transaction Resource Usage List report for File, Temporary Storage, and Distributed Program Link (DPL) usage, and is the same as specifying:
CICSPA RESUSAGE(TRANLIST(            Transaction Resource Usage List
                         FILE,       - include File usage statistics
                         TEMPSTOR,)  - include Temporary Storage usage statistics
                         DPL))       - include DPL usage statistics
To tailor the report, you can specify report options as follows:
CICSPA RESUSAGE(
          [OUTPUT(ddname),]
          [TRANLIST(FILE,TEMPSTOR,DPL),]
          [LINECOUNT(nnn),]
          [TITLE1('...sub-heading left ...'),]
          [TITLE2('...sub-heading right...'),]
          [SELECT(PERFORMANCE(INCLUDE|EXCLUDE(field1(value1),...),...))])