The following error was observed when applying a PTF on ACF2:
GIM54502E ** ALLOCATION FAILED FOR CAX1XML BECAUSE THERE IS NO DD STATEMENT IN THE JCL AND NO DDDEF ENTRY IN TARGET ZONE
A2CG00T.
What are the definitions of CAX1XML?
Release : 16.0
Component : ACF2 for z/OS
CAX1XML DDDEF entry should be defined in the Target zone (usually CAIT0). The dataset definitions for CAX1XML are:
Organization . . . : PO
Record format . . . : VB
Record length . . . : 512
Block size . . . . : 27998
1st extent cylinders: 10
Secondary cylinders : 5
Data set name type : PDS
This JCL can be used to both allocate the dataset and add the DDDEF to SMP/E:
//ALLOCDS EXEC PGM=IEFBR14
//CAX1XML DD DISP=(,CATLG),
// DSN=ACF2HLQ.CAX1XML,
// RECFM=VB,LRECL=512,BLKSIZE=27998,
// DSNTYPE=PDS,
// SPACE=(CYL,(10,5,50))
/*
//SMPE EXEC PGM=GIMSMP
//SMPCSI DD DISP=SHR,DSN=ACF2HLQ.CSI
//SMPCNTL DD *
SET BDY(CAIT0). /* CHANGE TO YOUR TARGET ZONE IF DIFFERENT */
UCLIN.
ADD DDDEF(CAX1XML)
DA(ACF2HLQ.CAX1XML) SHR .
ENDUCL.