Object Code Only Type was re-added to Endevor and during package Cast, footprint error FPVL001E and FPVL003E were received.
FPVL001E INPUT COMPONENT VALIDATION ERROR HAS OCCURRED FOR
C1G0000I ELEMENT element1
PKMR801I OF ENV: env1 SYS: sys1 SUBSYS: sub1 TYPE: type1 STG: I
FPVL003E FOOTPRINT MISMATCH FOR
C1G0000I INPUT COMPONENT xxxxxxx
C1G0000I FROM DATA SET END.Jxxxxxx.xxxxxxxx
PKMR802I FP ENV: env1 SYS: sys1 SUBSYS: sub1 TYPE: type1 STG: I
PKMR805I FP DATE/TIME IN COMPONENT LIST : 29JUL03 10:33
PKMR807I GENERATE PROCESSOR DATE/TIME : 19APR23 10:42
PKMR808I LAST PROCESSOR DATE/TIME : 19APR23 10:42
Release : All Supported Releases
The processor for this Type had the MONITOR=COMPONENTS on the INDD statement so this captured the original footprint that was created when the object was first created in Endevor back in 2003.
//BSTCOPY EXEC PGM=BSTCOPY,
// EXECIF=(&C1ACTION,NE,'GENERATE'),
// MAXRC=04
//SYSPRINT DD SYSOUT=*
//SYSUT3 DD SPACE=(CYL,(1,1)),
// UNIT=&WRKUNIT
//SYSUT4 DD SPACE=(CYL,(1,1)),
// UNIT=&WRKUNIT
//INDD DD DSN=&WRKLOAD,
// DISP=SHR,
// MONITOR=COMPONENTS
//OUTDD DD DSN=&UTLOAD,
// DISP=SHR,
// FOOTPRNT=CREATE,
// MONITOR=COMPONENTS
//SYSIN DD *
COPY O=OUTDD,I=INDD
SELECT MEMBER=((&MEMBER,,R))
Two resolution options are possible for this scenario:
1) During the package Cast, turn off Component Validation since object code doesn't contain true components.
VALIDATE COMPONENTS ===> N
2) Remove the MONITOR=COMPONENTS from the INDD in the processor, redo the Add and recast the package.