Application Development and Automation 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: 
Read only

interactive popup window

Former Member
0 Likes
627

my requirement has some additions...if anyone tell me....it will be great help to me....

my popup window should have an user entry to make with 2 radiobuttons within it.....

help me guys.....

its urgent.............

Thanks in advance.............

1 ACCEPTED SOLUTION
Read only

h_senden2
Active Contributor
0 Likes
595

instead of using a POPUP function module you can always create a new window with the screen painter, and uses the CALL SCREEN statement.

regards,

Hans

4 REPLIES 4
Read only

h_senden2
Active Contributor
0 Likes
596

instead of using a POPUP function module you can always create a new window with the screen painter, and uses the CALL SCREEN statement.

regards,

Hans

Read only

Former Member
0 Likes
595

if possible can u suggest some function module for my requirements.........

Read only

Former Member
0 Likes
595

Hi KARTIKEY,

Use below code

SELECTION-SCREEN BEGIN OF SCREEN 500 TITLE title

AS WINDOW.

parameter : r_1 radiobutton group r1,

r_2 radiobutton group r1.

SELECTION-SCREEN END OF SCREEN 500.

title = 'Input name'.

where ever u want to call this screen call by below statement.

CALL SELECTION-SCREEN '0500' STARTING AT 10 10.

regards,

SKumar

Read only

0 Likes
595

thanks....bt will it be called when I press push button............as a popup window....