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: 

To get a pop up screen in Module pool

Former Member
0 Kudos

Hi,

Can any one tell me how to get a pop up screen while clicking a button in selection screen in module pool program.

regards,

Ruchika saini

7 REPLIES 7

paruchuri_nagesh
Active Contributor
0 Kudos

hi

when designing screen in screen attributes

choose model dialog box option

after desigining that screen u have to use screen sequeneces

according to ur requirement

call screen 100

set screen 100

reward if u find use ful

regards

Nagesh.Paruchuri

Former Member
0 Kudos

HI,

Please any one?????

Regards,

Ruchika

0 Kudos

hi,

use statement CALL SCREEN SCRNO STARTING AT [ N,N] ENDING AT [N,N]

where scrno is scrno with four digit and n,n are x,y coordinates

for ex:

WHEN UR AT SCR 100. TO GET A SUB SCREEN THEN

IN PAI OF SCREEN 100.

CALL SCREEN 200 STARTING AT 10,40 ENDING AT 50,70. i.e sub screen is displayed for u at given x,y co-ordinates.

if helpful reward some points.

with regards,

Suresh Aluri.

Former Member
0 Kudos

This is the syntax for making a screen popup

call screen 100 starting at 10 , 10 ending at 40, 40.

Former Member

Hi ,

use the function module

'AQ_INT_SHOW_MESSAGE_AS_POPUP'

Thanks,CSR.

**Please Reward if helpful.

Former Member
0 Kudos

u can use a function module named something as get pop up hope that will help u...search for function module pop

Former Member
0 Kudos

Hi Ruchika,

This is the function module used in the program .

CALL FUNCTION 'POPUP_TO_CONFIRM'

EXPORTING

titlebar = 'Question'

text_question = 'Want delete records old table'

text_button_1 = 'YES'

text_button_2 = 'NO'

display_cancel_button = ' '

start_column = 25

start_row = 6

IMPORTING

answer = answer.

Regards,

Nihar Swain.