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: 

How to send big size xml file to ftp server

thisispankaj
Explorer
0 Kudos
508

Hey folks,

Hope you all are learning and growing in your life.

I have one issue in sending xml file to ftp server.

Whenever I send XML file to FTP server, the data is getting truncated.

Maybe the size of xml file is big or I have to split the xml data.

Please suggest any way in which I can send all the XML data to FTP Server without losing any record.

3 REPLIES 3

FredericGirod
Active Contributor
400

Without the code, it will be a crystal ball stuff

Jeansy
Active Contributor
0 Kudos
400

How do you connect to the FTP-server and transfer the data in detail?

There are several ways to achieve this. Would be great if you give us some more information

Tomas_Buryanek
Active Contributor
0 Kudos
400

Common ABAP mistake when working with files (in binary format) is not to specify exact file size. This often truncate or enlarges the file and make it unreadable. Are you taking care of binary file size in your code?

-- Tomas --