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: 

Radio button display

Former Member
0 Kudos

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

Former Member
0 Kudos

This message was moderated.

4 REPLIES 4

Former Member
0 Kudos

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.

Former Member
0 Kudos

This message was moderated.

former_member184569
Active Contributor
0 Kudos

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

Former Member
0 Kudos

Thank you @Scott @ Aaron @ Susmita.

Regards,

AJit