Application Development and Automation 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: 
Read only

selection screen

Former Member
0 Likes
327

In my selection screen I want two radio buttons to be side by side

please come up with some solution

thanks

kushagra

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
311

HI,

Check out this sample code to achieve the same ...


SELECTION-SCREEN BEGIN OF LINE.
SELECTION-SCREEN COMMENT 1(8) TEXT-001.
SELECTION-SCREEN POSITION 10.
PARAMETERS : R1 RADIOBUTTON GROUP G1.
SELECTION-SCREEN COMMENT 20(8) TEXT-002.
SELECTION-SCREEN POSITION 30.
PARAMETERS : R2 RADIOBUTTON GROUP G1.
SELECTION-SCREEN END OF LINE. 

2 REPLIES 2
Read only

Former Member
0 Likes
311

HI,

U HAVE OPTIONS ON SELECTION-SCREEN LIKE

selection screen begin of line

<code>

selection screen end of line

<REMOVED BY MODERATOR>

regards,

chandu

Edited by: Alvaro Tejada Galindo on May 23, 2008 6:47 PM

Read only

Former Member
0 Likes
312

HI,

Check out this sample code to achieve the same ...


SELECTION-SCREEN BEGIN OF LINE.
SELECTION-SCREEN COMMENT 1(8) TEXT-001.
SELECTION-SCREEN POSITION 10.
PARAMETERS : R1 RADIOBUTTON GROUP G1.
SELECTION-SCREEN COMMENT 20(8) TEXT-002.
SELECTION-SCREEN POSITION 30.
PARAMETERS : R2 RADIOBUTTON GROUP G1.
SELECTION-SCREEN END OF LINE.