Page 1 of 1

Panel over a PANEL

PostPosted: Wed Nov 20, 2013 6:26 pm
by Ramsee
Hi All,

Warm greetings to one and all!!

I like to have a Sub-Panel over a Main-Panel in my design, To be brief i have a frame in that if i enter 2 in the TYPE OF EXTRACTION, i need to have a Sub-Panel inside the Main Panel.Now it is displaying in a new screen.
 -------------        FORM EXTRACT                  ------------
                                                                               
                                                          USERID: ZXXXXXX       
                                                          DATE  : 13/11/20     
                                                          TIME  : 07:51         
                                                                               
   PLEASE FILL THE FOLLOWING DETAILS FOR EXTRACTION                         
                                                                               
   E-MAIL ID OF THE USER ===>                                                   
                                                                               
   COMPANY NAME   ===>                                                   
                                                                               
   COMPANY NUMBER  ===>                                                   
                                                                               
   TYPE OF EXTRACTION    ===>                                                   
         1. SINGLE FILE EXTRACTION                                             
         2. MULTIPLE FILE EXTRACTIONS                                           


Sub-Panel
           DATE FOR VCF EXTRACTION     
   FROM DATE:                TO :     
   FORMAT OF DATE IS YYYYMMDD         
                                       


Please let me know how to do bring the Sub-Panel over the main panel.

Thanks,
Ramsee

Re: Panel over a PANEL

PostPosted: Wed Nov 20, 2013 6:46 pm
by enrico-sorichetti
not a REXX problem...
read the ispf manuals for the POP UP panel logic

Re: Panel over a PANEL

PostPosted: Wed Nov 20, 2013 6:50 pm
by Ramsee
Hi All,

Thanks for the time now i have found a solution for the above requirement. :)

 "ISPEXEC ADDPOP POPLOC(FIELDname)"           
 ZWINTTL = "TOPIC FOR THE POPUP"
 "ISPEXEC DISPLAY PANEL(SUBPANEL)"           


Above code was done the EX rexx code and i was able to acheieve the output as expect.

Thanks,
Seetharaman

Re: Panel over a PANEL

PostPosted: Thu Nov 21, 2013 10:16 am
by TheMFKid
Ramsee, nice to find that you've joined here.. Apart from rexx, you can directly call your popup panel frm inside your main panel. You can try to find how popup panel is called when you hit option 9(Additional IBM Program Development Products) from ISPF Primary Option Menu, if you have it in your shop.

Re: Panel over a PANEL

PostPosted: Thu Nov 21, 2013 7:07 pm
by Pedro
...you can directly call your popup panel frm inside your main panel. You can try to find how popup panel is called ...

ISR@PRIM has an example of using the SELECT statement with the ADDPOP parameter.

Re: Panel over a PANEL

PostPosted: Fri Nov 22, 2013 10:05 am
by TheMFKid
Yes, Thanks Pedro.