<?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 Re: 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/3281197#M784641</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;go thro this link&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sap-basis-abap.com/sapac008.htm" target="test_blank"&gt;http://www.sap-basis-abap.com/sapac008.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope it helps..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Vijayalakshmi B&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 02 Jan 2008 09:53:58 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-01-02T09:53:58Z</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/3281193#M784637</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have requirement to upload file from FTP server &lt;/P&gt;&lt;P&gt;Using the function module FTP_CONEECT but it is getting failed &lt;/P&gt;&lt;P&gt;Is there any other way to do it Or any parameters I am missing &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sachin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Jan 2008 08:25:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/file-upload-from-ftp-server/m-p/3281193#M784637</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-02T08:25:51Z</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/3281194#M784638</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sachin,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; The FM FTP_CONNECT is only connect to a ftp server by specifying RFC destination, user name and password. It will not help u upload file from ftp location...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Muktar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Jan 2008 09:30:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/file-upload-from-ftp-server/m-p/3281194#M784638</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-02T09:30:25Z</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/3281195#M784639</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use the FM's in this order &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. CALL FUNCTION 'FTP_CONNECT'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. CALL FUNCTION 'FTP_COMMAND'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. CALL FUNCTION 'FTP_DISCONNECT'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Usage:&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;P&gt;&lt;/P&gt;&lt;P&gt;-Muktar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Jan 2008 09:37:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/file-upload-from-ftp-server/m-p/3281195#M784639</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-02T09:37:06Z</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/3281196#M784640</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for reply &lt;/P&gt;&lt;P&gt;But I am getting error "Attempt to set up connection to ftp://.........failed"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;parameters I am passing to 'FTP_CONNECT' are &lt;/P&gt;&lt;P&gt;USER                            ABC.&lt;/P&gt;&lt;P&gt;PASSWORD                    *****&lt;/P&gt;&lt;P&gt;HOST                            ftp://..................................&lt;/P&gt;&lt;P&gt;RFC_DESTINATION                 SAPFTPA&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But if i try to log on by IE i can log into the server with same user ID and password &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there any issue with RFC_DESTINATION?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Jan 2008 09:51:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/file-upload-from-ftp-server/m-p/3281196#M784640</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-02T09:51:14Z</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/3281197#M784641</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;go thro this link&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sap-basis-abap.com/sapac008.htm" target="test_blank"&gt;http://www.sap-basis-abap.com/sapac008.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope it helps..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Vijayalakshmi B&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Jan 2008 09:53:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/file-upload-from-ftp-server/m-p/3281197#M784641</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-02T09:53:58Z</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/3281198#M784642</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sachin...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Go to Tcode SM59 and check the rfc destination...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Muktar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Jan 2008 09:57:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/file-upload-from-ftp-server/m-p/3281198#M784642</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-02T09:57: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/3281199#M784643</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Do we need to create new RFC destination ?  if yes how should we create new one &lt;/P&gt;&lt;P&gt;I am using the same that is available in SAP&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Jan 2008 10:02:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/file-upload-from-ftp-server/m-p/3281199#M784643</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-02T10:02:02Z</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/3281200#M784644</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sachin,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Go to SM59-&amp;gt; select the rfc destination you are using and test connection... you will know if the rfc is working fine..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Muktar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Jan 2008 10:10:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/file-upload-from-ftp-server/m-p/3281200#M784644</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-02T10:10:12Z</dc:date>
    </item>
  </channel>
</rss>

