2008 Nov 12 7:21 PM
Hi,
I am downloading an internal table to excel through GUI_DOWNLOAD function module, internal table contains a date field and it's getting downloaded in "YYYYMMDD" format. Whereas if we use WS_DOWNLOAD it's getting downloaded with date separator (based on user settings) i.e. slash, dot and etc. Is GUI_DOWNLOAD has this shortcoming?
Regards,
Balaji Viswanath.
2008 Nov 12 8:10 PM
Try populating the paramter DAT_MODE with 'X'.It should work.
2008 Nov 12 8:10 PM
Try populating the paramter DAT_MODE with 'X'.It should work.
2021 Nov 02 2:57 PM
2008 Dec 09 11:19 AM
IF u want the same formate as in the database upload the file in 'DBF' format.
2020 May 15 7:41 AM
if you want the format same as the format of internal table populate the FM like below
CALL FUNCTION 'GUI_DOWNLOAD'
EXPORTING
filename = gv_path1
filetype = 'ASC'
append = abap_true
write_field_separator = abap_true
dat_mode = abap_true