View previous topic :: View next topic |
Author |
Message |
suma Beginner
Joined: 23 Jan 2006 Posts: 65 Topics: 29
|
Posted: Fri Nov 16, 2007 6:05 am Post subject: problem with SYS1.LINKLIB |
|
|
Hi all,
I am getting following error when trying to run the program in test region....
"NOT ABLE TO LOCATE pgm1 IN DSNAME SYS1.LINKLIB "
Is this a problem with the compilation or do I have include any library for this?
thanks in advance
regards
Suma |
|
Back to top |
|
|
vivek1983 Intermediate
Joined: 20 Apr 2006 Posts: 222 Topics: 24
|
Posted: Fri Nov 16, 2007 6:16 am Post subject: |
|
|
suma,
Seems like you have not concatenated the correct loadlib in your JCL.
Try executing the job after giving the correct loadlib in the STEPLIB statement in the JCL. _________________ Vivek G
--------------------------------------
A dream is just a dream. A goal is a dream with a plan and a deadline. (Harvey Mackay) |
|
Back to top |
|
|
Bill Dennis Advanced
Joined: 03 Dec 2002 Posts: 579 Topics: 1 Location: Iowa, USA
|
Posted: Fri Nov 16, 2007 2:27 pm Post subject: |
|
|
In the message, "SYS1.LINKLIB" probably means the system linklist. The linklist is a concatenation of load libs that are searched when a module is not found in the STEPLIB. SYS1.LINKLIB is one of these libraries, but there are other system and site load libraries, too.
As vivek said, your solution is probably to include your specific library as a STEPLIB. _________________ Regards,
Bill Dennis
Disclaimer: My comments on this foorum are my own and do not represent the opinions or suggestions of any other person or business entity. |
|
Back to top |
|
|
semigeezer Supermod
Joined: 03 Jan 2003 Posts: 1014 Topics: 13 Location: Atlantis
|
Posted: Fri Nov 16, 2007 3:19 pm Post subject: |
|
|
If the module is actually supposed to come from sys1.linklib, it may be that someone updated it there and the library went to extra extents. If that is the case an LLA refresh might be needed or in some cases a complete IPL. If this really is something that should have come from that data set, talk to the system managers. _________________ New members are encouraged to read the How To Ask Questions The Smart Way FAQ at http://www.catb.org/~esr/faqs/smart-questions.html. |
|
Back to top |
|
|
taltyman JCL Forum Moderator
Joined: 02 Dec 2002 Posts: 310 Topics: 8 Location: Texas
|
Posted: Tue Nov 20, 2007 8:39 am Post subject: |
|
|
A common practice for libraries in the linklist is to not allocate secondary extents. Also programmers/users probably should not be allowed to update any libraries in the linklist. |
|
Back to top |
|
|
suma Beginner
Joined: 23 Jan 2006 Posts: 65 Topics: 29
|
Posted: Mon Dec 03, 2007 3:11 am Post subject: |
|
|
Thank you all,
I had a problem while pointing to load lib; due this job abending.
Now I added correct loadlib, my job is working as expected.
Thanks
suma |
|
Back to top |
|
|
|
|