Overriding Session Initialization Transactions
Related topic
This is an extremely rare situation, but if your site already uses the DBPA, XPED, XPRT, XPON, or XPSP transaction identifiers for other purposes, you will need to specify new transaction identifiers for these Code Debug CICS transactions. This section describes how to override transaction identifiers associated with Code Debug CICS session initialization.
Task 20.1 Override Code Debug CICS Transaction Identifiers
- For each transaction identifier you wish to override:
- Change the transaction identifier in the resource definition supplied in SMXDSAMP members CSDXDDYN and CSDXDDYT.
- Install the modified resource definitions.
- Define program DBUGTXNO:
- If you are using CPSM and the Code Debug CICS Dynamic Transaction Routing program DBUGWRAM, make sure you install the SMXDSAMP member CSDXDDYN in your TOR regions.
- If you are using the Code Debug CICS Program Autoinstall Exit DBUPGADX in your other regions, you can skip this step. Otherwise, define program DBUGTXNO. The program definition for this program is supplied in SMXDSAMP member CSDXDPRG.
Add an INITPARM for DBUGTXNO to your CICS SIT parameters for every region where
Code Debug CICS
will be used, including the TOR regions where DBUGWRAM is used:
INITPARM=(DBUGTXNO='overrides')
where overrides specifies the overrides of the transaction identifiers. The format of each override will be xxxx=yyyy where xxxx specifies one of the
Code Debug CICStransaction identifiers DBPA, XPED, XPRT, XPON, or XPSP and yyyy is the transaction identifier you want to override it with.For example, to override XPED with transaction identifier ZPED, you would code:
INITPARM=(DBUGTXNO='XPED=ZPED')
If you are overriding multiple Code Debug CICS transaction identifiers, separate each override value/keyword combination with a comma. For example, to override XPED with ZPED and XPSP with ZPSP, you would code:
INITPARM=(DBUGTXNO='XPED=ZPED,XPSP=ZPSP')
- You will need to restart your CICS regions where you have specified a CICS SIT INITPARM for DBUGTXNO.