Creating a program exclude list
A program exclude list is a load module that contains a simple list of program name prefixes. You can use the provided sample batch job to create and edit the sample program exclude list.
About this task
Each list item consists of a 1-byte length field, followed
by the characters of the program name prefix. The length is the number
of characters in the prefix, which must be in the range 1 through
8. A length of zero indicates the end of the list. Figure 1 is an example of a program exclude
list.
Figure 1. Example program exclude
list
MYXPROG CSECT
MYXPROG AMODE 31
MYXPROG RMODE ANY
DS 0F
DC AL1(8),C'TEST ' Excludes a program called TEST
DC AL1(4),C'TEST' Excludes names starting with TEST
DC AL1(3),C'UCC' Excludes names starting with UCC
DC AL1(0) End of list
END MYXPROG