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

texts

Former Member
0 Likes
1,102

hi all

In the selection screen i want put text name instead of field names . how to do that?

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
1,085

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.

8 REPLIES 8
Read only

Former Member
0 Likes
1,085

You can do that like below

SELECTION SCREEN COMMENT 1(50) text-001.

Regards,

Atish

Read only

Former Member
0 Likes
1,085

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.............

Read only

Former Member
0 Likes
1,086

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.

Read only

Former Member
0 Likes
1,085

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

Read only

Former Member
0 Likes
1,085

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.

Read only

Former Member
0 Likes
1,085

thank u........

Read only

0 Likes
1,085

hi,

u should mark the post answered and also give points to the person who helped u......

thanks

Read only

Former Member
0 Likes
1,085

hi all

i know i have to give.......

i was bit bz that time

now i ahve given .daa...

thanks for the information.