Skip to Content
0
Jan 11, 2012 at 05:32 AM

al field catalogue description problem

33 Views

Hi,

I n my alv report i have to add 3 date fields , already one date field is there, that three are non data base fields

i have declred three date fileds as sy-datum and reference field given for the three dates already existed date in field catalogue

but my problem am getting the description of reference field when i enlarged the cell,if i minimise the cell whatever description is coming that is only coming, how to restrict the description of three fields.

l_fcat-tabname = 'LT_FINAL'.

l_fcat-fieldname = 'BORK_DATE'.

IF sy-uname = 'MSL015'.

l_fcat-edit = 'X'.

ENDIF.

l_fcat-col_pos = 22.

l_fcat-seltext_l = 'Handover of Cheque Date'.

l_fcat-ref_tabname = 'ZSDT_BROKER_DT'.

l_fcat-ref_fieldname = 'BORK_DATE'.

APPEND l_fcat TO t_fcat.

CLEAR l_fcat.

*****************ADDED BY CG_ABAP4****************

l_fcat-tabname = 'LT_FINAL'.

l_fcat-fieldname = 'CHQRLSDTE'.

l_fcat-col_pos = 23.

l_fcat-seltext_l = 'Cheque Release Date'.

l_fcat-outputlen = '10'.

l_fcat-ref_tabname = 'ZSDT_BROKER_DT'.

l_fcat-ref_fieldname = 'BORK_DATE'.

IF sy-uname = 'MSL015'.

l_fcat-edit = 'X'.

ENDIF.

APPEND l_fcat TO t_fcat.

CLEAR l_fcat.

l_fcat-tabname = 'LT_FINAL'.

l_fcat-fieldname = 'GVNACC'.

l_fcat-col_pos = 24.

l_fcat-seltext_l = 'Given To Accounts'.

l_fcat-ref_tabname = 'ZSDT_BROKER_DT'.

l_fcat-ref_fieldname = 'BORK_DATE'.

l_fcat-outputlen = '10'.

IF sy-uname = 'MSL015'.

l_fcat-edit = 'X'.

ENDIF.

APPEND l_fcat TO t_fcat.

CLEAR l_fcat.