<?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 RFC function module for fetching data from external system in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-function-module-for-fetching-data-from-external-system/m-p/1406813#M196287</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;Can anybody please suggest how to make use of RFC function module .&lt;/P&gt;&lt;P&gt;I have a unix  server and the flat file is residing there.&lt;/P&gt;&lt;P&gt;I have to create a structure and use the structure in RFC function module and upload the flat file to SAP r/3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I havenot worked with rfc'S  can anybody give the idea of using RFC is such senarios.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 27 Jun 2006 03:21:23 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-06-27T03:21:23Z</dc:date>
    <item>
      <title>RFC function module for fetching data from external system</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-function-module-for-fetching-data-from-external-system/m-p/1406813#M196287</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;Can anybody please suggest how to make use of RFC function module .&lt;/P&gt;&lt;P&gt;I have a unix  server and the flat file is residing there.&lt;/P&gt;&lt;P&gt;I have to create a structure and use the structure in RFC function module and upload the flat file to SAP r/3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I havenot worked with rfc'S  can anybody give the idea of using RFC is such senarios.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Jun 2006 03:21:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-function-module-for-fetching-data-from-external-system/m-p/1406813#M196287</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-27T03:21:23Z</dc:date>
    </item>
    <item>
      <title>Re: RFC function module for fetching data from external system</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-function-module-for-fetching-data-from-external-system/m-p/1406814#M196288</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 am not sure of the usage of the RFC's in this context.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want to read a file from the application server, use the OPEN DATASET, READ and CLOSE DATASET commands.&lt;/P&gt;&lt;P&gt;You can find more help on this here&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/79/c554dcb3dc11d5993800508b6b8b11/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/79/c554dcb3dc11d5993800508b6b8b11/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can upload the entire file into a internal table which a a field of string data type and after that loop at the table and process the data according to your logic (Either length delimited, ',' delimited.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ig you want to do this remotely, you can put all this logic in the function module and make it remote enabled.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;P&gt;Note : Please mark the helpful answers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Jun 2006 03:28:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-function-module-for-fetching-data-from-external-system/m-p/1406814#M196288</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-27T03:28:39Z</dc:date>
    </item>
    <item>
      <title>Re: RFC function module for fetching data from external system</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-function-module-for-fetching-data-from-external-system/m-p/1406815#M196289</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, &lt;/P&gt;&lt;P&gt;I think you should move the file either in the presentation or the application server.&lt;/P&gt;&lt;P&gt;I dont understand how will RFC help this case.&lt;/P&gt;&lt;P&gt;RFC are remotely enabled function so they can be called from R/3 or non R/3 systems.&lt;/P&gt;&lt;P&gt;I guess you have R/3 on one system and the unix server is just containing the files.(Please correcty me if i am mistaken).&lt;/P&gt;&lt;P&gt;There would be no remote function on this file server which you can call from your system.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Move the file to presentation server and use GUI_UPLOAD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Tanveer.&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Please mark helpful answers&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Jun 2006 03:36:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-function-module-for-fetching-data-from-external-system/m-p/1406815#M196289</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-27T03:36:05Z</dc:date>
    </item>
    <item>
      <title>Re: RFC function module for fetching data from external system</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-function-module-for-fetching-data-from-external-system/m-p/1406816#M196290</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;IF i have remote function in external system than how can I call&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Jun 2006 03:41:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-function-module-for-fetching-data-from-external-system/m-p/1406816#M196290</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-27T03:41:26Z</dc:date>
    </item>
    <item>
      <title>Re: RFC function module for fetching data from external system</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-function-module-for-fetching-data-from-external-system/m-p/1406817#M196291</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mave,&lt;/P&gt;&lt;P&gt;If you have remote function in this external system, then the question is &lt;/P&gt;&lt;P&gt;1.Wheteher the remote system is R/3?&lt;/P&gt;&lt;P&gt;In this case your job is easy. You write the function module to upload the data using OPEN DATASET in the remote function.&lt;/P&gt;&lt;P&gt;Get all data in an internal table which is a table parameter in the FM.&lt;/P&gt;&lt;P&gt;Make sure that the FM attribute is set to Remotely enabeled.&lt;/P&gt;&lt;P&gt;Call this function from the remote system.&lt;/P&gt;&lt;P&gt;You would get the contents in the internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. the remote system is not R/3?&lt;/P&gt;&lt;P&gt;You would have to use external Java connector to get the data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Tanveer.&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Please mark helpful answers&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Jun 2006 03:51:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-function-module-for-fetching-data-from-external-system/m-p/1406817#M196291</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-27T03:51:05Z</dc:date>
    </item>
    <item>
      <title>Re: RFC function module for fetching data from external system</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-function-module-for-fetching-data-from-external-system/m-p/1406818#M196292</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Tanvir can you give me your contact no.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Jun 2006 04:08:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-function-module-for-fetching-data-from-external-system/m-p/1406818#M196292</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-27T04:08:58Z</dc:date>
    </item>
    <item>
      <title>Re: RFC function module for fetching data from external system</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-function-module-for-fetching-data-from-external-system/m-p/1406819#M196293</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I will call you..&lt;/P&gt;&lt;P&gt;I am not carrying my cell today..&lt;/P&gt;&lt;P&gt;Let me know your contact number.&lt;/P&gt;&lt;P&gt;You can mail it to me at &lt;/P&gt;&lt;P&gt;tanveer.shaikh@wipro.com&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Tanveer.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Jun 2006 04:13:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-function-module-for-fetching-data-from-external-system/m-p/1406819#M196293</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-27T04:13:51Z</dc:date>
    </item>
  </channel>
</rss>

