‎2006 Jun 22 1:05 PM
Hello All,
I would require help on how to read a data file stored in FTP server from my ABAP program. The type of file is .csv, I need this file to actually upload the data coming into SAP. Please suggest how do I solve this.
Thanks,
Sunil Kumar
‎2006 Jun 22 2:45 PM
Hi Sunil,
Go thru the following link...
http://www.sap-img.com/ab003.htm
If you find it useful, please reward me for the same.
Good luck
Karthik Potharaju
‎2006 Jun 22 2:45 PM
Hi Sunil,
Go thru the following link...
http://www.sap-img.com/ab003.htm
If you find it useful, please reward me for the same.
Good luck
Karthik Potharaju
‎2006 Jun 22 3:11 PM
HI
GOOD
TRY THESE FUNCTION MODULES
FTP_COMMAND Execute a command on the FTP server
FTP_CONNECT Open a connection (and log in) to an FTP server
FTP_DISCONNECT Close the connection (and log off) the FTP server
THANKS
MRUTYUN
‎2006 Jun 22 3:17 PM
Hi Sunil,
Please check this standard program.
RSFTP002
RSFTP003
RSFTP004
RSEPSFTP (ECC 5.0)
Hope this will help.
Regards,
Ferry Lianto
‎2006 Jun 22 3:19 PM
hi,
You will find the link useful...
http://www.sap-img.com/ab003.htm
Also, check out the standard program ... RSEPSFTP
The flow should be..
Open a FTP connection by FM- FTP_CONNECT
Execute a command on the FTP server by FM - FTP_COMMAND
and finally Close the connection by FM - FTP_DISCONNECT
Regards,
Richa
‎2006 Jun 22 3:28 PM
Hi,
FTP_CONNECT
use the FM and connect the FTP server.
FTP_COMMAND
using the FM you can execute the commands to transfer the file mput and mget will help you to transfer.
FTP_DISCONNECT
use the FM and close the FTP server connecttion .
Regards
vijay
‎2006 Jun 22 4:03 PM