<?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_READ_TABLE process in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-read-table-process/m-p/887497#M52773</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vishal,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The fm RFC_READ_TABLE is RFC-enabled. This doesn't mean that w you call it from a program that it rusn in the background.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So background determination is done based on 2 methods:&lt;/P&gt;&lt;P&gt;1. Make a program that calls this fm, create a variant with it (for your parameters) and then run it in the background (or schedule a job for it).&lt;/P&gt;&lt;P&gt;2. Inside your program do a remote call to fm RFC_READ_TABLE. See next example.&lt;/P&gt;&lt;P&gt;&amp;lt;tt&amp;gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'RFC_READ_TABLE'&lt;/P&gt;&lt;P&gt;     STARTING NEW TASK my_task&lt;/P&gt;&lt;P&gt;     DESTINATION 'NONE'&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;     EXCEPTIONS&lt;/P&gt;&lt;P&gt;        COMMUNICATION_FAILURE = 1 MESSAGE my_msg &lt;/P&gt;&lt;P&gt;        SYSTEM_FAILURE        = 2 MESSAGE my_msg&lt;/P&gt;&lt;P&gt;        OTHERS                = 3.&lt;/P&gt;&lt;P&gt;&amp;lt;/t&amp;gt;&lt;/P&gt;&lt;P&gt;This will process in the 'background'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;By the way, when in foreground, you can influence the time-slice counter. Reset occurs when using COMMIT WORK, so if you are able to use this, you can run in the foreground.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this gives you the information needed.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rob.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 04 Feb 2005 14:39:55 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2005-02-04T14:39:55Z</dc:date>
    <item>
      <title>RFC_READ_TABLE process</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-read-table-process/m-p/887495#M52771</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;I am initiating an RFC_READ_TABLE call to get data of a database table from an external application. Could anyone tell me if this would start a "background process" in the application server or not? I ask this because if the database table has many many records, the query would take a long time - in this case would the performance of other business critical processes affected adversely?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for any help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Feb 2005 18:06:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-read-table-process/m-p/887495#M52771</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-02-03T18:06:27Z</dc:date>
    </item>
    <item>
      <title>Re: RFC_READ_TABLE process</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-read-table-process/m-p/887496#M52772</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm sure it will not go to a background task.  I believe that it will show up under a dialog task.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Feb 2005 18:08:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-read-table-process/m-p/887496#M52772</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2005-02-03T18:08:52Z</dc:date>
    </item>
    <item>
      <title>Re: RFC_READ_TABLE process</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-read-table-process/m-p/887497#M52773</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vishal,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The fm RFC_READ_TABLE is RFC-enabled. This doesn't mean that w you call it from a program that it rusn in the background.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So background determination is done based on 2 methods:&lt;/P&gt;&lt;P&gt;1. Make a program that calls this fm, create a variant with it (for your parameters) and then run it in the background (or schedule a job for it).&lt;/P&gt;&lt;P&gt;2. Inside your program do a remote call to fm RFC_READ_TABLE. See next example.&lt;/P&gt;&lt;P&gt;&amp;lt;tt&amp;gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'RFC_READ_TABLE'&lt;/P&gt;&lt;P&gt;     STARTING NEW TASK my_task&lt;/P&gt;&lt;P&gt;     DESTINATION 'NONE'&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;     EXCEPTIONS&lt;/P&gt;&lt;P&gt;        COMMUNICATION_FAILURE = 1 MESSAGE my_msg &lt;/P&gt;&lt;P&gt;        SYSTEM_FAILURE        = 2 MESSAGE my_msg&lt;/P&gt;&lt;P&gt;        OTHERS                = 3.&lt;/P&gt;&lt;P&gt;&amp;lt;/t&amp;gt;&lt;/P&gt;&lt;P&gt;This will process in the 'background'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;By the way, when in foreground, you can influence the time-slice counter. Reset occurs when using COMMIT WORK, so if you are able to use this, you can run in the foreground.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this gives you the information needed.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rob.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Feb 2005 14:39:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-read-table-process/m-p/887497#M52773</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-02-04T14:39:55Z</dc:date>
    </item>
  </channel>
</rss>

