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: 
Read only

Function module for uploading files to SAP. Csv

Former Member
0 Likes
511

Hello forum!

What if there is any sap in MF up and load an internal table in a file. Csv.Los fields are delimited by ',' o ','.

I have my doubts without the MF gui_upload can be done, but not pass parameters to that which I have in mind the definition.

Greetings and thanks!

1 ACCEPTED SOLUTION
Read only

SuhaSaha
Product and Topic Expert
Product and Topic Expert
0 Likes
455

Hello PMarques,

I think you have used some sort of tranlation to post this message )

4 REPLIES 4
Read only

SuhaSaha
Product and Topic Expert
Product and Topic Expert
0 Likes
456

Hello PMarques,

I think you have used some sort of tranlation to post this message )

Read only

Former Member
0 Likes
455

Yes, I use a translator, but because my English is very bad ...

You have not understood what I published in the post? What function module for uploading files to SAP. csv, whose fields are delimited by ',' o ';'.

Read only

Former Member
0 Likes
455

Hi,

You can use the GUI_UPLOAD to upload the data into internal table to string type.

Use the

g_seprator = ' ',' o ';''

LOOP AT ITBA INTO WA.
SPLIT WA AT g_seprator INTO TABLE i_final.
ENDLOOP.

Read only

Former Member
0 Likes
455

Thanks very much for you reply.