Hi Friends,
I am facing problem regarding EXCEL download with Chinese Language character. I am using following code to download internal table contains Chinese character on presentation server.
CALL METHOD cl_gui_frontend_services=>gui_download
EXPORTING
filename = lv_fullpath
write_field_separator = 'X'
filetype = 'ASC'
CODEPAGE = '8400'
fieldnames = lt_header
CHANGING
data_tab = <fs_gt_table>.
*<fs_gt_table>
But after download EXCEL shows # in place of Chinese characters. Please suggest solution on that.
Thanks