5 pts.
 Export from SAP to Spreadheet
How would one going about exporting a report (ZREP_EXPEDITE)in SAP to a certain spreadsheet that you built.

Software/Hardware used:
SAPMM
ASKED: Jan 27, 2012  6:44 PM GMT
UPDATED: February 28, 2012  10:58:22 AM GMT
380 pts.

Answer Wiki:
When you say “a certain spreadsheet that you built.”
What do you mean? Is it a strait vanilla spreadsheet or is it one that you have configured a certain way?
You can download a normal file using method cl_gui_frontend_services=>gui_download.

CALL METHOD cl_gui_frontend_services=>gui_download
EXPORTING
filename = file_name
filetype = 'DAT'
append = p_append " 'X'= append; ' '= overwrite
dat_mode = 'X'
CHANGING
data_tab = <tb>
EXCEPTIONS
file_write_error = 1
no_batch = 2
gui_refuse_filetransfer = 3
invalid_type = 4.
Last Wiki Answer Submitted:  Jan 30, 2012  6:05 PM (GMT)  by  SuperSapper   380 pts.
To see other answers submitted to the Answer Wiki View Answer History.
Discuss This Question:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _