Release : 15.0
Component : CCS390 - COMMON SERVICES FOR Z/OS
The manual install of CCS150 in SAMPJCL(AW000ALL) allocates CAW0CALL and AAS9CALL as PDS but the CSM install allocates them as PDSE's. You can allocate temporary CAW0CALL and AAS9CALL as PDSE's and copy the PDS CAW0CALL and AAS9CALL into the PDSE temporary copies then rename the temporary copies to the HLQ being used by SMP/E CSI. That is the HLQ/DSN on the IEB1014I messages. JCL to allocate CAW0CALL and AAS9CALL as PDSE's:
//CAIALLOC EXEC PGM=IEFBR14
//CAW0CALL DD DSN=PRODHLQ.CAW0CALL,
// DISP=(NEW,CATLG,DELETE),
// DCB=(BLKSIZE=32760,RECFM=U),
// VOLINFO,
// SPACE=(TRK,(21,2,13)),
// DSNTYPE=LIBRARY
//AAS9CALL DD DSN=PRODHLQ.AAS9CALL,
// DISP=(NEW,CATLG,DELETE),
// DCB=(BLKSIZE=32760,RECFM=U),
// VOLINFO,
// SPACE=(TRK,(21,2,13))
// DSNTYPE=LIBRARY