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
581

Hi,

Can any one help me in getting the text for the radio buttons which placed side by side in the same line.

It is showing the radio buttons but not the text.

here is the following code which i used.

Selection-screen begin of line .

selection-screen position 2.

PARAMETERS: P_RAD1 RADIOBUTTON GROUP RG1 DEFAULT 'X' USER-COMMAND rad.

selection-screen position 25.

PARAMETERs: P_RAD2 RADIOBUTTON GROUP RG1 .

SELECTION-SCREEN end of line.

Thanks in Advance.

Sudhir

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
529

Hi,

Welcome to SDN!!!!!!

In SE38 ABAP Editor

go to menuitem GOTO --> Text Elements --> selection Texts

there u can write ur text for radio buttons and save and activate

Regards

SAB

3 REPLIES 3
Read only

Former Member
0 Likes
530

Hi,

Welcome to SDN!!!!!!

In SE38 ABAP Editor

go to menuitem GOTO --> Text Elements --> selection Texts

there u can write ur text for radio buttons and save and activate

Regards

SAB

Read only

Former Member
0 Likes
529

go for the menu bar in se38 or se80 (whihc evere be the editor)

There

goto -> Text Elements ->there u willl find the names where u can give some texts for all. which will come while executing.

<b><u>Please dont forget to reward points</u></b>

Sudheer

Read only

ferry_lianto
Active Contributor
0 Likes
529

Hi,

Please try this and ensure you create text elements for TEXT-001 and TEXT-002 (just double click on them).


SELECTION-SCREEN BEGIN OF LINE.
PARAMETERS: RAD1 RADIOBUTTON GROUP R1.
SELECTION-SCREEN COMMENT 5(10) TEXT-001.
PARAMETERS: RAD2 RADIOBUTTON GROUP R1.
SELECTION-SCREEN COMMENT 20(10) TEXT-002.
SELECTION-SCREEN END OF LINE.

Regards,

Ferry Lianto