<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic File Upload from FTP Server in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/file-upload-from-ftp-server/m-p/3511689#M844745</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear ABAPers,&lt;/P&gt;&lt;P&gt;       I want to Upload the data from Given FTP Server into SAP.could you please send me the Sample code.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ashok.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 11 Mar 2008 12:22:49 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-03-11T12:22:49Z</dc:date>
    <item>
      <title>File Upload from FTP Server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/file-upload-from-ftp-server/m-p/3511689#M844745</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear ABAPers,&lt;/P&gt;&lt;P&gt;       I want to Upload the data from Given FTP Server into SAP.could you please send me the Sample code.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ashok.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Mar 2008 12:22:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/file-upload-from-ftp-server/m-p/3511689#M844745</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-11T12:22:49Z</dc:date>
    </item>
    <item>
      <title>Re: File Upload from FTP Server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/file-upload-from-ftp-server/m-p/3511690#M844746</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ashok,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please try FTP FM's &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FTP_COMMAND	Execute a command on the FTP server&lt;/P&gt;&lt;P&gt;FTP_CONNECT	Open a connection (and log in) to an FTP server&lt;/P&gt;&lt;P&gt;FTP_DISCONNECT	Close the connection (and log off) the FTP server&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Venkat&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Mar 2008 12:26:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/file-upload-from-ftp-server/m-p/3511690#M844746</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-11T12:26:41Z</dc:date>
    </item>
    <item>
      <title>Re: File Upload from FTP Server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/file-upload-from-ftp-server/m-p/3511691#M844747</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use the following FM's ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'FTP_CONNECT'&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'FTP_COMMAND'&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'FTP_DISCONNECT'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'FTP_CONNECT'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;user = user&lt;/P&gt;&lt;P&gt;password = password&lt;/P&gt;&lt;P&gt;host = host&lt;/P&gt;&lt;P&gt;rfc_destination = rfc_destination&lt;/P&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;P&gt;handle = wa_handle&lt;/P&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;P&gt;not_connected = 1&lt;/P&gt;&lt;P&gt;OTHERS = 2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'FTP_COMMAND'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;handle = wa_handle&lt;/P&gt;&lt;P&gt;command = 'ASCII'&lt;/P&gt;&lt;P&gt;TABLES&lt;/P&gt;&lt;P&gt;data = result_itab&lt;/P&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;P&gt;tcpip_error = 1&lt;/P&gt;&lt;P&gt;command_error = 2&lt;/P&gt;&lt;P&gt;data_error = 3&lt;/P&gt;&lt;P&gt;OTHERS = 4.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'FTP_DISCONNECT'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;handle = wa_handle&lt;/P&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;P&gt;OTHERS = 1.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Mar 2008 12:27:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/file-upload-from-ftp-server/m-p/3511691#M844747</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-11T12:27:01Z</dc:date>
    </item>
  </channel>
</rss>

