Author: tzeche
Subject: IDC2902I Error
Posted: Tue Mar 28, 2017 11:39 am (GMT 5.5)
My JCL step is like this
and I got this Error Message
My questions:
1. is there any way for my job to not abend and just ignore if no entries found for the mask
2. If my job failed on the second Delete command, will it still proceed to check next commands?
Subject: IDC2902I Error
Posted: Tue Mar 28, 2017 11:39 am (GMT 5.5)
My JCL step is like this
Code: |
//STEP010 EXEC PGM=IDCAMS //SYSPRINT DD SYSOUT=* //SYSOUT DD SYSOUT=* //SYSIN DD * DELETE HLQ.AAA.** MASK DELETE HLQ.BBB.** MASK DELETE HLQ.CCC.** MASK DELETE HLQ.DDD.** MASK // |
and I got this Error Message
Code: |
DELETE HLQ.DDD.** MASK NO ENTRIES FOUND FOR MASK HLQ.DDD.** IDC0001I FUNCTION COMPLETED, HIGHEST CONDITION CODE WAS 8 IDC0002I IDCAMS PROCESSING COMPLETE. MAXIMUM CONDITION CODE WAS 8 |
My questions:
1. is there any way for my job to not abend and just ignore if no entries found for the mask
2. If my job failed on the second Delete command, will it still proceed to check next commands?