<?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: Short dump when calling FM BAPI_TRANSACTION_COMMIT in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/short-dump-when-calling-fm-bapi-transaction-commit/m-p/11754542#M1950644</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;
&lt;P&gt;There is no update FM triggered.&lt;/P&gt;
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Sorry but you're wrong; the COMMIT_IN_POSTING exception that you have mentioned (in your screen capture) proves that there is an update task (so there is an update FM).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Maybe you didn't understand that your code is executed by a standard update function module?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 03 Jun 2016 10:37:43 GMT</pubDate>
    <dc:creator>Sandra_Rossi</dc:creator>
    <dc:date>2016-06-03T10:37:43Z</dc:date>
    <item>
      <title>Short dump when calling FM BAPI_TRANSACTION_COMMIT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/short-dump-when-calling-fm-bapi-transaction-commit/m-p/11754531#M1950633</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;Short dump when calling BAPI_TRANSACTION_COMMIT after creating GR using BAPI_GOODSMVT_CREATE_OIL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please find attached screen short with dump details .&lt;/P&gt;&lt;P&gt;Kindly help me out.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Jun 2016 09:48:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/short-dump-when-calling-fm-bapi-transaction-commit/m-p/11754531#M1950633</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2016-06-02T09:48:11Z</dc:date>
    </item>
    <item>
      <title>Re: Short dump when calling FM BAPI_TRANSACTION_COMMIT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/short-dump-when-calling-fm-bapi-transaction-commit/m-p/11754532#M1950634</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Run it without commit bapi. &lt;/P&gt;&lt;P&gt; According to documentation - &lt;/P&gt;&lt;P&gt;The method can only perform your function if no error messages were generated in the &lt;EM&gt;Return&lt;/EM&gt; table. This is the case if the header data and all the items were processed successfully.&lt;/P&gt;&lt;P&gt;Transaction control is not implemented. The calling program therefore has to execute the &lt;STRONG&gt;Commit Work&lt;/STRONG&gt; itself after this method has been successfully invoked (in other words, if no errors were reported in the &lt;EM&gt;Return&lt;/EM&gt; parameter).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Jun 2016 09:54:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/short-dump-when-calling-fm-bapi-transaction-commit/m-p/11754532#M1950634</guid>
      <dc:creator>Ashg1402</dc:creator>
      <dc:date>2016-06-02T09:54:36Z</dc:date>
    </item>
    <item>
      <title>Re: Short dump when calling FM BAPI_TRANSACTION_COMMIT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/short-dump-when-calling-fm-bapi-transaction-commit/m-p/11754533#M1950635</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;Without COMMIT WORK , How GR will be saved in database.&lt;/P&gt;&lt;P&gt;Can you explain me in details&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Jun 2016 10:15:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/short-dump-when-calling-fm-bapi-transaction-commit/m-p/11754533#M1950635</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2016-06-02T10:15:36Z</dc:date>
    </item>
    <item>
      <title>Re: Short dump when calling FM BAPI_TRANSACTION_COMMIT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/short-dump-when-calling-fm-bapi-transaction-commit/m-p/11754534#M1950636</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;You are reading only one line from bapi return table. There can multiple entries in that table. Suppose first entry is of success/warning and others contain error. In this case your BAPI_Commit won't work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try like this:&lt;/P&gt;&lt;P&gt;data: lv_flag type c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;clear lv_flag.&lt;/P&gt;&lt;P style="font-size: 12px; color: #333333; background: #ffffff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; loop at wlt_ret into wls_ret where &lt;SPAN style="color: #333333; font-size: 12px;"&gt;ret&lt;/SPAN&gt;&lt;SPAN style="color: #333333; font-size: 12px;"&gt;-type eq 'E'.&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 12px; color: #333333; background: #ffffff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; lv_flag = 'X'.&lt;/P&gt;&lt;P style="font-size: 12px; color: #333333; background: #ffffff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 12px; color: #333333; background: #ffffff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; if lv_flag is initial.&lt;/P&gt;&lt;P style="font-size: 12px; color: #333333; background: #ffffff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; call function 'BAPI_TRANSACTION_COMMIT'&lt;/P&gt;&lt;P style="font-size: 12px; color: #333333; background: #ffffff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; exporting&lt;/P&gt;&lt;P style="font-size: 12px; color: #333333; background: #ffffff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; wait&amp;nbsp;&amp;nbsp; = '1'.&lt;/P&gt;&lt;P style="font-size: 12px; color: #333333; background: #ffffff;"&gt;&lt;/P&gt;&lt;P style="font-size: 12px; color: #333333; background: #ffffff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; endif.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Jun 2016 11:07:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/short-dump-when-calling-fm-bapi-transaction-commit/m-p/11754534#M1950636</guid>
      <dc:creator>pranay570708</dc:creator>
      <dc:date>2016-06-02T11:07:04Z</dc:date>
    </item>
    <item>
      <title>Re: Short dump when calling FM BAPI_TRANSACTION_COMMIT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/short-dump-when-calling-fm-bapi-transaction-commit/m-p/11754535#M1950637</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Everything is looks fine. I believe this call to BAPI_*** and corresponding commit work is inside any Function Module(and that function module is update function module).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We are not suppose to write commit work in update function module.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just to confirm can you share the Active Calls and Event. And if there are function modules in the stack just check in se37(Attibutes-&amp;gt;Processing Type) whether they are update function module.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Vishal Kumar Yadav&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Jun 2016 12:15:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/short-dump-when-calling-fm-bapi-transaction-commit/m-p/11754535#M1950637</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2016-06-02T12:15:52Z</dc:date>
    </item>
    <item>
      <title>Re: Short dump when calling FM BAPI_TRANSACTION_COMMIT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/short-dump-when-calling-fm-bapi-transaction-commit/m-p/11754536#M1950638</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;As Bala said, this is explained in details in the ABAP documentation (COMMIT WORK cannot be used in an update task), so please read it and revert back if something in the doc is not clear.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Jun 2016 15:00:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/short-dump-when-calling-fm-bapi-transaction-commit/m-p/11754536#M1950638</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2016-06-02T15:00:02Z</dc:date>
    </item>
    <item>
      <title>Re: Short dump when calling FM BAPI_TRANSACTION_COMMIT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/short-dump-when-calling-fm-bapi-transaction-commit/m-p/11754537#M1950639</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rossi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can I avoid this dump without commit work?&lt;/P&gt;&lt;P&gt;Could you please suggest to me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in Advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Jun 2016 05:55:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/short-dump-when-calling-fm-bapi-transaction-commit/m-p/11754537#M1950639</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2016-06-03T05:55:12Z</dc:date>
    </item>
    <item>
      <title>Re: Short dump when calling FM BAPI_TRANSACTION_COMMIT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/short-dump-when-calling-fm-bapi-transaction-commit/m-p/11754538#M1950640</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-size: 12px; color: #333333; background: #ffffff;"&gt;&amp;nbsp; call function 'BAPI_TRANSACTION_COMMIT'&lt;/P&gt;&lt;P style="font-size: 12px; color: #333333; background: #ffffff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; exporting&lt;/P&gt;&lt;P style="font-size: 12px; color: #333333; background: #ffffff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; wait&amp;nbsp;&amp;nbsp; = 'X'.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Jun 2016 06:32:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/short-dump-when-calling-fm-bapi-transaction-commit/m-p/11754538#M1950640</guid>
      <dc:creator>former_member197132</dc:creator>
      <dc:date>2016-06-03T06:32:43Z</dc:date>
    </item>
    <item>
      <title>Re: Short dump when calling FM BAPI_TRANSACTION_COMMIT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/short-dump-when-calling-fm-bapi-transaction-commit/m-p/11754539#M1950641</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Vishal,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My requirement is&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If Invoice created to customer then output type should be trigger. Output type should create PO, based on Purchase order GR will be created automatically.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PO created successfully, Even GR also created but it's not committed to database so no document exits when I am checking in MIGO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There is no update FM triggered. I believe my code everything correct, Is there any customizing changes required from functional side.&lt;/P&gt;&lt;P&gt;Could you please suggest to me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Jun 2016 07:34:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/short-dump-when-calling-fm-bapi-transaction-commit/m-p/11754539#M1950641</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2016-06-03T07:34:00Z</dc:date>
    </item>
    <item>
      <title>Re: Short dump when calling FM BAPI_TRANSACTION_COMMIT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/short-dump-when-calling-fm-bapi-transaction-commit/m-p/11754540#M1950642</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; font-family: arial,helvetica,sans-serif;"&gt;Is this message not clear enough?&lt;/SPAN&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
