<?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: rfcs in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/rfcs/m-p/3606231#M868675</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;You refer to the following link u will get some knowledge about RFC..How to create..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCFESDE2/BCFESDE2.pdf" target="test_blank"&gt;http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCFESDE2/BCFESDE2.pdf&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With Regards&lt;/P&gt;&lt;P&gt;madhavi.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 23 Mar 2008 13:48:53 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-03-23T13:48:53Z</dc:date>
    <item>
      <title>rfcs</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rfcs/m-p/3606228#M868672</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi can u give me some ideaa on RFC??&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 23 Mar 2008 13:44:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rfcs/m-p/3606228#M868672</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-23T13:44:29Z</dc:date>
    </item>
    <item>
      <title>Re: rfcs</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rfcs/m-p/3606229#M868673</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;Check this link&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_47x200/helpdata/en/22/042a3e488911d189490000e829fbbd/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_47x200/helpdata/en/22/042a3e488911d189490000e829fbbd/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 23 Mar 2008 13:47:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rfcs/m-p/3606229#M868673</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-23T13:47:34Z</dc:date>
    </item>
    <item>
      <title>Re: rfcs</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rfcs/m-p/3606230#M868674</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;RFC:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Purpose&lt;/P&gt;&lt;P&gt;Communication between applications of different systems in the SAP environment includes connections between SAP systems as well as between SAP systems and non-SAP systems. Remote Function Call (RFC) is the standard SAP interface for communication between SAP systems. The RFC calls a function to be executed in a remote system. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Synchronous RFC&lt;/P&gt;&lt;P&gt;The first version of RFC is synchronous RFC (sRFC). This type of RFC executes the function call based on synchronous communication, which means that the systems involved must both be available at the time the call is made. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Transactional RFC (tRFC)&lt;/P&gt;&lt;P&gt;Transactional RFC (tRFC, also originally known as asynchronous RFC) is an asynchronous communication method that executes the called function module in the RFC server only once. The remote system need not be available at the time when the RFC client program is executing a tRFC. The tRFC component stores the called RFC function, together with the corresponding data, in the SAP database under a unique transaction ID (TID).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If a call is sent, and the receiving system is down, the call remains in the local queue until a later time. The calling dialog program can proceed without waiting to see whether or not the remote call was successful. If the receiving system does not become active within a certain amount of time, the call is scheduled to run in batch.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tRFC is always used if a function is executed as a Logical Unit of Work (LUW). Within a LUW, all calls are&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;· executed in the order in which they are called&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;· executed in the same program context in the target system&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;· run as a single transaction: they are either committed or rolled back as a unit. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Implementation of tRFC is recommended if you want to guarantee that the transactional order of the calls is preserved.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Disadvantages of tRFC&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;· tRFC processes all LUWs independent of one another. Due to the amount of activated tRFC processes, this procedure can reduce performance significantly in both the send and the target systems.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;· In addition, the sequence of LUWs defined in the application cannot be kept. Therefore, there is no guarantee that the transactions are executed in the sequence dictated by the application. The only guarantee is that all LUWs are transferred sooner or later.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Queued RFC (qRFC)&lt;/P&gt;&lt;P&gt;To guarantee that multiple LUWs are processed in the order specified by the application, tRFC can be serialized using queues (inbound and outbound queues). This type of RFC is called queued RFC (qRFC). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;qRFC is therefore an extension of tRFC. It transfers an LUW (transaction) only if it has no predecessors (in reference to the sequence defined in different application programs) in the participating queues. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Implementation of qRFC is recommended if you want to guarantee that several transactions are processed in a predefined order. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RFC: Data Transfer&lt;/P&gt;&lt;P&gt;All RFC types are transferred by means of CPI-C or TCP/IP. They constitute a form of gateway communication. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can get additional information from:&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/22/0424fe488911d189490000e829fbbd/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/22/0424fe488911d189490000e829fbbd/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&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;madhu.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 23 Mar 2008 13:48:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rfcs/m-p/3606230#M868674</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-23T13:48:27Z</dc:date>
    </item>
    <item>
      <title>Re: rfcs</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rfcs/m-p/3606231#M868675</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;You refer to the following link u will get some knowledge about RFC..How to create..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCFESDE2/BCFESDE2.pdf" target="test_blank"&gt;http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCFESDE2/BCFESDE2.pdf&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With Regards&lt;/P&gt;&lt;P&gt;madhavi.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 23 Mar 2008 13:48:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rfcs/m-p/3606231#M868675</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-23T13:48:53Z</dc:date>
    </item>
    <item>
      <title>Re: rfcs</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rfcs/m-p/3606232#M868676</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Hema sunder,&lt;/P&gt;&lt;P&gt;RFC stands for Remote function call i.e U can call and execute a piece of code from one SAP system to another or SAP to NON SAP or NON SAP to SAP system. When u create a function module there will be one radio button for specifying whether function module is remote enabled or not. If u select this then u can call this FM from any system.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check below links for more information on RFCs.&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/erp2005_ehp_03/helpdata/EN/45/0a385c7efd4574e10000000a114a6b/frameset.htm" target="test_blank"&gt;http://help.sap.com/erp2005_ehp_03/helpdata/EN/45/0a385c7efd4574e10000000a114a6b/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/erp2005_ehp_03/helpdata/EN/89/45aad99715462abdf09ec503e151e7/frameset.htm" target="test_blank"&gt;http://help.sap.com/erp2005_ehp_03/helpdata/EN/89/45aad99715462abdf09ec503e151e7/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/erp2005_ehp_03/helpdata/EN/89/45aad99715462abdf09ec503e151e7/frameset.htm" target="test_blank"&gt;http://help.sap.com/erp2005_ehp_03/helpdata/EN/89/45aad99715462abdf09ec503e151e7/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/erp2005_ehp_03/helpdata/EN/26/b439f1506511d182c20000e829fbfe/frameset.htm" target="test_blank"&gt;http://help.sap.com/erp2005_ehp_03/helpdata/EN/26/b439f1506511d182c20000e829fbfe/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/erp2005_ehp_03/helpdata/EN/26/b43a9a506511d182c20000e829fbfe/frameset.htm" target="test_blank"&gt;http://help.sap.com/erp2005_ehp_03/helpdata/EN/26/b43a9a506511d182c20000e829fbfe/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Vinod.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 23 Mar 2008 13:55:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rfcs/m-p/3606232#M868676</guid>
      <dc:creator>vinod_vemuru2</dc:creator>
      <dc:date>2008-03-23T13:55:34Z</dc:date>
    </item>
  </channel>
</rss>

