2009 Feb 24 10:48 AM
Hi,
Is there a claas to upload excel file from local harddrive?
tnx.
Adibo.
2009 Feb 24 10:50 AM
2009 Feb 24 10:50 AM
2009 Feb 24 10:55 AM
HI,
cl_gui_frontend_services => gui_upload
DATA:
itab TYPE TABLE OF sflight.
CALL METHOD cl_gui_frontend_services=>gui_upload
EXPORTING
filename = 'C:\temp\text.xls'
filetype = 'ASC'
has_field_separator = '|'
CHANGING
data_tab = itab
IF sy-subrc = 0.
WRITE:/ 'success'.
ENDIF.
thanks
sarves