Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

How to pass a screen as a pop up window?

Former Member
0 Kudos

Hi SDN,

Can any one tell how one can pass the screen as a pop up window.

Regards,

Rahul

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi,

You must declare global variables in your program with the same name as the elements you created on the screen.

kr,

Peter

5 REPLIES 5

Former Member
0 Kudos

Hi Rahul,

is it a new screen?

You can influence the screen by the GUI status. Create a GUI status of type 'dialog box'. Call the screen, and in the PBO of the screen write 'SET PF-STATUS <gui_status>'.

hope it helps,

Peter

0 Kudos

Hi Peter,

Indeed it's a new screen created can also tell me once i input data on the screen how to retrive it.

regards,

Rahul

Former Member
0 Kudos

Hi,

You must declare global variables in your program with the same name as the elements you created on the screen.

kr,

Peter

Former Member
0 Kudos

For pop windows define a screen and call it

call screen starting at <col_no> <lin_no>

ending at <col_no> <lin_no>

this will create a pop window ..

Rewards points if helpful

former_member195698
Active Contributor
0 Kudos

You can set the screen type as 'MODAL DIALOG BOX'.

If you activate this attribute, the screen is used as a modal dialog box. In the program, you call the screen with

CALL SCREEN STARTING AT <top left>

ENDING AT <bottom right>.

Unlike normal pop-ups, a modal dialog box has its own pushbuttons and title. There is no menu bar and command field entries are not possible.

Regards,

Abhishek