<?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: Function Module to transfer text file from local machine to remote server in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-transfer-text-file-from-local-machine-to-remote-server/m-p/4780069#M1119820</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Amit&lt;/P&gt;&lt;P&gt;Check the link nd find out your required FM from below threads,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="725022"&gt;&lt;/A&gt; &lt;/P&gt;&lt;P&gt;&lt;A href="http://abap4.tripod.com/SAP_Functions.html" target="test_blank"&gt;http://abap4.tripod.com/SAP_Functions.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sapdev.co.uk/fmodules/fmssap.htm" target="test_blank"&gt;http://www.sapdev.co.uk/fmodules/fmssap.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Syfulla&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 19 Nov 2008 11:45:45 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-11-19T11:45:45Z</dc:date>
    <item>
      <title>Function Module to transfer text file from local machine to remote server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-transfer-text-file-from-local-machine-to-remote-server/m-p/4780067#M1119818</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Everybody,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;is there any function module available to transfer a text file from local machine to remote server.&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;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Amit Ranjan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Nov 2008 11:36:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-transfer-text-file-from-local-machine-to-remote-server/m-p/4780067#M1119818</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-19T11:36:28Z</dc:date>
    </item>
    <item>
      <title>Re: Function Module to transfer text file from local machine to remote server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-transfer-text-file-from-local-machine-to-remote-server/m-p/4780068#M1119819</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;U can use the RFC FM 'RFC_WRITE_FILE' to transfer the file contents to remote server.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
      CALL FUNCTION 'RFC_WRITE_FILE'
        DESTINATION v_rfcdest --&amp;gt; RFC Destination
        EXPORTING
          file                       = wa_filename
          format                  = 'ASC'                "Can be ASC/BIN
*          size                     = v_size
          language              = sy-langu
        IMPORTING
          size                  = v_size
        TABLES
          filedata              = it_file                   "Internal table whose contents need to be transferred
        EXCEPTIONS
          system_failure        = 1  MESSAGE wa_message
          communication_failure = 2  MESSAGE wa_message
          illegalname           = 3
          OTHERS                = 6.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this is useful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;Suhas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Nov 2008 11:41:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-transfer-text-file-from-local-machine-to-remote-server/m-p/4780068#M1119819</guid>
      <dc:creator>SuhaSaha</dc:creator>
      <dc:date>2008-11-19T11:41:00Z</dc:date>
    </item>
    <item>
      <title>Re: Function Module to transfer text file from local machine to remote server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-transfer-text-file-from-local-machine-to-remote-server/m-p/4780069#M1119820</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Amit&lt;/P&gt;&lt;P&gt;Check the link nd find out your required FM from below threads,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="725022"&gt;&lt;/A&gt; &lt;/P&gt;&lt;P&gt;&lt;A href="http://abap4.tripod.com/SAP_Functions.html" target="test_blank"&gt;http://abap4.tripod.com/SAP_Functions.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sapdev.co.uk/fmodules/fmssap.htm" target="test_blank"&gt;http://www.sapdev.co.uk/fmodules/fmssap.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Syfulla&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Nov 2008 11:45:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-transfer-text-file-from-local-machine-to-remote-server/m-p/4780069#M1119820</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-19T11:45:45Z</dc:date>
    </item>
    <item>
      <title>Re: Function Module to transfer text file from local machine to remote server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-transfer-text-file-from-local-machine-to-remote-server/m-p/4780070#M1119821</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Suhas,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am working on SAP CRM 4.0 system. FM RFC_WRITE_FILE is not available in my system. can u please tell me the name of some other FM to achieve the same?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Amit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Nov 2008 12:01:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-transfer-text-file-from-local-machine-to-remote-server/m-p/4780070#M1119821</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-19T12:01:46Z</dc:date>
    </item>
    <item>
      <title>Re: Function Module to transfer text file from local machine to remote server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-transfer-text-file-from-local-machine-to-remote-server/m-p/4780071#M1119822</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check this blog &lt;A class="jive_macro jive_macro_blogpost" href="https://community.sap.com/" __jive_macro_name="blogpost" modifiedtitle="true" __default_attr="43285"&gt;&lt;/A&gt; , implement the same you are done.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Nov 2008 12:12:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-transfer-text-file-from-local-machine-to-remote-server/m-p/4780071#M1119822</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-19T12:12:11Z</dc:date>
    </item>
  </channel>
</rss>

