‎2007 Oct 26 3:53 PM
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.............
‎2007 Oct 26 4:00 PM
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
‎2007 Oct 26 4:00 PM
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
‎2007 Oct 26 4:25 PM
if possible can u suggest some function module for my requirements.........
‎2007 Oct 26 4:22 PM
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
‎2007 Oct 26 4:27 PM
thanks....bt will it be called when I press push button............as a popup window....