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 display

Former Member
0 Likes
1,134

Hi Experts,

When we create a Radio button, generally the Radio button symbol shows before the radio button name.

like :

  • <Radio button name>

For this I need to write code like...  Parameters R1 radio button group radio.

But how to show the radio button after the radio button name ?

Like;

       <Radio button name>  .

Thanks & Regards,

Ajit

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
1,099

This message was moderated.

This message was moderated.

4 REPLIES 4
Read only

Former Member
0 Likes
1,099

The following example code is how I just recently accomplished your request:

SELECTION-SCREEN COMMENT 1(32) text-005 FOR FIELD rb1.

SELECTION-SCREEN COMMENT 34(3) text-009 FOR FIELD rb1.

PARAMETERS: rb1 RADIOBUTTON GROUP rad1.

SELECTION-SCREEN COMMENT 45(3) text-010 FOR FIELD rb2.

PARAMETERS: rb2 RADIOBUTTON GROUP rad1.

SELECTION-SCREEN END OF LINE.

Read only

Former Member
0 Likes
1,100

This message was moderated.

Read only

Former Member
0 Likes
1,099

Yes as suggested above, comment statement is the solution to your requirement.

Read only

Former Member
0 Likes
1,099

Thank you @Scott @ Aaron @ Susmita.

Regards,

AJit