‎2008 Jul 08 12:39 PM
Hi,
Can anyone please tell while creating radiobutton's say R1 and R2, how to assign the both to a common function group and how to make the display with R1 defaultly checked where as R2 remains un checked.
Regards,
Ram.
‎2008 Jul 08 12:41 PM
Hello.
To assign to a common function group, just select both in the screen painter, and with right mouse button select that option.
Regarding it's values, in initialization event (for example, just have to be before the buttons appear first time), just put r1 = 'X' and r2 = space.
Regards.
Valter Oliveira.
‎2008 Jul 08 12:41 PM
Hello.
To assign to a common function group, just select both in the screen painter, and with right mouse button select that option.
Regarding it's values, in initialization event (for example, just have to be before the buttons appear first time), just put r1 = 'X' and r2 = space.
Regards.
Valter Oliveira.
‎2008 Jul 08 12:41 PM
hi,
try this code,
selection-screen.
radio1 as radiobutton group rad1,
radio2 as radiobutton group rad1.
In the PBO event pass the Value of radio1 = 'X'.
Hope this will help.
Regards
Sumit Agrwal
‎2008 Jul 08 12:41 PM
Hi,
Do Like below.
PARAMETERS:
p_rad1 RADIOBUTTON GROUP rad1 DEFAULT 'X' USER- COMMAND rad1,
p_rad2 RADIOBUTTON GROUP rad1.
Here Group id rad1 and default is radiobutton1.
Regards,
Sujit
‎2008 Jul 08 12:42 PM
Hi,
Please check this link
http://saptechnical.com/Tutorials/ABAP/Checkbox/page1.htm
http://saptechnical.com/Tutorials/ABAP/Checkbox/page2.htm
Best regards,
raam
‎2008 Jul 08 12:42 PM
Hi,
While initialization you should give 'x' in the select option so that it becomes checked by default.
Regards
Divya
‎2008 Jul 08 12:46 PM
parameters: a radiobutton group G1 default 'X',
b radiobutton group G1.Here, both parameters are part of the group G1, and 'a' is the default.
‎2008 Jul 08 12:47 PM
‎2008 Jul 08 12:53 PM
Hi all,
Please note my requirement is on a Module pool screen.
Regards,
Ram.
‎2008 Jul 08 1:00 PM
Hi again.
And as I said, in screen painter, with your mouse select both radiobuttons, and with them selected, press right mouse buton, and you will have a option to create a function group.
As I said also, in initialization event, or befor calling the screen it will be used, make r_1 = 'X' and r_2 = space.
Regards,
Valter Oliveira.