Application Development 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: 

if radio button is checked then check box will be selected withoutexecuting

Former Member
0 Kudos

hi,

i have one doubt,

is it possible if i select a radio button i want to check the check box at the same time and vice versa with out executing (f8) .

plz provide the solution,

thanks, in advance.

1 REPLY 1

former_member188685
Active Contributor
0 Kudos
REPORT  ZTEST_CHECK                             .


parameters: r1 radiobutton group g1 default 'X' user-command ABC,
            r2 radiobutton group g1,
            p_check as checkbox.

at selection-screen output.

if r1 = 'X'.
p_check = 'X'.
endif.
if r2 = 'X'.
p_check = ' '.
endif.

Check this code,,

Regards

vijay