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.
- 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
- 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
- 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