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

Is there any load module for CLIST's that are created


IBM Mainframe Forums -> CLIST & REXX
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
sriram_srec

New User


Joined: 15 Sep 2005
Posts: 11
Location: Chennai

PostPosted: Tue Jan 16, 2007 4:18 pm
Reply with quote

Hi,
When i use CALL stmt, it states that the load module for the calling CLISt does not exist..

Is there any load module for CLIST's that are created.
if there are, where can i find them and what things i need to provide to have another CLIST called??

Thanks,
Back to top
View user's profile Send private message
William Thompson

Global Moderator


Joined: 18 Nov 2006
Posts: 3156
Location: Tucson AZ

PostPosted: Tue Jan 16, 2007 4:29 pm
Reply with quote

Load module for a CLIST?
Never-the-less, where ever the CLIST that you are calling is, it isn't in the required concatenation......
Back to top
View user's profile Send private message
sriram_srec

New User


Joined: 15 Sep 2005
Posts: 11
Location: Chennai

PostPosted: Tue Jan 16, 2007 4:40 pm
Reply with quote

I gave CALL 'XX@XXXX.CLIST.PROGS(PGM4)' and PGM4 is residing in XX@XXXX.CLIST.PROGS.

Still, i am getting the following error..
"Command 'CALL ' abended with code 806000. Load module not found"
Back to top
View user's profile Send private message
amitava
Warnings : 1

Active User


Joined: 30 Oct 2005
Posts: 186
Location: India

PostPosted: Tue Jan 16, 2007 5:19 pm
Reply with quote

Hi Sriram,
Are you using the statement like - CALL A.B.C.D(MEM1). It is no way possible. If you are using JCL to invoke the clist program, then the SYSPROC or SYSEXEC DDname should refer the library where your CLIST programs should reside. However, if you are running in online, then you have to just put the MEM1 in the same library.

Correct me if I am wrong.
Back to top
View user's profile Send private message
superk

Global Moderator


Joined: 26 Apr 2004
Posts: 4652
Location: Raleigh, NC, USA

PostPosted: Tue Jan 16, 2007 5:49 pm
Reply with quote

You CALL a program that is in executable (load module or program object) form.

You EXECute a CLIST or REXX exec.
Back to top
View user's profile Send private message
Mickeydusaor

Active User


Joined: 24 May 2006
Posts: 258
Location: Salem, Oregon

PostPosted: Thu Jan 18, 2007 4:48 am
Reply with quote

you call a CLIST or REXX as follows;

call clist parms - where clist is the name of your pgm4 and parms are
any inputs required for your clist.

call rexx parms - where rexx is the name of your pgm4 and parms are
amy inputs required for your rexx.

call 'xxxx.xxxx(mem1)' - is calling a compile load module from
so other compiled language.
Back to top
View user's profile Send private message
dick scherrer

Moderator Emeritus


Joined: 23 Nov 2006
Posts: 19244
Location: Inside the Matrix

PostPosted: Thu Jan 18, 2007 4:56 am
Reply with quote

Hello,

Said slightly differently, instead of

Code:
CALL 'XX@XXXX.CLIST.PROGS(PGM4)'


try

Code:
EXEC  'XX@XXXX.CLIST.PROGS(PGM4)'
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 -> CLIST & REXX

 


Similar Topics
Topic Forum Replies
No new posts Load new table with Old unload - DB2 DB2 6
No new posts CLIST - Virtual storage allocation error CLIST & REXX 5
No new posts How to load to DB2 with column level ... DB2 6
No new posts REASON 00D70014 in load utility DB2 6
No new posts DB2 Load - Sort Or order BY DB2 1
Search our Forums:

Back to Top