<?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 tRFC call in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/trfc-call/m-p/10551112#M1857118</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I was trying to implement a tRFC call using the addition IN BACKGROUND TASK; as I understand that while making a tRFC call the RFC function, together with data is saved in the database of the AS ABAP with a unique TID &amp;amp; I thought that we can view the TID using the transaction SM58. But to add to my surprise I could see nothing, can you please elaborate the possible reasons for this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Well I understand the following points already.&lt;/P&gt;&lt;P&gt;1. A function call that contains the clause STARTING NEW TASK represents an aRFC call.&lt;/P&gt;&lt;P&gt;2. A function call that contains the clause IN BACKGROUND TASK represents a tRFC call.&lt;/P&gt;&lt;P&gt;3. If a function call only contains a DESTINATION clause but does not contain any clauses like STARTING NEW TASK or IN BACKGROUND TASK then it represents a sRFC call.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;One more think if you could probably put light on is what is a bgRFC call?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Many Thanks,&lt;/P&gt;&lt;P&gt;Tanmoy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 27 Aug 2014 14:23:50 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2014-08-27T14:23:50Z</dc:date>
    <item>
      <title>tRFC call</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/trfc-call/m-p/10551112#M1857118</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I was trying to implement a tRFC call using the addition IN BACKGROUND TASK; as I understand that while making a tRFC call the RFC function, together with data is saved in the database of the AS ABAP with a unique TID &amp;amp; I thought that we can view the TID using the transaction SM58. But to add to my surprise I could see nothing, can you please elaborate the possible reasons for this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Well I understand the following points already.&lt;/P&gt;&lt;P&gt;1. A function call that contains the clause STARTING NEW TASK represents an aRFC call.&lt;/P&gt;&lt;P&gt;2. A function call that contains the clause IN BACKGROUND TASK represents a tRFC call.&lt;/P&gt;&lt;P&gt;3. If a function call only contains a DESTINATION clause but does not contain any clauses like STARTING NEW TASK or IN BACKGROUND TASK then it represents a sRFC call.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;One more think if you could probably put light on is what is a bgRFC call?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Many Thanks,&lt;/P&gt;&lt;P&gt;Tanmoy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Aug 2014 14:23:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/trfc-call/m-p/10551112#M1857118</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-08-27T14:23:50Z</dc:date>
    </item>
    <item>
      <title>Re: tRFC call</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/trfc-call/m-p/10551113#M1857119</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Tanmoy,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;bgRFC does everything you could do with "Classic tRFC qRFC".&lt;/P&gt;&lt;P&gt;But it does it faaar better.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I highly recoomend bgRFC - &lt;A href="http://help.sap.com/saphelp_nw73ehp1/helpdata/en/48/929142aa6b17cee10000000a421937/content.htm" title="http://help.sap.com/saphelp_nw73ehp1/helpdata/en/48/929142aa6b17cee10000000a421937/content.htm"&gt;bgRFC Programming - Connectivity - SAP Library&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To summarize, here is the list of RFC options in ABAP:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #1f497d;"&gt;(1)&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #1f497d;"&gt;sRFC – synchronous RFC (DESTINATION….)&lt;/SPAN&gt;&lt;/P&gt;&lt;UL style="list-style-type: disc;"&gt;&lt;LI&gt;&lt;SPAN style="color: #1f497d;"&gt;(2)&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #1f497d;"&gt;aRFC – asynchronous RFC (with or without response) (STARTING NEW TASK… DESTINATION…)&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN style="color: #1f497d;"&gt;(3)&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #1f497d;"&gt;pRFC – asynchronous RFC over an RFC server group (with or without response) (STARTING NEW TASK… DESTINATION IN GROUP…).&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN style="color: #1f497d;"&gt;(4)&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #1f497d;"&gt;tRFC/qRFC – ‘store and execute later’ RFC – execution controlled by qRFC scheduler (IN BACKGROUND TASK….)&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN style="color: #1f497d;"&gt;(5)&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #1f497d;"&gt;bgRFC – ‘store and execute later’ RFC – execution controlled by bgRFC scheduler (IN BACKGROUND UNIT….)&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;Thank you,&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;Best Regards,&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;JothiSubaramaniam P&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;SAP IMS CST&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Apr 2015 20:51:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/trfc-call/m-p/10551113#M1857119</guid>
      <dc:creator>former_member204283</dc:creator>
      <dc:date>2015-04-08T20:51:56Z</dc:date>
    </item>
  </channel>
</rss>

