Application Development 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: 

ALV display hints...

Former Member
0 Kudos

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

Former Member
0 Kudos

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

Former Member
0 Kudos

Hi,

Check program SALV_TEST_TOOLTIPS

Class: CL_SALV_TOOLTIPS

Former Member
0 Kudos

Hi Avinas ,

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

Regards

Arun

Former Member
0 Kudos

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.

0 Kudos

thanks a lot ..

wa_fieldcat-seltext_l = 'CHILD Parent Value'.

wa_fieldcat-seltext_m = 'CHILD Parent Value'.

wa_fieldcat-seltext_s = 'CPV'.

works fine!!