View previous topic :: View next topic |
Author |
Message |
bindu Beginner
Joined: 05 Jan 2003 Posts: 17 Topics: 7
|
Posted: Mon Mar 03, 2003 9:18 pm Post subject: Creating panels using Rexx |
|
|
Hello All,
Can anybody please help me in creating panels using rexx?
Regards,
Bindu |
|
Back to top |
|
|
dorkhead Beginner
Joined: 07 Jan 2003 Posts: 25 Topics: 0 Location: Lux
|
Posted: Tue Mar 04, 2003 4:23 am Post subject: |
|
|
are u planning to use in-code (REXX) panels ? _________________ Dorkhead |
|
Back to top |
|
|
bindu Beginner
Joined: 05 Jan 2003 Posts: 17 Topics: 7
|
Posted: Tue Mar 04, 2003 6:13 am Post subject: |
|
|
I was planning to invoke ISPF panels using Rexx ..Can we create panels using REXX .. please do help me with this ..
I know nothing abt creating panels .. i tried out a simple one and tried to invoke using ISPEXEC in REXX .. i got the error panel not found .. how to set the path so that rexx knows that this is the panel we are referring to ? |
|
Back to top |
|
|
sriramla Beginner
Joined: 22 Feb 2003 Posts: 74 Topics: 1
|
Posted: Tue Mar 04, 2003 9:52 am Post subject: |
|
|
Since u have already a panel (without syntax errors), use the following code to display it.
/*REXX*/
panelLib ="PDS.HAVING.THE.PANEL"
ADDRESS ISPEXEC
"LIBDEF ISPPLIB DATASET ID('"panelLib"')"
"DISPLAY PANEL(PANEL1)" |
|
Back to top |
|
|
bindu Beginner
Joined: 05 Jan 2003 Posts: 17 Topics: 7
|
Posted: Thu Mar 06, 2003 9:11 pm Post subject: |
|
|
Thank you all for ur help .. I was able to call panel from rexx .. only then i realized that my panel has got some syntax errors .. I am in the process of correcting it .. Thanks for the help ..
Regards,
Bindu |
|
Back to top |
|
|
|
|