View previous topic :: View next topic
|
Author |
Message |
harisukumaran
New User
Joined: 14 Jun 2005 Posts: 75
|
|
|
|
I get a 'Panel not found' error when i hit PF3 on a panel
I have coded libdef for the panel library and the panel does get displayed
But I get the error when i hit PF3
I am sure I messed up something very elementary. Been struggling with this issue for a few days now. I looked online but could not find a solution.
Your help is greatly appreciated
Code: |
/* REXX */
"ispexec libdef ispplib dataset id('mylib.ispplib')"
do forever
"ispexec display panel(testpan)"
if rc <> 0 then leave
end
"ispexec libdef ispplib"
|
Code: |
Test Panel
Command ===>
Dummy Field...........
|
Code: |
ISPF Dialog Error
Command ===>
******************************************************************************
* ISPP100 *
* *
* Panel 'EZY2P99' error *
* Panel not found. *
* *
* *
* *
* *
* *
* *
* *
* *
* *
* Enter HELP command for further information regarding this error. *
* Press ENTER key to terminate the dialog. *
* *
* *
* *
* *
******************************************************************************
|
|
|
Back to top |
|
|
harisukumaran
New User
Joined: 14 Jun 2005 Posts: 75
|
|
|
|
I just noticed this happens only when i am exec ing the rexx from EZYEDIT (PDSMAN) panel
I don't have the issue when I exec the rexx using TSO EXEC
This must have something to do with the way PDSMAN is installed at our shop
I am closing this question. No point in wasting people's time with it, i guess. |
|
Back to top |
|
|
Joerg.Findeisen
Senior Member
Joined: 15 Aug 2015 Posts: 1319 Location: Bamberg, Germany
|
|
|
|
harisukumaran wrote: |
Code: |
"ispexec libdef ispplib dataset id('mylib.ispplib')"
|
|
Replace with:
Code: |
"ispexec libdef ispplib dataset id('mylib.ispplib') stack" |
|
|
Back to top |
|
|
|