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

How to call second panel in REXX


IBM Mainframe Forums -> TSO/ISPF
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
expat

Global Moderator


Joined: 14 Mar 2007
Posts: 8797
Location: Welsh Wales

PostPosted: Tue Jul 21, 2009 1:41 pm
Reply with quote

Then code the controlling REXX to do as you require.
Back to top
View user's profile Send private message
POOJA KHADE

New User


Joined: 28 Dec 2006
Posts: 15
Location: mumbai

PostPosted: Tue Jul 21, 2009 3:09 pm
Reply with quote

Thanks for the help you provided.
I got my goal and successfully executed the panel
Back to top
View user's profile Send private message
Marso

REXX Moderator


Joined: 13 Mar 2006
Posts: 1353
Location: Israel

PostPosted: Tue Jul 21, 2009 7:01 pm
Reply with quote

Use enrico template.

Here is another example I like to use:
Code:
Do Forever
   Address ISPEXEC "DISPLAY PANEL(Panel1)"
   If RC <> 0 Then Leave
   ... /* check/process Panel1 */
   Call Show_Panel2
End
Exit/Return

Show_Panel2:
   Do Forever
      Address ISPEXEC "DISPLAY PANEL(Panel2)"
      If RC <> 0 Then Leave
      ... /* check/process Panel2 */
      ... /* data from Panel1 available as well */
   End
Return


Where did you learn to use the SIGNAL command??
With SIGNAL you can jump from place to place,
but after a while you won't know where you're coming from, and where to go back when you're finished... icon_confused.gif
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 -> TSO/ISPF

 


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