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: 

Change RadioButtons position in Selection Screen.

Former Member
0 Kudos

HI is there any way to change the default position of a radiboutton in a selection screen.

I mean, show the text option of the radiobutton in the right side, not the left side.

Thanks a lot.

1 ACCEPTED SOLUTION

JozsefSzikszai
Active Contributor
0 Kudos

hi Jose,

you have to do something like:

SELECTION-SCREEN BEGIN OF LINE.

SELECTION-SCREEN COMMENT x(y)... "x for starting position, y for length

SELECTION-SCREEN POSITION 20. "next line will start at this position

PARAMETERS : p_rb RADIOBUTTON GROUP rb1

SELECTION-SCREEN END OF LINE.

hope this helps

ec

1 REPLY 1

JozsefSzikszai
Active Contributor
0 Kudos

hi Jose,

you have to do something like:

SELECTION-SCREEN BEGIN OF LINE.

SELECTION-SCREEN COMMENT x(y)... "x for starting position, y for length

SELECTION-SCREEN POSITION 20. "next line will start at this position

PARAMETERS : p_rb RADIOBUTTON GROUP rb1

SELECTION-SCREEN END OF LINE.

hope this helps

ec