‎2008 Mar 08 11:42 AM
hi all
In the selection screen i want put text name instead of field names . how to do that?
‎2008 Mar 10 5:08 AM
Hi Kalyani,
In the menu bar follow this path GoTo -> Text Elements -> Selection Texts.
There you will find a list of selection screen fields that you have defined in your program. In the corresponding text field fill the text that you want to be displayed on your selection screen. Save and activate and return to the ABAP editor. The text will be displayed on the selection screen instead of the field names when you execute the program.
‎2008 Mar 08 11:58 AM
You can do that like below
SELECTION SCREEN COMMENT 1(50) text-001.
Regards,
Atish
‎2008 Mar 08 1:06 PM
hi,
here the field is P_SDATE.
and the text u want to assign is stored in TEXT-001.
SELECTION-SCREEN BEGIN OF LINE.
SELECTION-SCREEN COMMENT 10(10) text-001 FOR FIELD p_sdate.
PARAMETERS : p_sdate TYPE sy-datum DEFAULT sy-datum .
SELECTION-SCREEN END OF LINE.
award points if its helpful.............
‎2008 Mar 10 5:08 AM
Hi Kalyani,
In the menu bar follow this path GoTo -> Text Elements -> Selection Texts.
There you will find a list of selection screen fields that you have defined in your program. In the corresponding text field fill the text that you want to be displayed on your selection screen. Save and activate and return to the ABAP editor. The text will be displayed on the selection screen instead of the field names when you execute the program.
‎2008 Mar 10 5:18 AM
Hi,
In se38 enter name of program--change
-->GoTo -> Text Elements -> Selection Texts.
There your declared seletion parameters will be there change the names and save and activate
‎2008 Mar 10 5:38 AM
hi,
If ur text which u want to display for ur parameter is not too big then
u should 1st save and activate ur report ....
then
in the menu bar
Goto - > Text Elements - > Selection text
there u can see ur parameter name. against ur parameter name in the texts column write the text which u want to be displayed .
please mark the post answered if i got the solution
and also reward points if useful.
‎2008 Mar 10 5:45 AM
‎2008 Mar 10 5:48 AM
hi,
u should mark the post answered and also give points to the person who helped u......
thanks
‎2008 Mar 10 6:08 AM
hi all
i know i have to give.......
i was bit bz that time
now i ahve given .daa...
thanks for the information.