Character fields
SELECT(PERFORMANCE|EXCEPTION(
INCLUDE|EXCLUDE(charfld1(values1),...),...))
The syntax of the values for these fields is a series of words separated by commas. The length of the words is determined by the field lengths. If the word is too short, it is padded with blanks at the end. If it is too long, a command error occurs. For each character field name, a maximum of 200 characters is allowed.
For example, the following command includes the performance records for transactions TR01, TR02, and TR03 on terminal TM01.
SELECT(PERFORMANCE(
INCLUDE(TRAN(TR01,TR02,TR03),
TERM(TM01))))
CICS PA recognizes generic values. The masking characters % and * are supported. The percent (%) is for a single character substitution and the asterisk (*) is for many or none.
For example, to exclude all performance records from all 50 terminals whose terminal IDs start with PR, you could specify all 50 terminal ID values, or instead you could specify the pattern PR* as follows:
SELECT(PERFORMANCE(EXCLUDE(TERM(PR*))))