Problem:
When applying the CA Intertest for CICS r 9.1 CTS 5.3 certification fixes the client receives error message
GIM30209E ** APPLY PROCESSING FAILED FOR SYSMOD RO88877. REQUIRED SYSMODS FAILED
GIM35912I CONDITIONAL REQUISITE SYSMOD RO88869 WAS MISSING.
Environment:
Z/OS
Cause:
Fix RO88877 for FMID (CCSA910) has a co requisite requirement of fix RO88869 for FMID (CABA910) as per the IF FMID statement below. This requires that both PTFS be applied at the same time RO88877 and co requisite RO88869.
RO88877 FMID (CCSA910)
++IF FMID(CABQ910) REQ(RO88870 ) .
++IF FMID(CABA910) REQ(RO88869 ) .
In this case the client was only applying the one PTF RO88877 for FMID (CCSA910) as listed below.
APPLY CHECK S(RO88877) BYPASS(HOLDSYSTEM(ACTION)).
Resolution:
The client must apply both PTFS at the same time RO88877 and co requisite RO88869 as listed below.
//APPLY EXEC PGM=GIMSMP,
// REGION=0M,
// PARM='CSI=INTERT91.S1510ZIP.CSI'
//SMPCNTL DD *
SET BDY(CAIT0).
APPLY SELECT(
RO88869
RO88877
)
BYPASS(HOLDSYSTEM)
CHECK.