Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Radio button ON module programe

Former Member
0 Likes
891

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.

7 REPLIES 7
Read only

Former Member
0 Likes
872

in th eproperties of your dynpro elements.

add those 3 radio buttons to a radioButtonGroup. thats it

Read only

Former Member
0 Likes
872

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

Read only

0 Likes
872

how to group radio button there is no option on right click

Read only

0 Likes
872

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

Read only

Former Member
0 Likes
872

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^

Read only

Former Member
0 Likes
872

Hi,

Select all the 3 radiobuttons & create a block under 1 radiobutton group

Thanks

sandeep

Reward if helpful

Read only

Former Member
0 Likes
872

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.