GUI_DOWNLOAD - ooxxvv/MySAPnotes GitHub Wiki
PageOutline {{{#!comment -------------------- 以上的部份是固定的,不要變動 ----- --------------------------------------- 在建立連結時,請標明連結的頁面類型,例如:wiki:WikiStart,而不要只用 WikiStart ----- }}}
GUI_DOWNLOAD
- 將 Internal Table 中的資料 Download 到 Local PC 上。
EXPORTING (Import)
- FILETYPE => 如果有 「WK1」可以選擇的話,可以用這個格式來下載 Excel 檔案,不會清除前置零。
- CODEPAGE
- 若想強制下載內容的編碼,可在此設定。
- 可在繁體中文的環境中,下載簡體中文的內容。
- UTF-8 => 4110 。
- 如果是要用 Excel 直接開啟下載的 uncicode 檔案:
- CODEPAGE = 4103
- WRITE_BOM = 'X'
IMPORTING (Export)
TABLES
EXCEPTIONS
Attributes
Methods
Code
{{{#!abap CALL FUNCTION 'GUI_DOWNLOAD' EXPORTING filename = p_file_l TABLES data_tab = gt_file EXCEPTIONS file_write_error = 1 no_batch = 2 gui_refuse_filetransfer= 3 invalid_type = 4 OTHERS = 5. IF sy-subrc <> 0. MESSAGE i398(00) WITH 'Download error, sy-subrc=' sy-subrc. ELSE. MESSAGE s398(00) WITH 'Download succeed'. ENDIF. }}}