08-11-2009 12:58 PM
Hi all
can any one tel the solution for me
i created a screen with 5 radio buttons and i group then and is that possible with out defalut selection of a radio button.
08-11-2009 1:05 PM
It is not possible to have radiobutton without default selection.
If reqrmnt is such then use check boxes with validation to select maximum 1.
08-11-2009 1:05 PM
It is not possible to have radiobutton without default selection.
If reqrmnt is such then use check boxes with validation to select maximum 1.
08-11-2009 1:14 PM
HI Chitti,
its not possible to create radiobutton without default selection.
however you can use check box.
and put validation in at selection screen output.
Regards,
Vijay
08-11-2009 1:14 PM
Hi,
It is not possible.
But still try this thing,
Clear all radio Button after INITIALIZATION.
Thanks & regards,
ShreeMohan
08-11-2009 1:36 PM
Hi,
You can do one thing,
create 5 group of radio button where in each group u have 2 radio button.
Now Make invisable to radiobutton of each group which is marked or clicked.
Now you will able to see only radiobutton which are unchecked.
For example
R1 Group1 X
R2 Group1
R3 Group2 X
R4 Group2
R5 Group3 X
R6 Group3
R7 Group4 X
R8 Group4
R9 Group5 X
R10 Group5
You will make Radiobutton R1, R3, R5, R7, R9 invissiable.
08-11-2009 1:43 PM
Why not have 6 radio buttons and hide the first one only instead of 5 separate radio button groups
Anyways u cannot use No-Display with radio button group
08-11-2009 1:45 PM
Hi,
Hi,
You can do it by.
AT SELECTION-SCREEN OUTPUT.
LOOP AT SCREEN.
CASE screen-group1 .
WHEN 'G1'.
IF x_param EQ 'X'.
screen-active = 1.
ELSE.
screen-active = 0.
ENDIF.
WHEN 'G2'.
IF x_param EQ 'X'.
screen-active = 0.
ELSE.
screen-active = 1.
ENDIF.
WHEN OTHERS.
ENDCASE.
MODIFY SCREEN.
ENDLOOP.
08-11-2009 1:52 PM
Well I am pretty sure you dont run and try ur code before publishing here...
Just try it out.