Skip to Content
0
Former Member
Mar 05, 2009 at 07:50 AM

Wrong column heading in ALV output

59 Views

Hii,

The column heading in ALV output is coming wrong. The heading enterd by me is not taken else it takes heading from data element in DDIC. I want to display heading entered by me and not of data element.

I am using field catalog as given :

wa_fclog-fieldname = 'LICENSE'.

wa_fclog-tabname = 'IT_FINAL'.

wa_fclog-seltext_s = 'License'.

wa_fclog-outputlen = 8.

wa_fclog-col_pos = 1.

wa_fclog-edit = 'X'.

wa_fclog-ref_fieldname = 'LICENSE'.

wa_fclog-ref_tabname = 'ZLICENSE'.

APPEND wa_fclog TO it_fclog.

CLEAR wa_fclog.

For this the ALV heading is taking the text from data element for license field rather than 'License'...

I want to use ref_fieldaname and ref_tabname for help on ALV output screen.. Tell me then how can i get my own heading..