cancel
Showing results for 
Search instead for 
Did you mean: 

11 radiobuttons giving different output

Former Member
0 Kudos
43

Hi,

I'm using 11 radiobuttons on my selection screen.

each button gives me output in different format.

how to do that?

again i want to give one listbox/textbox attach to some perticular radiobuttons.

can i do that also?

Thanks,

Deepika

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

Hi,

Declare 11 radiobuttons as a single group.

And Use the IF and ELSE condition.

IF R1 = X.

your output format.

elseif R2 = X.

your output format.

else.

your output format.

endif.

Regards,

Venkat.

Former Member
0 Kudos

data : r1,

r2,

up to r11.

parameters: r1 radio button group 'rad',

r2 same,

up to r11.

write the code as:

if r1 = 'x'.

do something.

endif.

if r2 ='x'.

do something.

endif.

like that you can specify various outputs for each radio button.

go to text elements and give what text you want for r1,r2....r11.

Reward if useful.

Dara.