When applying the Intertest and Symdump release 11 incremental seven fixes I receive message ALLOCATION FAILED FOR SMP00025 BECAUSE THERE IS NO DDDEF ENTRY FOR SCEEBND2 IN TARGET ZONE ZNCAIT0.
search cancel

When applying the Intertest and Symdump release 11 incremental seven fixes I receive message ALLOCATION FAILED FOR SMP00025 BECAUSE THERE IS NO DDDEF ENTRY FOR SCEEBND2 IN TARGET ZONE ZNCAIT0.

book

Article ID: 200313

calendar_today

Updated On:

Products

SymDump for CICS SymDump Batch InterTest - CICS InterTest - Batch

Issue/Introduction

I am Applying the outstanding Intertest and Symdump Release 11 incremental fixes. The apply check fails with the following messages.  

ALLOCATION FAILED FOR SMP00025 BECAUSE THERE IS NO DDDEF ENTRY FOR SCEEBND2 IN TARGET ZONE ZNCAIT0.
DYNAMIC ALLOCATION FAILED FOR SMP00024 BECAUSE SCEEBND2 IS PART OF THE SMP00024 CONCATENATION BUT WAS NOT 
ALLOCATED.  

Environment

Z/OS

Cause

The client missed the ++HOLD action on fix SO06269 required three new DDDEF'S to be created for Intertest and Symdump Release 11. 

Resolution

You will need to add THREE additional DD DEF"S to your SMP environment as outlined on the fix SO06269 ++HOLD ACTION below. One of the DDDEF'S is for SCEEBND2.

APAR #: SO06269

++HOLD (SO06269) SYSTEM FMID(CABAB00)
REASON (ACTION ) DATE (19014)
COMMENT (
+----------------------------------------------------------------------+
| Common CICS Component Version 11.0 |
+----------+-----------------------------------------------------------+
|SEQUENCE | Before Apply |
+----------+-----------------------------------------------------------+
|PURPOSE | Define additional DDDEF entries |
+----------+-----------------------------------------------------------+
|USERS | All users installing this PTF |
|AFFECTED | |
+----------+-----------------------------------------------------------+
|KNOWLEDGE | SMP/e |
|REQUIRED | |
+----------+-----------------------------------------------------------+
|ACCESS | Update privileges for SMPCSI (CSI) datasets |
|REQUIRED | |
+----------+-----------------------------------------------------------+
**************************
* STEPS TO PERFORM *
**************************

1. Extract the JCL below to a location where you can modify it.
2. Add a jobcard that meets your system requirements.
3. Specify the CSI dataset name in the SMPCSI DD.
4. Change the name of the target zone if you did not use 'CAIT0'.
5. Change dataset names in the ADD DDDEF statements.
6. Submit the modified JCL to add the new DDDEF.


JOBCARD < modify to meet your system requirements >
//*--------------------------------------------------------------------
//* Define target zone DDDEF for SCEELIB (Metal C RENT Object library)
//*--------------------------------------------------------------------
//DDDEFUPD EXEC PGM=GIMSMP,REGION=0M
//SMPCSI DD DISP=SHR,DSN=globalhlq.CSI < modify as needed >
//SMPCNTL DD *
SET BOUNDARY(CAIT0).
UCLIN .
ADD DDDEF ( SCEELIB )
DATASET ( CEE.SCEELIB ) SHR .
ADD DDDEF ( SCEEBND2 )
DATASET ( CEE.SCEEBND2 ) SHR .
ADD DDDEF ( SDFHEXCI )
DATASET ( CICSTS51.CICS.SDFHEXCI ) SHR .
ENDUCL.
/*