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: 

How to show a Parameter if certain radiobutton is selected

Former Member
0 Kudos

Hi,

i had a parameter at the selection screen to show if the radiobutton is selected.

How should i program it?

Is it at the selection screen on the radio button?

3 REPLIES 3

0 Kudos

Hi,

check it once,

parameters: pr1 radiobutton roup gr1,

pr2 radiobutton group gr1.

if pr1 = 'X'.

write:/ 'first radiobutton is selected'.

endif.

if pr2 = 'x'.

write:/ 'second radiobutton is selected'.

endif.

0 Kudos

Hi,

Tks for your help though that is not what i am looking for.

I had found the answer somewhere.

Former Member
0 Kudos

Already found the answer myself.