Installing CA Endevor Sample application and SAMPJOB4 is getting a RC12 in the Link edit steps of the COBOL programs --
IEW2606S 4B39 MODULE INCORPORATES VERSION 3 PROGRAM OBJECT FEATURES AND CANNOT BE SAVED IN LOAD MODULE FORMAT.
If using COBOL V5 or higher, the Load libraries must be PDS/Es. The Sample Application allocates PDS type Load libraries.
1) In SAMPJOB2, find where the LOADLIBx libraries are being allocated and add DSNTYPE=LIBRARY to the DD definition:
//LOADLIB1 DD DSN=IPRFX.IQUAL.SMPLTEST.LOADLIB,
// DISP=(NEW,CATLG,DELETE),DSNTYPE=LIBRARY,
// DCB=(RECFM=U,BLKSIZE=32760,LRECL=0),
// UNIT=PDISK,VOL=SER=DVOLSER,
// SPACE=(CYL,(5,15,95))
Update all 4 LOADLIB DD definitions - LOADLIB1, LOADLIB2, LOADLIB3 and LOADLIB4
2) Rerun SAMPJOB2, SAMPJOB3 and SAMPJOB4