Report command

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

In batch, the TRACKINGLIST command is used to request the Transaction Tracking List report.

The command to produce the default report is:

CICSPA TRACKINGLIST
To tailor the report, you can specify report options as follows:
CICSPA TRACKINGLIST(
              [OUTPUT(ddname),]
              [EXTERNAL(ddname),]
              [OFIELDS(field1[(options)],...),]
              [GFIELDS(field1[(options)],...),]
              [PRINTMULTIPLE|NOPRINTMULTIPLE,]
              [PRINTSINGLE|NOPRINTSINGLE,]
              [LINECount(nnn),]
              [SELECT(PERFORMANCE(INCLUDE|EXCLUDE(field1(values1),...),...)),]
              [SELGRP(PERFORMANCE(INCLUDE|EXCLUDE(field1(values1),...),...)),]
              [TITLE1('...up to 64 characters...'),]
              [TITLE2('...up to 64 characters...'),])

The CICS PA dialog generates the OFIELDS and GFIELDS operands when a corresponding Report Form is specified.

The OFIELDS operand controls the format of the origin section of the report by specifying the required fields and the order of the columns. If the OFIELDS operand is not specified, the default is:
CICSPA TRACKINGLIST(OFIELDS(OTRAN,    Originating Transaction ID
                    OUSERID,          Originating User ID
                    OAPPLID,          Originating CICS Application ID
                    OTASKNO,          Originating Transaction number
                    OSTART(TIMET),    Originating Task Start time
                    OORIGIN,          Originating Transaction Origin type
                    OFCTY,            Originating Transaction Facility name
                    OTCPSRVC,         Originating TCP/IP Service name
                    OCLI6ADR,         Originating Client or Telnet IP address
                    OCLIPORT))        Originating Client IP port number
The GFIELDS operand controls the format of the group section of the report by specifying the required fields and the order of the columns. If the GFIELDS operand is not specified, the default is:
CICSPA TRACKINGLIST(GFIELDS(TRAN,     Transaction ID
                    USERID,           User ID
                    APPLID,           CICS Application ID
                    TASKNO,           Transaction number
                    START(TIMET),     Task Start time
                    RTYPE,            Record type                
                    ORIGIN,           Transaction origin         
                    RESPONSE,         Response time              
                    CPU,              User CPU                   
                    PHTRAN,           Previous Hop transaction ID
                    PHTASKNO,         Previous Hop task number   
                    PHAPPLID,         Previous Hop application ID
                    PHSTART,          Previous Hop start time    
                    PHCOUNT))         Previous Hop count