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: 

selection screen radio button

Former Member
0 Kudos

Hi,

How can I keep 2 radio buttons in one line.

when i created 2 radio buttons they come one below the other, I want them side by side.

Thanks.

1 ACCEPTED SOLUTION

Former Member
0 Kudos

selection-screen begin of line.

declare your radio buttons here.

selection-screen end of line.

2 REPLIES 2

Former Member
0 Kudos

selection-screen begin of line.

declare your radio buttons here.

selection-screen end of line.

Former Member
0 Kudos

Hi,

Try something like this:


SELECTION-SCREEN begin of line.
  SELECTION-SCREEN COMMENT 1(15) text-rg1.
  parameters: p_rad1 RADIOBUTTON GROUP rg1.
  SELECTION-SCREEN COMMENT 25(15) text-rg2.
  PARAMETERS: p_rad2 RADIOBUTTON GROUP rg1.
SELECTION-SCREEN end of LINE.

Regards,

Jamie