‎2008 Dec 10 6:20 AM
hi all,
i modified a layout for screen which add 2 radio button.
how can i set just one radio button marked
when i enter the transactin. so user can choose
which one to tick?
my screen both radiobutton are active(marked)
when i enter the transaction.
‎2008 Dec 10 6:21 AM
Hi
You ned to group the radio button. Select both radio buttons on screen, right click, select, group them.
Regards
Aditya
‎2008 Dec 10 6:21 AM
Hi
You ned to group the radio button. Select both radio buttons on screen, right click, select, group them.
Regards
Aditya
‎2008 Dec 10 6:23 AM
Hi
Use the GROUP addition to the declaration and give the same group name to the both RADIO BUTTONS( if you are using PARAMETER KEY Word)
if in SCREEN painter go to EDITGROUPINGRADIOBUTTON-DEFINE
Regards
Ramchader Rao.K
Edited by: ramchander krishnamraju on Dec 10, 2008 7:23 AM
‎2008 Dec 10 6:25 AM
use this logic. u have to define all radio buttons into same group name.
SELECTION-SCREEN: BEGIN OF LINE.
parameters: EP radiobutton group G2,
AP radiobutton group G2,
GB radiobutton group G2 default 'X'.
Regards,
Ajay
‎2008 Dec 10 6:34 AM
Hi,
Do as per below,
parameters : radio1 type c radiobutton group gp1,
radio2 type c radiobutton group gp1.
Here, there are 2 radio buttons which are under same group gp1, so that at a time only one get selected.
Thanks,
Prajakta.