Hi
I am trying to move a cobol program to Endevor from my PDS. This program has static call to one more program, for which I just have the loadlib. However after creation of SCL and running it . I get error
Code:
IEW2456E 9207 SYMBOL UTGETDSN UNRESOLVED. MEMBER COULD NOT BE INCLUDED FROM THE
IEW2456E 9207 SYMBOL USERABND UNRESOLVED. MEMBER COULD NOT BE INCLUDED FROM THE
The SCL I am using is
Code:
ADD ELEMENT 'XXXIBNCQ'
FROM DSNAME 'XXXEIS.XXX.SRCLIB'
TO ENVIRONMENT 'DEV8' SYSTEM 'PRODSERV' SUBSYSTEM 'COMMON'
TYPE 'COBOL'
OPTIONS CCID 'TXXXMIGRAT'
COMMENTS "MOVEMEN OF ELEMENTS TO ENDEVOR" UPDATE
.
Joined: 01 Sep 2006 Posts: 2609 Location: Silicon Valley
You are not showing us the entire IEW2456E message. That message is normally issued from the z/OS Binder, but I do not see that in your JCL... it must be being called internally.
The Binder normally pulls members from the SYSLIN or SYSLIB, so maybe adding those DD statements to your existing JCL may help.
I do not know anything about Endevour, so there could be a supported way to specify the SYSLIN and SYSLIB files.
Will try this Rohit, BTW, in the meantime, I made it a dynamic call and now the program is moved to ENDEVOR stage 1. But the solution is worth trying. Will post that after I do.