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

job through rexx


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

New User


Joined: 16 Feb 2006
Posts: 5

PostPosted: Thu Mar 09, 2006 5:33 pm
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
superk

Global Moderator


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

PostPosted: Thu Mar 09, 2006 5:56 pm
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
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: 186
Location: India

PostPosted: Thu Mar 09, 2006 6:42 pm
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: 290
Location: Basel, Switzerland

PostPosted: Thu Mar 09, 2006 6:49 pm
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
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: 290
Location: Basel, Switzerland

PostPosted: Thu Mar 09, 2006 8:50 pm
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
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 Compile Several JCL JOB Through one r... CLIST & REXX 4
No new posts Running REXX through JOB CLIST & REXX 13
No new posts Error to read log with rexx CLIST & REXX 11
No new posts isfline didnt work in rexx at z/OS ve... CLIST & REXX 7
No new posts run rexx code with jcl CLIST & REXX 15
Search our Forums:

Back to Top