User Exit(s) quit working after applying Repository Maintenance
search cancel

User Exit(s) quit working after applying Repository Maintenance

book

Article ID: 39308

calendar_today

Updated On:

Products

Repository

Issue/Introduction

Customized User Exit(s) quit working after applying Repository maintenance.

The User Exit(s) were working fine before application of the Repository fixes via SMPe.

 

 

 

 

 

 

Environment

Release: DATASH00200-7.2-Repository-Webstation Option
Component:

Cause

If the Repository fix(s) that are being applied deliver new object module(s) that result in a relink of DBEXCEL, then any customized user exit programs previously linked into DBEXCEL will be wiped out. 

Resolution

Relink the Customized User Exit(s) into the DBEXCEL load module after applying Repository maintenance.   See below for an example. 

Contact Broadcom Support  to determine if any specific fixes will result in a relink of DBEXCEL and thus will require a relink of any user exit(s). 

ex.

//*In this example COBEXIT and DBXEXIT are the user exit programs that are
//*being relinked into DBEXCEL
//SYSLIN   DD  *              
   INCLUDE OBJLIB(COBEXIT)     
   INCLUDE OBJLIB(DBXEXIT)     
   INCLUDE SYSLIB(DBEXCEL)     
   INCLUDE DB2LIB(DSNALI)      
   ENTRY CEESTART              
   MODE AMODE(31)              
   MODE RMODE(ANY)             
   NAME DBEXCEL(R)             
/*