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: 

Header field is not visible fully in container class field catalog output @ ABAP Report

former_member1050074
Participant
0 Kudos

Hi Friends

We are displaying report output using container class in abap.When we execute the report, field header is not visible completely, some fields shows dots at the end, Then if I expand its showing full text.

I checked the below points

1.Field length is not a problem.

2.I tried field catalog setting also.

Not sure why its not displaying dots at end of few fields, then if I expand its showing complete header info.Please advise.

Thanks

Gowrishankar

1 REPLY 1

prajeshdesai
Contributor
0 Kudos

Try below example,


DATA:LR_COLUMNS TYPE REF TO CL_SALV_COLUMNS.

LR_COLUMNS = GR_TABLE->GET_COLUMNS( ).

LR_COLUMNS->SET_OPTIMIZE( GC_TRUE ).

See the demo SALV_DEMO_TABLE_EVENTS in SE38.

Hope this helps..