Hi,
In my ALV output, I need to change the date format.
Presently in final table i am getting date in following format. 21.09.2009 but in output i need it in 21/09/2009.
Please suggest how to do it programitically. Date field
ls_fieldtab-tabname = 'IT_FINAL'.
ls_fieldtab-fieldname = 'SPTAG'.
ls_fieldtab-seltext_s = ls_fieldtab-seltext_m =
ls_fieldtab-seltext_l = 'Current Date'.
APPEND ls_fieldtab TO fieldtab.
CLEAR ls_fieldtab.
Distribution Channel :
2) In the output , the Distribution channel l should always appers as AS01. Hardcoded . Pls suggest how to do programitically.
ls_fieldtab-tabname = 'IT_FINAL'.
ls_fieldtab-fieldname = 'VTWEG'.
ls_fieldtab-seltext_s = ls_fieldtab-seltext_m =
ls_fieldtab-seltext_l = 'DIST. CHANNEL'.
APPEND ls_fieldtab TO fieldtab.
CLEAR ls_fieldtab.