‎2007 May 18 3:45 PM
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
‎2007 May 18 3:47 PM
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
‎2007 May 18 3:47 PM
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
‎2007 May 18 3:49 PM
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
‎2007 May 18 3:51 PM
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