Application Development 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: 

FTP format issue

Former Member
0 Kudos

Hi,

We need to send a text file by FTP from a SAP system to a IBM Host. We are able to send the file but at the host data is illegible. We know that the sender system uses ASCII code (7-bit) and the receiver one uses EBCDIC code (Extended Binary Coded Decimal Interchange Code, 8-bit).

If we send the file by window's ftp client it is correctly transfered.

We need to translate ASCII text to EBCDIC text, or otherwise to configure the SAP connection so as the conversion its made by it self.

Thanks in advance.

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Use function module FTP_COMMAND to send command ASCII before the transfer.

2 REPLIES 2

Former Member
0 Kudos

Use function module FTP_COMMAND to send command ASCII before the transfer.

Former Member
0 Kudos

It works! thank you very much Juhani Jaakkola