The CA Intertest and Symdump r 11 apply JCL step fails with error message GIM54701E.
search cancel

The CA Intertest and Symdump r 11 apply JCL step fails with error message GIM54701E.

book

Article ID: 7103

calendar_today

Updated On:

Products

InterTest - CICS InterTest - Batch InterTest VSE - CICS

Issue/Introduction

The client is upgrading to CA Intertest version 11. 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.

Environment

Z/OS CICS

Cause

Since the client is not licensed for IMS they used the default library name which is listed in JCL member AVH10CSI.

ADD DDDEF(RESLIB)       SHR DA(IMS.SDFSRESL). 

SMP/E tried to allocate this file and failed since the dataset does not exist.

Resolution

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(CICSSYS.CTS420.GA.CICS.SDFHLOAD) .

DD DDDEF(RESLIB)           SHR DA(CICSSYS.CTS420.GA.CICS.SDFHLOAD) .