The client is upgrading to CA Intertest version 10. The clients site is not licensed for IMS. When the client submits the apply JCL job AVH5APP, the job fails with messages
GIM54601E ** DYNAMIC ALLOCATION FAILED FOR SMP00062 BECAUSE RESLIB IS PART OF T ALLOCATED.
GIM69149E ** CALLLIBS COULD NOT BE ALLOCATED FOR LMOD CAODDB2 IN ZONE XCAIT1.
GIM54701E ** ALLOCATION FAILED FOR RESLIB - IKJ56228I DATA SET IMS.SDFSRESL NOT ACCESSED.
Since the client is not licensed for IMS they used the default library name which is listed in JCL member AVH3CSI.
ADD DDDEF(RESLIB) SHR DA(IMS.SDFSRESL).
SMP/E tried to allocate this file and failed since the dataset does not exist.
If a site is not licensed for IMS they need to set the IMS RES library DD DEF to point to the CICS SDFHLOAD as shown in the example below.
ADD DDDEF(SDFHLOAD) SHR DA(HLQ.CICS.SDFHLOAD) .
ADD DDDEF(RESLIB) SHR DA(HLQ.CICS.SDFHLOAD) .