Page 1 of 1

Call and create panels in rexx.

Posted: Fri Feb 05, 2016 5:20 pm
by Kiran Vijay
Hi All,

Can someone please direct me to a direction to create panels using rexx? I thought to call a ISPF panels using rexx. But can we create panels using REXX? Iam very new when it comes to creating panels. I have started with a simple one and called it using ISPEXEC in rexx but 'panel not found' error came up. How can we give the path of a panel in rexx which we want to call?

Re: Call and create panels in rexx.

Posted: Fri Feb 05, 2016 5:36 pm
by nicc
Ypu can use any programming language you want to create an ISPF panel but you can only use those that support ISPEXEC to display it.

To display the panel the panel must be in a library/pds that is allocated to the DDname that is used for panels.

Have you looked at your setup? Other panels? Other rexx programs? The ISPF Dialogue manuals?

Re: Call and create panels in rexx.

Posted: Mon Feb 08, 2016 12:16 pm
by Kiran Vijay
THanks. I have used this:

Code: Select all

/*REXX*/ 
PANELLIBS="PANEL.PDS" 
ADDRESS ISPEXEC 
"LIBDEF ISPPLIB DATASET ID('"PANELLIBS"')" 
"DISPLAY PANEL(MYPANEL)"