A PTF has status accepted in error, how can this be resolved with CA-CSM?
CA-CSM can not resolve PTF's that are accepted in error. The Actions button for status Accepted in error is replaced with no action. To circumvent this rerun the accept using this JCL:
//ACCEPT EXEC PGM=GIMSMP,REGION=0M
//* EXPECTED RETURN CODE: 00
//SMPLOGA DD SYSOUT=*
//SYSPRINT DD SYSOUT=*
//SMPCSI DD DISP=SHR,DSN=your.CSI
//SMPCNTL DD *
SET BOUNDARY(dlibz) .
ACCEPT CHECK
SELECT(ROnnnnn)
BYPASS(HOLDSYSTEM, HOLDERROR)
.
/*
Update your.CSI, dlibz and ROnnnnn.
This will remove the ERROR flag if it is successful. If it fails it will be the reason why it was accepted in error, resolve this and the ERROR flag should be reset.