The PL/I message user exit allows an installation to monitor compile-time and run-time issued messages. Every message that is issued by various PL/I components is presented to the user exit. If it is a compiler-issued message, it is then subjected to the -f compile-time option.
The user exit can:
Example:
plisql1.pp (0,0) : Error MPLIE00042W : Errors have ...
If the severity is lowered, the message will be shown as:
plisql1.pp (0,0) : Warning MPLIE00042W-: Errors have ...
The return code will be 4 instead of 8.
If the severity is raised, the message will be shown as:
plisql1.pp (0,0) : Severe MPLIE00042W+: Errors have ...
The return code will be 12 instead of 8.
Upon return from the exit, the message is not subjected to the -f option. Note the + or - sign that follows MPLIE00042W as this indicates the change in severity.
Enterprise Developer provides a skeleton default user exit that you can modify to suit your needs. It can be used to gather compile-time information for later or real-time analysis. Ensure that your modified user exit either takes precedence over or replaces the provided skeleton user exit.
The compile-time user exit should be built as follows:
mfplx mfplictx.pli -macro -dll -native -opt -nolaxdcl -vax -pp mfplictx.pp”
mfplx mfplictx.pli -macro -dll -native -opt -nolaxdcl -vax -pp mfplictx.pp -o mfplictx.so
It must have an executable name of mfplictx (lower case) and be placed in a directory that is on the search path (PATH on Windows, LD_LIBRARY_PATH on Linux and Solaris SPARC, and LIBPATH on AIX).