After upgrading to Endevor 18.1 batch jobs are failing with the following errors:
Release : 18.1
Component : Endevor Software Change Manager
The U0401 reason code are documented in knowledge document:
https://knowledge.broadcom.com/external/article?articleId=242932
Reason code 0008 indicates that "C1DEFLTS IDENTIFIED BY ENUXSITE NOT IN APF LOADLIB OR NOT LINKED WITH RENT ATTRIBUTE. "
The message "C1DEFLTS MODULE C1DEFL NOT FOUND OR NOT LINKED WITH RENT ATTRIBUTE" indicates that Endevor is looking for C1DEFLTS table named C1DEFL.
As of v18.1 the ENUXSITE table is by default delivered with the product. The default ENUXSITE will swap the C1DEFLTS to a new value based on the allocation of DD EN$DFT?? . So if the value of ?? 02 then C1DEFLT02 will be used instead of C1DEFTS. The above message indicates the table C1DEFL could not be allocated.
To resolve the problem, check if the following line in the Batch JCL that is being submitted:
//EN$DFT DD DUMMY
If it is coded, please remove the line or comment it out.
Note: This may happen in generated JCL. For example generating reports. To fix this change CSIQSENU([email protected])
FROM:
)SEL &CIDFLTNM NE C1DEFLTS
)SETF DFLSF = &SUBSTR(&CIDFLTNM,7,2)
//EN$DFT&DFLSF DD DUMMY <<=== REQUEST DEFAULTS &CIDFLTNM
//EN$TROPT DD SYSOUT=* <<=== REQUEST OPTIONS REPORT
)ENDSEL
TO:
)SEL &CIDFLTNM NE &Z
)SETF DFLSF = &SUBSTR(&CIDFLTNM,7,2)
//EN$DFT&DFLSF DD DUMMY <<=== REQUEST DEFAULTS &CIDFLTNM
//EN$TROPT DD SYSOUT=* <<=== REQUEST OPTIONS REPORT
)ENDSEL
Broadcom Development is working on a PTF.