‎2009 Jun 09 4:05 PM
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!
‎2009 Jun 09 4:48 PM
Hello PMarques,
I think you have used some sort of tranlation to post this message )
‎2009 Jun 09 4:48 PM
Hello PMarques,
I think you have used some sort of tranlation to post this message )
‎2009 Jun 09 5:00 PM
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 ';'.
‎2009 Jun 09 5:07 PM
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.
‎2009 Jun 09 5:17 PM