2007 Mar 20 11:26 AM
2007 Mar 20 11:28 AM
2007 Mar 20 11:28 AM
2007 Mar 20 11:29 AM
DATA: i_file like rlgrap-filename value '/usr/sap/tmp/file.txt'.
DATA: begin of it_datatab occurs 0,
row(500) type c,
end of it_datatab.
CALL FUNCTION 'GUI_UPLOAD'
EXPORTING
filename = i_file
filetype = 'ASC'
TABLES
data_tab = it_datatab "ITBL_IN_RECORD[]
EXCEPTIONS
file_open_error = 1
OTHERS = 2.
2007 Mar 20 11:30 AM
2007 Mar 20 11:33 AM
hi,
u can use gui_upload function module to upload.
check this link
http://diocio.wordpress.com/2007/02/12/sap-uploading-files-from-pcpresentation-server/
Regards,
Sruthi