Examples: Using SELECT as a global operand

The following examples illustrate the use of SELECT as a global operand applying to all reports and extracts that follow it.
  1. In this example, the performance class records from transactions that were active between 08:00 and 16:00 are included in both the Performance List and Performance Summary reports.
    CICSPA SELECT(PERFORMANCE(INCLUDE(
                  ACTIVE(FROM(08:00:00),TO(16:00:00))))),
           LIST,
           SUMMARY
  2. In this example, the Performance List report will only contain the performance class records from transactions with file (FC) wait time between 1 and 1000 seconds, except transactions that are attached from terminal TRM1.
    CICSPA SELECT(PERFORMANCE(
                  EXCLUDE(TERM(TRM1)),
                  INCLUDE(FCWAIT(TIME(1000-1000000))))),
           LIST
  3. In this example, the exception class records from transactions that were active between 08:00 and 16:00 are included in both the Exception List and Exception Summary reports.
    CICSPA SELECT(EXCEPTION(INCLUDE(
                  ACTIVE(FROM(08:00:00),TO(16:00:00))))),
           LISTEXC,
           SUMEXC

Information Information

Feedback


Timestamp icon Last updated: Saturday, 8 February 2014


http://pic.dhe.ibm.com/infocenter/cicsts/v5r1/topic///users-guide/cpaug207.htm