&lt;P&gt;&lt;SPAN style="font-size: 10pt; font-family: arial,helvetica,sans-serif;"&gt;Invalid COMMIT WORK in an update function module&lt;/SPAN&gt;&lt;/P&gt;




&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; font-family: arial,helvetica,sans-serif;"&gt;Some developper coded/triggered a COMMIT WORK in an update FM, when this FM is executed in update task this trigger the dump. Correct this, find the BAdI/Exit/enhancemnt in the Abap stack of the dump (or with transaction SM13)&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; font-family: arial,helvetica,sans-serif;"&gt;Hints:&lt;/SPAN&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;SPAN style="font-size: 10pt; font-family: arial,helvetica,sans-serif;"&gt;You could post the whole dump in a txt/xml file, smaller that a partial screen copy...)&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN style="font-size: 10pt; font-family: arial,helvetica,sans-serif;"&gt;To check during execution if currently running in update task, use FM&amp;nbsp; TH_IN_UPDATE_TASK&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN style="font-size: 10pt; font-family: arial,helvetica,sans-serif;"&gt;Don't use any update/create BAPI call in a update task, cause you won't be allowed to COMMIT, look for another solution like CALL FUNCTION - IN BACKGROUND TASK&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN style="font-size: 10pt; font-family: arial,helvetica,sans-serif;"&gt;Don't call any FM/method that execute a COMMIT WORK in update task (some old BAPI did)&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN style="font-size: 10pt; font-family: arial,helvetica,sans-serif;"&gt;Read some documentation like COMMIT WORK online/F1 help or &lt;A href="https://help.sap.com/saphelp_nw70ehp2/helpdata/en/c8/ed15db039b4f45a8507015f531976b/content.htm?frameset=/en/c8/ed15db039b4f45a8507015f531976b/frameset.htm&amp;amp;current_toc=/en/ca/e66b02ff0245529bfd58e1e251d15e/plain.htm&amp;amp;node_id=6&amp;amp;show_children=false"&gt;&lt;SPAN style="color: blue;"&gt;The Update Process&lt;/SPAN&gt;&lt;/A&gt;&amp;nbsp; &lt;/SPAN&gt;(*)&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; font-family: arial,helvetica,sans-serif;"&gt;Regards,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; font-family: arial,helvetica,sans-serif;"&gt;Raymond&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; font-family: arial,helvetica,sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; font-family: arial,helvetica,sans-serif;"&gt;&lt;EM&gt;(*) so next time you wont any longer write something like "There is no update FM triggered." when executing a COMMIT WORK...&lt;/EM&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Jun 2016 08:32:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/short-dump-when-calling-fm-bapi-transaction-commit/m-p/11754540#M1950642</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2016-06-03T08:32:24Z</dc:date>
    </item>
    <item>
      <title>Re: Short dump when calling FM BAPI_TRANSACTION_COMMIT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/short-dump-when-calling-fm-bapi-transaction-commit/m-p/11754541#M1950643</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Do you have difficulties with understanding the documentation? It's very clear. You must not use commit work (and not database commit too) because it's the pillar of the update concept! Read the doc and revert back with a more precise question (which will prove you made an effort).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Jun 2016 10:32:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/short-dump-when-calling-fm-bapi-transaction-commit/m-p/11754541#M1950643</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2016-06-03T10:32:30Z</dc:date>
    </item>
    <item>
      <title>Re: Short dump when calling FM BAPI_TRANSACTION_COMMIT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/short-dump-when-calling-fm-bapi-transaction-commit/m-p/11754542#M1950644</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;
&lt;P&gt;There is no update FM triggered.&lt;/P&gt;
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Sorry but you're wrong; the COMMIT_IN_POSTING exception that you have mentioned (in your screen capture) proves that there is an update task (so there is an update FM).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Maybe you didn't understand that your code is executed by a standard update function module?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Jun 2016 10:37:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/short-dump-when-calling-fm-bapi-transaction-commit/m-p/11754542#M1950644</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2016-06-03T10:37:43Z</dc:date>
    </item>
    <item>
      <title>Re: Short dump when calling FM BAPI_TRANSACTION_COMMIT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/short-dump-when-calling-fm-bapi-transaction-commit/m-p/11754543#M1950645</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check if there are any custom badi or customer exit implemented , in which a commit is triggered.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Regards&lt;/P&gt;&lt;P&gt;Kesav&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Jun 2016 12:10:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/short-dump-when-calling-fm-bapi-transaction-commit/m-p/11754543#M1950645</guid>
      <dc:creator>kesavadas_thekkillath</dc:creator>
      <dc:date>2016-06-03T12:10:45Z</dc:date>
    </item>
  </channel>
</rss>

