Is it possible to run a Transaction Report for total transactions and their response times using the SYSVIEW Report Writer, while excluding specific transactions from being reported on? There are ‘system’ transactions that run continuously throughout the day which we would like to exclude from the report process..
It is possible to report on transactions using the SYSVIEW Report Writer while excluding specific transactions from the report process.
This can be accomplished by coding the report using the 'not' symbol (ie: ¬). The code below shows an example of how this could be coded.
TITLE1 CICS TOTAL TRANSACTIONS AND RESPONSE TIME REPORT
OPTION(SUMMARY=YES)
SELECT JOBNAME(JJJJJJJJJ)
SELECT TRANID(¬CQRY,¬CSSY,¬GSVI,¬CSNE,¬CSNC,¬ECSQ,¬CEX2,
¬CKAM,¬CSHQ,¬C483,¬CE*,¬CIS*,¬IRBZ,¬CKTI)
DEFINE ID KEY JOBNAME ' ' TRANID
TAB DATE TIME KEY,
TRAN USE AND,
TRAN LIFETIME AND,
TRAN CPU
END
RUN