ADDTHRESH(SUB,MES,THRESH) sets a report threshold for a
certain message, and subroutine name. For example, if you want to limit
the number of times the message:
"Expected Run #12345, but found Run #54321"
is printed to 5, you might call this routine with the following parameters:
(a) CALL ADDTHRESH('*','Expected Run*',5) or
(b) CALL ADDTHRESH('CTCDRV','Expected Run #12345, but found Run #54321',5)
The wildcard '*' character is allowed for subroutine name, as well as message text. Note: The E_L only pays attention to characters up to the first wildcard, so '* Run*' would be translated to '*', selecting all messages.