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
823

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
Read only

Former Member
0 Likes
787

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
Read only

anversha_s
Active Contributor
0 Likes
787

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

Read only

0 Likes
787

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.

Read only

Former Member
0 Likes
788

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

Read only

anversha_s
Active Contributor
0 Likes
787

hi naga,

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

Regards

anver

Read only

0 Likes
787

Hi anver

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

Read only

0 Likes
787

hi,

chk this.

Rgds

Anver

Read only

Former Member
0 Likes
787

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