Load the exit program into CICS with the following steps:
Copy the EVXMNOUT load module from the Ironstream hlq.LOAD library to a CICS STEPLIB or DFHRPL load library or a LNKLST load library.
Define the program with the CICS command (use any site-determined name for the GROUP):
CEDA DEFINE PROGRAM(EVXMNOUT) GROUP(EVOGRP) LANGUAGE(ASSEMBLER) CONCURRENCY(THREADSAFE) API(OPENAPI)
Install the CICS program with the CICS program:
CEDA INSTALL PROGRAM(EVXMNOUT) GROUP(EVOGRP)
Bring in the new copy of the program with the CICS command:
CEMT SET PROGRAM(EVXMNOUT) NEW
Enable EVXMNOUT as the XMNOUT exit with the CECI transaction (or add to an existing PLTPI startup):
CECI ENABLE PROGRAM(EVXMNOUT) EXIT(XMNOUT) START
To disable the exit, use the following CECI command:
CECI DISABLE PROGRAM(EVXMNOUT) EXITALL STOP
To refresh the exit after updating the threshold table, use the commands:
CECI DISABLE PROGRAM(EVXMNOUT) EXITALL STOP CEMT SET PROGRAM(EVXMNOUT) NEW
CECI ENABLE PROGRAM(EVXMNOUT) EXIT(XMNOUT) START