Page 1 of 1

How to display a panel

PostPosted: Mon Aug 18, 2008 5:52 pm
by supriya saraswat
Say I've created a panel. Now I want to display it. In REXX what will be the command to display a panel.

Re: How to display a panel

PostPosted: Mon Aug 18, 2008 6:29 pm
by MrSpock
supriya saraswat, the ISPF Dialog commands for displaying a panel are the same for REXX as for any other language you've worked with. All you need to do is to use the ISPF Edit Models for REXX for the DISPLAY command.

Re: How to display a panel

PostPosted: Tue Aug 19, 2008 7:48 pm
by expat
And don't forget to ensure that either the PDS that contains your panel is concatenated into ISPPLIB, or that you have done a LIBDEF to add your own personal library into the ISPPLIB concatenation.

Re: How to display a panel

PostPosted: Thu Sep 11, 2008 12:11 pm
by rajithr007
1)For displaying a simple display panel

Address ISPEXEC "DISPLAY PANEL(<panelname>)"

2)For displaying a selection display panel (like isp@prim panel)

Address ISPEXEC "SELECT PANEL(<panelname>)"

3)For displaying a panel with a table imbed ( )MODEL in the panel)

Address ISPEXEC "TBDISPL <table-name> PANEL(<panelname>)"

please refer ISPF Services Guide for more information