‎2008 Jul 08 12:48 PM
Hi,
Can anyone please tell while creating radiobutton's on Module- pool Screen 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 1:03 PM
‎2008 Jul 08 12:53 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.
Anju
‎2008 Jul 08 1:04 PM
What a shame Anju, copying others text!!!
In previous thread created i wrote:
"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."
WHAT A GOOD WAY TO WIN POINTS ... CONGRATS !!!
Regards.
‎2008 Jul 08 1:00 PM
hi,
SELECTION-SCREEN BEGIN OF BLOCK out WITH FRAME TITLE text-s01.
parameters: p_type radiobutton group grp1 DEFAULT 'X',
p_reason radiobutton group grp1.
SELECTION-SCREEN END OF BLOCK out.
REGARDS,
SANDEEP
Edited by: Sandeep patel on Jul 8, 2008 5:31 PM
‎2008 Jul 08 1:03 PM
‎2008 Jul 08 1:04 PM
Hi
Go to screen
select al radio buttons, right click, radio button group, define.
and for dfault value
in top define
data: r1 type c value 'X'.
Aditya
‎2008 Jul 08 1:06 PM
Hi,
First Select Both of the radiobutton using CNTL Key.Now after right click There is a Option 'Radio Button Group'.
After that Select 'Define'.
Now put this Group In the Attribute list of Both The Radiobutton.In the Attribute list There is 4 Group Box.
Write the group name.
For Default value write it in PBO.
Regards,
Sujit
‎2008 Jul 08 1:08 PM
Hi,
SELECTION-SCREEN BEGIN OF BLOCK out WITH FRAME TITLE text-s01.
parameters: p_type radiobutton group grp1 DEFAULT 'X',
p_reason radiobutton group grp1.
SELECTION-SCREEN END OF BLOCK out.
p_type = 'X' and p_reason = space.
Regards,
Khushbu.
‎2008 Jul 08 1:17 PM
‎2008 Jul 08 1:47 PM
Hi
Select those two radiobuttons by dragging & rightclick, u'l get an option called 'Define radio button group' , select that one.
Regards
Abaper