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

ALV display hints...

Former Member
0 Likes
922

hello guys...

can any one tell me how to use alv display hints...

like while displaying the headings in the output, if the heading is too long they need in short form ie if its "CHILD Parent Value" then in output it must show "CPV", BUT when the bring the cursor on this CPV heading it must display full form ie CHILD Parent Value.

can this be implemented?

kindly help.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
802

Hi Avinas,

In the FIeldcatalog just add :

wa_fieldcat-seltext_l = 'CHILD Parent Value'.
wa_fieldcat-seltext_m = 'CHILD Parent Value'.
wa_fieldcat-seltext_s = 'CPV'.

Regards,

Jovito.

Hi Avinas,

In the FIeldcatalog just add :

wa_fieldcat-seltext_l = 'CHILD Parent Value'.
wa_fieldcat-seltext_m = 'CHILD Parent Value'.
wa_fieldcat-seltext_s = 'CPV'.

Regards,

Jovito.

4 REPLIES 4
Read only

Former Member
0 Likes
802

Hi,

Check program SALV_TEST_TOOLTIPS

Class: CL_SALV_TOOLTIPS

Read only

Former Member
0 Likes
802

Hi Avinas ,

In the field catalog there is a field called TOOLTIP , You can use this .

Regards

Arun

Read only

Former Member
0 Likes
803

Hi Avinas,

In the FIeldcatalog just add :

wa_fieldcat-seltext_l = 'CHILD Parent Value'.
wa_fieldcat-seltext_m = 'CHILD Parent Value'.
wa_fieldcat-seltext_s = 'CPV'.

Regards,

Jovito.

Read only

0 Likes
802

thanks a lot ..

wa_fieldcat-seltext_l = 'CHILD Parent Value'.

wa_fieldcat-seltext_m = 'CHILD Parent Value'.

wa_fieldcat-seltext_s = 'CPV'.

works fine!!