Problem:
When Applying CA InterTest for CICS r 8.5 fixes RO57929 and RO82128 the apply job fails with error message GIM54701E ** ALLOCATION FAILED - IKJ56228I DATA SET DB2.V9R1.TGT1006.SDSNLOAD NOT IN CATALOG OR CATALOG CAN NOT BE ACCESSED.
Environment:
Z/OS and CICS
Cause:
When the CA InterTest for CICS R 8.5 CSI is initially defined during the base product install you assign the SDSNLOAD DD DEF SDSNLOAD to point to your DB2 SDSNLOAD dataset. In this case the dataset DB2.V9R1.TGT1006.SDSNLOAD has been deleted from the system. During the apply when SMP/E tries to allocate the SDSNLOAD that no longer exists the apply job fails with ALLOCATION FAILED - IKJ56228I DATA SET DB2.V9R1.TGT1006.SDSNLOAD NOT IN CATALOG OR CATALOG CAN NOT BE ACCESSED
REP DDDEF(SDSNLOAD) /* DB2 LIBRARY */
DATASET(CICSSYS.CTS65.CICS.SDFHLOAD)
SHR
Resolution:
The user needs to update the SDSNLOAD DDDEF with the correct DB2 SDSNLOAD. The CA InterTest for CICS r 8.5 CSI has defined the SDSNLOAD defined in two places in the CSI. The target and the distribution zone. The user needs to make sure both references of the SDSNLOAD point to a valid SDSNLOAD.
The client can use the Z/OS SMP CLIST to change the contents of the CSI.
---------------------- SMP/E PRIMARY OPTION MENU ---------------- SMP/E 36.68
1 ADMINISTRATION - Administer the SMPCSI contents
Additional Information:
The JCL used to setup the CA InterTest for CICS r 8.5 DD DEFS at base installation time can be found in HLQ.SAMPLIB JCL member BA85DDD.
SET BDY(CAIT1) . /* SET TARGET ZONE */
REP DDDEF(SDSNLOAD) /* DB2 LIBRARY */
DATASET(DB2.SDSNLOAD)
SHR
SET BDY(CAID1) . /* SET DISTRIBUTION ZONE */
REP DDDEF(SDSNLOAD) /* DB2 LIBRARY */
DATASET(DB2.SDSNLOAD)
SHR