<?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 In Background Task in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/in-background-task/m-p/1663062#M293771</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;    l am using BAPI: BAPI_ACC_GL_POSTING_POST, in BACKGROUND TASK.&lt;/P&gt;&lt;P&gt;an RFC, is ceated.&lt;/P&gt;&lt;P&gt;My Question, Is there a way to verify the RFC if an error occurs after RFC ran?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Bob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 20 Nov 2006 14:23:31 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-11-20T14:23:31Z</dc:date>
    <item>
      <title>In Background Task</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/in-background-task/m-p/1663062#M293771</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;    l am using BAPI: BAPI_ACC_GL_POSTING_POST, in BACKGROUND TASK.&lt;/P&gt;&lt;P&gt;an RFC, is ceated.&lt;/P&gt;&lt;P&gt;My Question, Is there a way to verify the RFC if an error occurs after RFC ran?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Bob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Nov 2006 14:23:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/in-background-task/m-p/1663062#M293771</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-20T14:23:31Z</dc:date>
    </item>
    <item>
      <title>Re: In Background Task</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/in-background-task/m-p/1663063#M293772</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Did you try using the RETURN in the Tables parameter of the BAPI?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;~Suresh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Nov 2006 14:26:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/in-background-task/m-p/1663063#M293772</guid>
      <dc:creator>suresh_datti</dc:creator>
      <dc:date>2006-11-20T14:26:04Z</dc:date>
    </item>
    <item>
      <title>Re: In Background Task</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/in-background-task/m-p/1663064#M293773</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Immediately after the call to the bapi, you can loop the internal table RETURN to know what has happened in the call to the bapi/rfc.&lt;/P&gt;&lt;P&gt;something like this:&lt;/P&gt;&lt;P&gt;    CALL FUNCTION 'BAPI_ACC_GL_POSTING_POST'&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;        DOCUMENTHEADER = DOCUMENTHEADER&lt;/P&gt;&lt;P&gt;      IMPORTING&lt;/P&gt;&lt;P&gt;        OBJ_TYPE       = OBJ_TYPE&lt;/P&gt;&lt;P&gt;        OBJ_KEY        = OBJ_KEY&lt;/P&gt;&lt;P&gt;        OBJ_SYS        = OBJ_SYS&lt;/P&gt;&lt;P&gt;      TABLES&lt;/P&gt;&lt;P&gt;        ACCOUNTGL      = ACCOUNTGL&lt;/P&gt;&lt;P&gt;        CURRENCYAMOUNT = CURRENCYAMOUNT&lt;/P&gt;&lt;P&gt;        RETURN         = RETURN&lt;/P&gt;&lt;P&gt;        EXTENSION1     = EXTENSION1&lt;/P&gt;&lt;P&gt;      EXCEPTIONS&lt;/P&gt;&lt;P&gt;        OTHERS         = 1.&lt;/P&gt;&lt;P&gt;loop at return.&lt;/P&gt;&lt;P&gt;write:/ return-MESSAGE.&lt;/P&gt;&lt;P&gt;endloop.&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>Mon, 20 Nov 2006 14:28:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/in-background-task/m-p/1663064#M293773</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-20T14:28:27Z</dc:date>
    </item>
    <item>
      <title>Re: In Background Task</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/in-background-task/m-p/1663065#M293774</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi robert,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. we have to check thru tcode sm58.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. It will list out all tRFCs which had some error.&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;amit m.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Nov 2006 14:28:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/in-background-task/m-p/1663065#M293774</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-20T14:28:33Z</dc:date>
    </item>
  </channel>
</rss>

