IBM Mainframe Forum Index
 
Log In
 
IBM Mainframe Forum Index Mainframe: Search IBM Mainframe Forum: FAQ Register
 

Problem moving a cobol program into Endevor U8 stage


IBM Mainframe Forums -> COBOL Programming
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
amitc23

New User


Joined: 05 Nov 2014
Posts: 98
Location: India

PostPosted: Thu Feb 13, 2025 2:27 pm
Reply with quote

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                     
 .                                                                       


the JCL which is generated is
Code:

//*********************************************************************
//*  BATCH JCL STATEMENTS                                             *
//*********************************************************************
//NDVRBAT  EXEC PGM=NDVRC1,DYNAMNBR=1500,REGION=4096K,                 
//  PARM='C1BM3000'                                                     
//STEPLIB  DD DISP=SHR,DSN=XXXENP.ADM19.FI.LOADLIB                     
//         DD DISP=SHR,DSN=XXXENP.ADMIN.FI.LOADLIB                     
//         DD DISP=SHR,DSN=STCV.CAI.ENDEVOR.V19R0M0.CSIQLOAD           
//         DD DISP=SHR,DSN=STCV.CAI.ENDEVOR.V19R0M0.CSIQAUTU           
//         DD DISP=SHR,DSN=STCV.CAI.ENDEVOR.V19R0M0.CSIQAUTH           
//CONLIB   DD DISP=SHR,DSN=STCV.CAI.ENDEVOR.V19R0M0.CSIQLOAD           
//SYSPRINT DD SYSOUT=*                                                 
//*********************************************************************
//*             SORT WORK FILES                                       *
//*********************************************************************
//SORTWK01 DD UNIT=SYSDA,SPACE=(CYL,(1,2))                             
//SORTWK02 DD UNIT=SYSDA,SPACE=(CYL,(1,2))                             
//SORTWK03 DD UNIT=SYSDA,SPACE=(CYL,(1,2))                             
//C1TPDD01 DD UNIT=SYSDA,SPACE=(CYL,5),                                 
//            DCB=(RECFM=VB,LRECL=260)                                 
//C1TPDD02 DD UNIT=SYSDA,SPACE=(CYL,5),                                 
//            DCB=(RECFM=VB,LRECL=260)                                 
//*********************************************************************
//*  OUTPUT DATA SETS                                                 *
//*********************************************************************
//C1MSGS1  DD SYSOUT=*                                                 
//C1MSGS2  DD SYSOUT=*                                                 
//C1PRINT  DD SYSOUT=*,DCB=(RECFM=FBA,LRECL=133)                       
//SYSUDUMP DD SYSOUT=*                                                 
//SYMDUMP  DD DUMMY                                                     
//SYSOUT   DD SYSOUT=*                                                 
//*********************************************************************
//*  REQUEST DATA SET                                                 *
//*********************************************************************
//BSTIPT01 DD DISP=SHR,                                                 
// DSN=P18276.XXX.JCLLIB(SCL1)                                         
//* C1SB3000 GENERATED BY P18276 ON 25/02/13 AT 03:46                   
**************************** Bottom of Data ****************************


The loadlib in which statically called module is in XXXSIS.XXX.LOADLIB

I tried appending the Loadlib in STEPLIB and CONLIB, it did not work icon_sad.gif.
Where do I place this Loadlib ?

Please suggest

Thanks for all your help
Back to top
View user's profile Send private message
Pedro

Global Moderator


Joined: 01 Sep 2006
Posts: 2609
Location: Silicon Valley

PostPosted: Fri Feb 14, 2025 9:52 am
Reply with quote

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.
Back to top
View user's profile Send private message
Rohit Umarjikar

Global Moderator


Joined: 21 Sep 2010
Posts: 3084
Location: NYC,USA

PostPosted: Fri Feb 14, 2025 12:30 pm
Reply with quote

ibmmainframes.com/about31275.html
Back to top
View user's profile Send private message
amitc23

New User


Joined: 05 Nov 2014
Posts: 98
Location: India

PostPosted: Fri Feb 14, 2025 1:28 pm
Reply with quote

Thanks Rohit and Pedro.

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.
Back to top
View user's profile Send private message
View previous topic :: :: View next topic  
Post new topic   Reply to topic View Bookmarks
All times are GMT + 6 Hours
Forum Index -> COBOL Programming

 


Similar Topics
Topic Forum Replies
No new posts Starting a CICS Transaction from a Th... CICS 0
No new posts COBOL Infinite loops COBOL Programming 7
No new posts COBOL sorting, with input GDG base COBOL Programming 7
No new posts Need help with ADABAS query (COBOL-AD... All Other Mainframe Topics 1
No new posts Replacing FILLER with FILLER<SeqNu... DFSORT/ICETOOL 2
Search our Forums:

Back to Top