Enablement of the attribute-specific monitor exit

By default, Content Manager OnDemand uses the library list of the monitor job to locate the attribute-specific monitor exit. If you prefer to name a specific library for the monitor to use to locate the exit program, create a data area named QRLMMONEXT in the instance library if you want it to apply to that instance only, or in library QUSRRDARS if you want it to apply to all Content Manager OnDemand instances. The data area type is *CHAR, with a length of 30. The first 20 characters are used by the attribute-specific monitor exit to allow the use of ILE monitor exit programs or to bypass monitor exit processing. Details of these option are provided in a later section. The last 10 characters contain the name of the library where the monitor exit programs exist. For example, first create the data area:
CRTDTAARA DTAARA(QUSROND/QRLMMONEXT) TYPE(*CHAR) LEN(30) 
   VALUE(' ') TEXT('Universal monitor exits and library name')
Then, change the data area to contain the name of the monitor exits library in the last 10 characters (positions 21 through 30):
CHGDTAARA DTAARA(QUSROND/QRLMMONEXT (21 10)) VALUE(LIBRARYNAM)
where LIBRARYNAM is the name of the library that contains your monitor exit programs.

For changes to the data area to take effect, you must stop and restart the monitor.