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,

I need to know how to declare radio button in order to get radio symbol first and its text next to it instead of radio text first and its symbol afterwords which is normal radio declaration.

Looking for your reply.

Many Thanks,

Ranga

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi ,

Here is a sample code which does the similar functions

selection-screen begin of line.
parameter: rb1 radiobutton group g1.
selection-screen comment 13(15) text-001 for field rb1.

selection-screen end of line.

selection-screen begin of line.
parameter: rb2 radiobutton group g1.
selection-screen comment 13(15) text-002 for field rb2.

selection-screen end of line.

Regards

Arun

7 REPLIES 7

anversha_s
Active Contributor
0 Kudos

hi,

*************for radio button*****************
REPORT YSHATEST .

SELECTION-SCREEN BEGIN OF BLOCK B1. 

SELECTION-SCREEN BEGIN OF LINE.
 PARAMETERS : R1 RADIOBUTTON GROUP RAD. 
SELECTION-SCREEN COMMENT 15(15) TEXT-001. 
SELECTION-SCREEN END OF LINE. SELECTION-SCREEN BEGIN OF LINE. 

PARAMETERS : R2 RADIOBUTTON GROUP RAD. 
SELECTION-SCREEN COMMENT 15(15) TEXT-001. 
SELECTION-SCREEN END OF LINE. 

SELECTION-SCREEN END OF BLOCK B1.

Regards

Anver

0 Kudos

refer demo code -

selection-screen begin of line .

parameters: p_data radiobutton group ABC.

selection-screen comment 20(10) text-001.

selection-screen end of line.

parameters: p_data1 radiobutton group ABC.

Former Member
0 Kudos

Hi ,

Here is a sample code which does the similar functions

selection-screen begin of line.
parameter: rb1 radiobutton group g1.
selection-screen comment 13(15) text-001 for field rb1.

selection-screen end of line.

selection-screen begin of line.
parameter: rb2 radiobutton group g1.
selection-screen comment 13(15) text-002 for field rb2.

selection-screen end of line.

Regards

Arun

anversha_s
Active Contributor
0 Kudos

hi naga,

what is the difference between my post and aruns one. i didn find anything wrong in my post.

Regards

anver

0 Kudos

Hi anver

Yes your ans were same. I am new to the group and dont know the method to reward points.

0 Kudos

hi,

chk this.

Rgds

Anver

Former Member
0 Kudos

Dear Ranga ,

Please check the following code ,

selection-screen begin of line .

parameters: p_r radiobutton group A1.

selection-screen comment 20(10) text-001.

selection-screen end of line.

parameters: p_r1 radiobutton group A1.

Hope it will help you ,

Have a nice day

Regards

Siddharth