Portal | IBM Manuals | Downloads | Products | Refer | Info | Programs | JCLs | Forum Rules*| Site Map | Mainframe CD 
IBMMAINFRAMES.com - IBM Mainframe Support Forums Index
 
Register
 
IBMMAINFRAMES.com - IBM Mainframe Support Forums Index FAQ Search Memberlist Usergroups Profile Log in to check your private messages Log in
 
job through rexx

 
Post new topic   Reply to topic    IBMMAINFRAMES.com Support Forums -> CLIST & REXX
Author Message
theslaveofgod

New User


Joined: 16 Feb 2006
Posts: 5

PostPosted: Thu Mar 09, 2006 5:33 pm    Post subject: job through rexx
Reply with quote

hi,
I have submitted a job through rexx. The problem is that the rexx programe must wait and recieve the return code of that submitted job and then execute other operations in it. How to achieve this condition?? icon_cry.gif icon_exclaim.gif
Back to top
View user's profile Send private message
References
superk

Moderator Team Head


Joined: 26 Apr 2004
Posts: 3383
Location: Charlotte,NC USA

PostPosted: Thu Mar 09, 2006 5:56 pm    Post subject: Re: job through rexx
Reply with quote

Does your REXX exec trap the jobname and jobid (i.e. job number) of the job that was submitted?
Back to top
View user's profile Send private message
theslaveofgod

New User


Joined: 16 Feb 2006
Posts: 5

PostPosted: Thu Mar 09, 2006 6:39 pm    Post subject: ya
Reply with quote

ya i am executing that job with a separate id which is trapped by the rexx
Back to top
View user's profile Send private message
amitava
Warnings : 1

Active User


Joined: 30 Oct 2005
Posts: 191
Location: India

PostPosted: Thu Mar 09, 2006 6:42 pm    Post subject:
Reply with quote

Hey theslaveofgod,
Please check the forum again. I have already posted the topic about how to control the JOB flow. Its very simple. And if u want the detail coding I will send u later
Back to top
View user's profile Send private message
martin9

Active User


Joined: 01 Mar 2006
Posts: 278
Location: Basel, Switzerland

PostPosted: Thu Mar 09, 2006 6:49 pm    Post subject:
Reply with quote

instead of submitting a job,
call the program directly under rexx,
allocate all neccessary datasets first
using the tso-services (i.e. address tso),
then you will also receive a return code,
without leaving your main program...

martin9
Back to top
View user's profile Send private message
theslaveofgod

New User


Joined: 16 Feb 2006
Posts: 5

PostPosted: Thu Mar 09, 2006 7:56 pm    Post subject: but how to recieve the return code
Reply with quote

hi martin
i am actually running the jcl in the method what you have said but the problem is how to recieve the return codes. The rexx doesnt wait for the execution of jcl. it ends before the job get submitted and return codes are produced
Back to top
View user's profile Send private message
martin9

Active User


Joined: 01 Mar 2006
Posts: 278
Location: Basel, Switzerland

PostPosted: Thu Mar 09, 2006 8:50 pm    Post subject:
Reply with quote

hy,
no no no, you did not understand.
first, i assume you have a jcl with one step and you
want further processing depending on the result (i.e. RC=0).
therefore don't start any jcl, instead ...

rexx code...
.
.
address tso
alloc dd(sysin) ...
alloc dd(sysprint) ... and so on...
call *(pgm)
if rc = 0 then further processing
.
.
exit 0

you do all thru rexx!
if you have a jcl with several steps, we should consider
any other solution, for example run everything in batch.

martin9
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    IBMMAINFRAMES.com Support Forums -> CLIST & REXX All times are GMT + 6 Hours
Page 1 of 1