<?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: rfc in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/rfc/m-p/1514388#M236926</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;plse can i have some more information how to upload with RFC.please....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;with regards&lt;/P&gt;&lt;P&gt;serma&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 09 Aug 2006 10:04:25 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-08-09T10:04:25Z</dc:date>
    <item>
      <title>rfc</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rfc/m-p/1514384#M236922</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt; plse guide me how to upload the sap table with legasy data(Inbound) using RFC.if possible plse give one example&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks with regards&lt;/P&gt;&lt;P&gt;serma&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Aug 2006 09:54:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rfc/m-p/1514384#M236922</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-09T09:54:44Z</dc:date>
    </item>
    <item>
      <title>Re: rfc</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rfc/m-p/1514385#M236923</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;Why aren't you looking at LSMW?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you need RFC for whatever reasons, you need to develop a custom remote function module and in the FM use BAPI / standard IDOC methods / BDC for legacy data upload.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rgds,&lt;/P&gt;&lt;P&gt;HR&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Aug 2006 09:57:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rfc/m-p/1514385#M236923</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-09T09:57:21Z</dc:date>
    </item>
    <item>
      <title>Re: rfc</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rfc/m-p/1514386#M236924</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;A BAPI is an RFC by default.&lt;/P&gt;&lt;P&gt;You have to choose the bapi according to your requirement.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Aug 2006 10:01:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rfc/m-p/1514386#M236924</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-09T10:01:01Z</dc:date>
    </item>
    <item>
      <title>Re: rfc</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rfc/m-p/1514387#M236925</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;first you need to create a function module in SE37.&lt;/P&gt;&lt;P&gt;then in attributes  tab, PROCESSING TYPE shold be REMOTE ENABLED MODULE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;define the parameters&lt;/P&gt;&lt;P&gt;in my case, i am gettting the file name(application server file name) &amp;amp; i have to send the RESULT to the caller.&lt;/P&gt;&lt;P&gt;based on that requirement, i created the function module,&lt;/P&gt;&lt;P&gt;FUNCTION Z0MM_SCM_FNC_EVCOR_DELIVERY.&lt;/P&gt;&lt;P&gt;*"----&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;STRONG&gt;"&lt;/STRONG&gt;"Global interface:&lt;/P&gt;&lt;P&gt;*"  IMPORTING&lt;/P&gt;&lt;P&gt;*"     VALUE(P_FILENAME) TYPE  RLGRAP-FILENAME DEFAULT&lt;/P&gt;&lt;P&gt;*"       'EVCOR_DELIVERY.txt'&lt;/P&gt;&lt;P&gt;*"  TABLES&lt;/P&gt;&lt;P&gt;*"      RETURN STRUCTURE  BAPIRET2&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BAPIRET2 &amp;lt;-is the return err/success table to the CALLER&lt;/P&gt;&lt;P&gt;P_FILENAME &amp;lt;-is the value coming from the caller,indicating the name of the file on application server.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;once i read those file contents, you can use either CALL TRANSACTION or BAPI to update the tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;revert,if you need any further help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;srikanth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Aug 2006 10:02:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rfc/m-p/1514387#M236925</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-09T10:02:31Z</dc:date>
    </item>
    <item>
      <title>Re: rfc</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rfc/m-p/1514388#M236926</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;plse can i have some more information how to upload with RFC.please....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;with regards&lt;/P&gt;&lt;P&gt;serma&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Aug 2006 10:04:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rfc/m-p/1514388#M236926</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-09T10:04:25Z</dc:date>
    </item>
    <item>
      <title>Re: rfc</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rfc/m-p/1514389#M236927</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Serma,&lt;/P&gt;&lt;P&gt;   first come up with what exactly you are looking for ? &lt;/P&gt;&lt;P&gt;then only we can help you to solve it.the scenario i explained is asper my client requirement,i developed like that.&lt;/P&gt;&lt;P&gt;or even you check up is there any existing BAPI's available for your requirement ?&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;srikanth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Aug 2006 10:18:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rfc/m-p/1514389#M236927</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-09T10:18:59Z</dc:date>
    </item>
    <item>
      <title>Re: rfc</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rfc/m-p/1514390#M236928</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi srikanth&lt;/P&gt;&lt;P&gt;many thanks for your reply.&lt;/P&gt;&lt;P&gt;this is my requirement:&lt;/P&gt;&lt;P&gt;i have a legacy data (this may be flat file or like a table) i want to upload this data to sap custom table(created by us)using RFC.customer want to get sap data with his non-sap system.&lt;/P&gt;&lt;P&gt;i hope i am clear..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;plse guide me &lt;/P&gt;&lt;P&gt;with regards&lt;/P&gt;&lt;P&gt;serma&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Aug 2006 10:41:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rfc/m-p/1514390#M236928</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-09T10:41:09Z</dc:date>
    </item>
  </channel>
</rss>

