发布网友 发布时间:2022-04-24 17:58
共2个回答
热心网友 时间:2023-10-29 08:28
CALL FUNCTION 'GUI_DOWNLOAD'exporting bin_filesize = 500 filetype = 'BIN' filename = 'C:\DOWNLOAD.BIN'tables data_tab = itab.loads 500 from the internal table itab into the file 'C:\DOWNLOAD.BIN'on the frontend PC. The transferred data is not converted.CALL FUNCTION 'GUI_DOWNLOAD'exporting filetype = 'ASC' filename = 'C:\DOWNLOAD.TXT'tables data_tab = itab.loads the contents of the internal table itab line by line to the file'C:\DOWNLOAD.BIN' on the frontend PC. The transferred data is converted.Each line in itab corresponds to a line in the generated file.看看例子希望能给你带来启发
热心网友 时间:2023-10-29 08:29
举个例子来说,使用gui_download函数时,1.不使用dat模式日期:20060315金额:123.45-2.使用dat模式(转换成标准格式输出)日期:2006/03/15金额:-123.45