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

Radio Button

Former Member
0 Likes
501

Hi,

I need to put the text of the Radio Button before the radio button .

Can someone tell me how to do that?

Thanks,

Kangana.

1 ACCEPTED SOLUTION
Read only

RichHeilman
Developer Advocate
Developer Advocate
0 Likes
483

On a selection screen?

Regards,

Rich Heilman

3 REPLIES 3
Read only

Sm1tje
Active Contributor
0 Likes
483

use selection screen begin of line

and

comment statements.

Read only

RichHeilman
Developer Advocate
Developer Advocate
0 Likes
484

On a selection screen?

Regards,

Rich Heilman

Read only

0 Likes
483

Something like this.

selection-screen BEGIN OF LINE.
selection-screen COMMENT 1(20) text_001.
parameters: p_rad1 RADIOBUTTON GROUP grp1 default 'X'.
selection-screen end of line.
selection-screen BEGIN OF LINE.
selection-screen COMMENT 1(20) text_002.
parameters: p_rad2 RADIOBUTTON GROUP grp1.
selection-screen end of line.

INITIALIZATION.
  text_001 = 'Rad Button 1'.
  text_002 = 'Rad Button 2'.

Regards,

Rich Heilman