Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

updating from presentation server to internal table

Former Member
0 Kudos
127

wat r the things to do this plss explain and how is it done?

5 REPLIES 5

Former Member
0 Kudos
100

Former Member
0 Kudos
100

Hi,

Use FM 'GUI_UPLOAD'

Regards

0 Kudos
100

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.

Former Member
0 Kudos
100

Hi,

Look at the below link

http://www.sap-img.com/ab004.htm

Regards

Sudheer

Former Member
0 Kudos
100

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