HI,
I faced a problem with ALV header row.
some of the header rows does not shows all text ?!
I filled field catalog as
ADD 1 TO col_count.
wa_fieldcat-tabname = 'IT_OUTPUT '.
wa_fieldcat-col_pos = col_count.
wa_fieldcat-fieldname = 'SUMMER'.
wa_fieldcat-outputlen = '22'.
wa_fieldcat-scrtext_l = text-024.
wa_fieldcat-scrtext_m = text-024.
wa_fieldcat-scrtext_s = text-024.
wa_fieldcat-coltext = text-024.
APPEND wa_fieldcat TO gt_fieldcat.
CLEAR wa_fieldcat.
in text-024 I write (Summer Stipend) but in ALV its shows (Summer S) only ?!
even if i translate field symbol to another language it does not shows all text.
Thanks,