<?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 Query on BAPI_TRANSACTION_COMMIT in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/query-on-bapi-transaction-commit/m-p/2223927#M477724</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We are updating Purchase Requisition(PR) data into SAP ECC with ETL Informatica using BAPI_PR_CREATE. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For the above, I have done the following testing:&lt;/P&gt;&lt;P&gt;I have executed the BAPI_PR_CREATE usign SE37 Transaction code with the suitable data and created a PR. Ireceived successful with PR number. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After the above step I have executed BAPI_TRANSACTION_COMMIT for physical uploding data into SAP tables. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After completion of the above two steps I have checked in EBAN (PR) tables/ME53N Trcode to see the new PR data. But I could not find.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please guide me what is the procedure to see the data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Sudarsan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 11 May 2007 10:19:14 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-05-11T10:19:14Z</dc:date>
    <item>
      <title>Query on BAPI_TRANSACTION_COMMIT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/query-on-bapi-transaction-commit/m-p/2223927#M477724</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We are updating Purchase Requisition(PR) data into SAP ECC with ETL Informatica using BAPI_PR_CREATE. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For the above, I have done the following testing:&lt;/P&gt;&lt;P&gt;I have executed the BAPI_PR_CREATE usign SE37 Transaction code with the suitable data and created a PR. Ireceived successful with PR number. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After the above step I have executed BAPI_TRANSACTION_COMMIT for physical uploding data into SAP tables. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After completion of the above two steps I have checked in EBAN (PR) tables/ME53N Trcode to see the new PR data. But I could not find.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please guide me what is the procedure to see the data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Sudarsan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 May 2007 10:19:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/query-on-bapi-transaction-commit/m-p/2223927#M477724</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-11T10:19:14Z</dc:date>
    </item>
    <item>
      <title>Re: Query on BAPI_TRANSACTION_COMMIT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/query-on-bapi-transaction-commit/m-p/2223928#M477725</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think it's better to build a small abap where you're doing the testing. Add a call of you BAPI and a call of BAPI_TRANSACTION_COMMIT to it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then it will propably work ! &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Hans&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please reward all helpful answers !!!!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 May 2007 10:40:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/query-on-bapi-transaction-commit/m-p/2223928#M477725</guid>
      <dc:creator>h_senden2</dc:creator>
      <dc:date>2007-05-11T10:40:22Z</dc:date>
    </item>
    <item>
      <title>Re: Query on BAPI_TRANSACTION_COMMIT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/query-on-bapi-transaction-commit/m-p/2223929#M477726</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Sudarsan&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You have to call your BAPI and BAPI_TRANSACTION_COMMIT &amp;lt;b&amp;gt;consecutively&amp;lt;/b&amp;gt;:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA:
  ls_return   TYPE bapiret2,
  lt_return    TYPE bapirettab.



  CALL FUNCTION 'BAPI_PR_CREATE'
    EXPORTING
       ...
   TABLES
     return  = lt_return
    ...

  LOOP AT lt_return TRANSPORTING NO FIELDS
                              WHERE ( type CA 'AEX' ).
    EXIT.
  ENDLOOP.
  IF ( syst-subrc ne 0 ).
    CALL FUNCTION 'BAPI_COMMIT_WORK'.
  ELSE.
    CALL FUNCTION 'BAPI_ROLLBACK_WORK'.
  ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;  Uwe&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 May 2007 10:54:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/query-on-bapi-transaction-commit/m-p/2223929#M477726</guid>
      <dc:creator>uwe_schieferstein</dc:creator>
      <dc:date>2007-05-11T10:54:38Z</dc:date>
    </item>
    <item>
      <title>Re: Query on BAPI_TRANSACTION_COMMIT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/query-on-bapi-transaction-commit/m-p/2223930#M477727</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;   within the same program u have to call the BAPI and BAPI commit also.&lt;/P&gt;&lt;P&gt;with regards,&lt;/P&gt;&lt;P&gt;Vamsi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 May 2007 11:17:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/query-on-bapi-transaction-commit/m-p/2223930#M477727</guid>
      <dc:creator>former_member219399</dc:creator>
      <dc:date>2007-05-11T11:17:56Z</dc:date>
    </item>
    <item>
      <title>Re: Query on BAPI_TRANSACTION_COMMIT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/query-on-bapi-transaction-commit/m-p/2223931#M477728</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Koyya,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want to use BAPI_TRANSACTION_COMMIT for testing purposes in trx SE37, you have to use "Test sequences" (Shift + F8).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the first place put your BAPI and in the second place put the BAPI_TRANSACTION_COMMIT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Good luck!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;                Fernando&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 May 2007 12:18:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/query-on-bapi-transaction-commit/m-p/2223931#M477728</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-11T12:18:08Z</dc:date>
    </item>
  </channel>
</rss>

