Receiving error using COBOL/CICS/DB2 processor to compile a program. Error is below:
C1X0010I STEP SYSCHK PROGRAM IRXJCL COMPLETED, RC=0000
C1A0010E ALLOCATION ERROR RC=1708-0002, DDNAME=SYSCIN
C1A0011E IKJ56228I DATA SET &&DSNHOUT NOT IN CATALOG OR CATALOG CAN NOT BE ACCESSED
What is wrong?
The temp data set &&DSNHOUT getting the allocation error was involved in an IF/THEN/ELSE statement.
The DISP specification for the file was incorrect in the ELSE version.
Changed it from DISP=(OLD,PASS) to DISP=(MOD,PASS) like it was in the IF version.