2007 May 30 7:24 AM
Hi,
I've 3 radio button in Module Programming but all those 3 are checked i also have different names, how can i check only 1 radio button at 1 time
Thanks.
Hi,
I've 3 radio button in Module Programming but all those 3 are checked i also have different names, how can i check only 1 radio button at 1 time
Thanks.
2007 May 30 7:25 AM
in th eproperties of your dynpro elements.
add those 3 radio buttons to a radioButtonGroup. thats it
2007 May 30 7:26 AM
in screen layout select all the three( at a time) radio button press right click and create the group for that radio buttons.
reagrds
shiba dutta
2007 May 30 7:36 AM
2007 May 30 7:41 AM
click on first radiobutton and hold the shift key and click on other two radiobuttons as well and then right click on the selected area to group them
2007 May 30 7:27 AM
hi
good
go to the properties screen of each radio buttons and change the contition type of the check boxes,it ll work fine.
thanks
mrutyun^
2007 May 30 7:27 AM
Hi,
Select all the 3 radiobuttons & create a block under 1 radiobutton group
Thanks
sandeep
Reward if helpful
2007 Jun 12 6:49 AM
hi,
try it once
DATA: radio1(1) TYPE c, radio2(1) TYPE c, radio3(1) TYPE c.
DATA: ok_code TYPE sy-ucomm,
save_ok TYPE sy-ucomm.
CALL SCREEN 100.
MODULE user_command_0100 INPUT.
save_ok = ok_code.
CLEAR ok_code.
CASE save_ok.
WHEN 'RADIO'.
IF radio1 = 'X'.
ELSEIF radio2 = 'X'.
ELSEIF radio3 = 'X'.
ENDIF.
ENDCASE.
ENDMODULE.
| User | Count |
|---|---|
| 4 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |