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

Problem in FTP Connection

Former Member
0 Likes
402

Hi Friends..

I have an FTP connection, if I use winscp software I can able to see my system and FTP server in same screen .

But when I tried to access from ABAP program I am not able to access .

I have few doubts

1. Is there any settings required to access from ABAP ?

2.Is it possible to send file from Abap to FTP from abap internal tables? or we need to include application server in the process.

kindly help me on this

Thanks and Reagrds'

Gowrishankar

2 REPLIES 2
Read only

anuj_srivastava
Active Participant
0 Likes
374

Hi ,

For doing the FTP from abap you need to use the following function modules.

1) HTTP_SCRAMBLE

2) FTP_CONNECT

3) FTP_COMMAND

4) FTP_DISCONNECT

FTP basically moves a file from one location to another so i don't think you can FTP the data from the internal table to the FTP location. Morever if you don't want to include application server in it, in that case you can dump the file on the presentation server FTP the file and when FTP process is over you can delete the file from the presentation server.

Regards,

Anuj

Read only

Former Member
0 Likes
374

Issue resolved.