Previous Topic: Entry Point NamesNext Topic: Interface Configuration Enhancements


IDMSUXIT Module Creation

To create an IDMSUXIT module in z/OS, execute the z/OS Link-edit JCL using the appropriate binder input statements to identify the exits that you want to enable.

The following binder input represents the minimum statements that you need to link-edit IDMSUXIT. This binder input disables all user exits, so it is equivalent to the installed version of the module:

ORDER IDMSUXIT 
INCLUDE CAGJLOAD(IDMSUXIT) 
ENTRY UEXITS 
SETOPT PARM(REUS=NONE) 
NAME IDMSUXIT(R) 

Example: Binder statements needed to enable IDMSCALC and ARCHIVE JOURNAL user exits

ORDER IDMSUXIT
INCLUDE CAGJLOAD(IDMSUXIT)
INCLUDE CUSTLIB(idmsclcx) IDMSCALC user exit
INCLUDE CUSTLIB(idmsajnx) ARCHIVE JOURNAL exit
ENTRY UEXITS
SETOPT PARM(REUS=NONE)
NAME IDMSUXIT(R)
idmsclcx

Specifies the name of your IDMS CALC exit module.

idmsajnx

Specifies the name of your ARCHIVE JOURNAL exit module.