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

Run a REXX pgm in another REXX pgm...


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

New User


Joined: 31 Oct 2006
Posts: 48
Location: Chennai

PostPosted: Thu Nov 30, 2006 3:16 pm
Reply with quote

Hi,

Can anyone please tell me how to run a REXX pgm in another REXX pgm.

Please give me the command.

Thanks & regards,
OP
Back to top
View user's profile Send private message
jon_s_rice

Active User


Joined: 24 Mar 2005
Posts: 102
Location: Douglasville, GA USA

PostPosted: Thu Nov 30, 2006 4:16 pm
Reply with quote

use call for example
call program2
or
call program2 arg1,arg2,arg3
Back to top
View user's profile Send private message
shreevamsi

Active User


Joined: 23 Feb 2006
Posts: 305
Location: Hyderabad,India

PostPosted: Thu Nov 30, 2006 4:17 pm
Reply with quote

hi op,

You can call a REXX pgm from a REXX prm by using CALL

CALL pgmname variables

~Vamsi
Back to top
View user's profile Send private message
sankarsclm

New User


Joined: 11 Oct 2006
Posts: 4

PostPosted: Mon Dec 04, 2006 1:31 pm
Reply with quote

Hi,

You can call REXX pgm in another REXX pgm.

Syntax :
Call Pgmname List of parameters

But understand that
The program you are calling should be in the same PDS where the main program exists.
1) If you are running online the subprogram should be present in any one the PDS Concatenated with SYSPROC and SYSEXEC.
2) If you are running in batch the subprogram should be present in any one the PDS Concatenated with SYSPROC and SYSEXEC given in your Batch JCL

Regards
Sankar
Back to top
View user's profile Send private message
ofer71

Global Moderator


Joined: 27 Dec 2005
Posts: 2358
Location: Israel

PostPosted: Mon Dec 04, 2006 4:17 pm
Reply with quote

Another methods:

1. ADDRESS TSO "%rexx_name"
2. ADDRESS ISPEXEC "SELECT CMD(%rexx_name)"

O.
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