<?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: Problem in BAPI SALES ORDER CHANGE in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-bapi-sales-order-change/m-p/4812590#M1126378</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;SEE THE FOLLOWING EXAMPLE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT  ZSALESORDER_CHANGE MESSAGE-ID 38.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*----&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Selection Screen Definitions *&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;*----&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;PARAMETERS: p_vbeln TYPE vbap-vbeln OBLIGATORY, "Order Number&lt;/P&gt;&lt;P&gt;p_posnr TYPE vbap-posnr OBLIGATORY, "Order Item&lt;/P&gt;&lt;P&gt;p_etenr TYPE vbep-etenr OBLIGATORY, "Schedule Line&lt;/P&gt;&lt;P&gt;p_reqqty TYPE bapischdl-req_qty OBLIGATORY. " Order Qty&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*----&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Internal Tables/Structures/Variables for calling BAPI. *&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;*----&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;DATA: i_hdr TYPE bapisdh1,&lt;/P&gt;&lt;P&gt;i_hdrx TYPE bapisdh1x,&lt;/P&gt;&lt;P&gt;i_ret TYPE bapiret2 OCCURS 0 WITH HEADER LINE,&lt;/P&gt;&lt;P&gt;wa_ret TYPE bapiret2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF i_sched OCCURS 10.&lt;/P&gt;&lt;P&gt;INCLUDE STRUCTURE bapischdl.&lt;/P&gt;&lt;P&gt;DATA: END OF i_sched.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF i_schedx OCCURS 10.&lt;/P&gt;&lt;P&gt;INCLUDE STRUCTURE bapischdlx.&lt;/P&gt;&lt;P&gt;DATA: END OF i_schedx.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*----&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;START-OF-SELECTION Event *&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;*----&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;START-OF-SELECTION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*"----&lt;/P&gt;&lt;HR originaltext="-----------------------------------------" /&gt;&lt;P&gt;*" Initialize internal tables.&lt;/P&gt;&lt;P&gt;*"----&lt;/P&gt;&lt;HR originaltext="-----------------------------------------" /&gt;&lt;P&gt;REFRESH: i_sched, i_schedx, i_ret.&lt;/P&gt;&lt;P&gt;CLEAR: i_sched, i_schedx, i_ret.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*"----&lt;/P&gt;&lt;HR originaltext="-----------------------------------------" /&gt;&lt;P&gt;*" Fill required ORDER_HEADER_IN data.&lt;/P&gt;&lt;P&gt;*"----&lt;/P&gt;&lt;HR originaltext="-----------------------------------------" /&gt;&lt;P&gt;i_hdrx-updateflag = 'U'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*"----&lt;/P&gt;&lt;HR originaltext="-----------------------------------------" /&gt;&lt;P&gt;*" Fill required SCHEDULE_LINES data.&lt;/P&gt;&lt;P&gt;*"----&lt;/P&gt;&lt;HR originaltext="-----------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i_sched-itm_number = p_posnr.&lt;/P&gt;&lt;P&gt;i_sched-sched_line = p_etenr.&lt;/P&gt;&lt;P&gt;i_sched-req_qty = p_reqqty.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i_schedx-updateflag = 'U'.&lt;/P&gt;&lt;P&gt;i_schedx-itm_number = p_posnr.&lt;/P&gt;&lt;P&gt;i_schedx-sched_line = p_etenr.&lt;/P&gt;&lt;P&gt;i_schedx-req_qty = 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;APPEND i_sched.&lt;/P&gt;&lt;P&gt;APPEND i_schedx.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'BAPI_SALESORDER_CHANGE'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;salesdocument = p_vbeln&lt;/P&gt;&lt;P&gt;order_header_in = i_hdr&lt;/P&gt;&lt;P&gt;order_header_inx = i_hdrx&lt;/P&gt;&lt;P&gt;TABLES&lt;/P&gt;&lt;P&gt;return = i_ret&lt;/P&gt;&lt;P&gt;schedule_lines = i_sched&lt;/P&gt;&lt;P&gt;schedule_linesx = i_schedx.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT i_ret.&lt;/P&gt;&lt;P&gt;WRITE / i_ret-message.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 01 Dec 2008 11:35:35 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-12-01T11:35:35Z</dc:date>
    <item>
      <title>Problem in BAPI SALES ORDER CHANGE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-bapi-sales-order-change/m-p/4812586#M1126374</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;My requirement is: while creating and saving new sales order for a customer(say 100014), system will check is any credit memo request( i.e. sales order) already exist with this customer 100014. If so, system will first releas this credit memo by clearing the billing block and then create new sales order. To change the billing block of credit memo request i am accumulating header and item info and passing it to the BAPI_SALESORDER_CHANGE inside the user exit USEREXIT_SAVE_DOCUMENT in VA01 so that it will change the billing block of the credit memo reuest before saving the new sales order.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;              CALL FUNCTION 'BAPI_SALESORDER_CHANGE'&lt;/P&gt;&lt;P&gt;                EXPORTING&lt;/P&gt;&lt;P&gt;                  salesdocument     = wa_vbak-vbeln&lt;/P&gt;&lt;P&gt;                  order_header_in   = wa_hdr&lt;/P&gt;&lt;P&gt;                  order_header_inx  = wa_hdrx&lt;/P&gt;&lt;P&gt;                  behave_when_error = 'P'&lt;/P&gt;&lt;P&gt;                TABLES&lt;/P&gt;&lt;P&gt;                  return               = i_ret&lt;/P&gt;&lt;P&gt;                  order_item_in     = i_itm[]&lt;/P&gt;&lt;P&gt;                  order_item_inx    = i_itmx[]&lt;/P&gt;&lt;P&gt;                  PARTNERS          = i_order_partners[].&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Its not changing the credit memo request.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Even if i am testing the BAPI_SALESORDER_CHANGE stanalone from SE37 passing header and item info and clearing the header billing block, it is not changing the billing block of the credit memo request (sales order) though its giving me succesfful message that 'Sales order is saved' from RETURN Table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can some one help me for the same.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks a lot.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 30 Nov 2008 19:20:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-bapi-sales-order-change/m-p/4812586#M1126374</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-30T19:20:06Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in BAPI SALES ORDER CHANGE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-bapi-sales-order-change/m-p/4812587#M1126375</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;gt; Hi All,&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; My requirement is: while creating and saving new sales order for a customer(say 100014), system will check is any credit memo request( i.e. sales order) already exist with this customer 100014. If so, system will first releas this credit memo by clearing the billing block and then create new sales order. To change the billing block of credit memo request i am accumulating header and item info and passing it to the BAPI_SALESORDER_CHANGE inside the user exit USEREXIT_SAVE_DOCUMENT in VA01 so that it will change the billing block of the credit memo reuest before saving the new sales order.&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt;               CALL FUNCTION 'BAPI_SALESORDER_CHANGE'&lt;/P&gt;&lt;P&gt;&amp;gt;                 EXPORTING&lt;/P&gt;&lt;P&gt;&amp;gt;                   salesdocument     = wa_vbak-vbeln&lt;/P&gt;&lt;P&gt;&amp;gt;                   order_header_in   = wa_hdr&lt;/P&gt;&lt;P&gt;&amp;gt;                   order_header_inx  = wa_hdrx&lt;/P&gt;&lt;P&gt;&amp;gt;                   behave_when_error = 'P'&lt;/P&gt;&lt;P&gt;&amp;gt;                 TABLES&lt;/P&gt;&lt;P&gt;&amp;gt;                   return               = i_ret&lt;/P&gt;&lt;P&gt;&amp;gt;                   order_item_in     = i_itm[]&lt;/P&gt;&lt;P&gt;&amp;gt;                   order_item_inx    = i_itmx[]&lt;/P&gt;&lt;P&gt;&amp;gt;                   PARTNERS          = i_order_partners[].&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; Its not changing the credit memo request.&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; Even if i am testing the BAPI_SALESORDER_CHANGE stanalone from SE37 passing header and item info and clearing the header billing block, it is not changing the billing block of the credit memo request (sales order) though its giving me succesfful message that 'Sales order is saved' from RETURN Table.&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; Can some one help me for the same.&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; Thanks a lot.&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have you called BAPI_TRANSACTION_COMMIT?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 30 Nov 2008 19:32:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-bapi-sales-order-change/m-p/4812587#M1126375</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-30T19:32:14Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in BAPI SALES ORDER CHANGE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-bapi-sales-order-change/m-p/4812588#M1126376</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;this BAPI needs explicit commit, so you need to call BAPI_TRANSACTION_COMMIT after calling it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 30 Nov 2008 19:32:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-bapi-sales-order-change/m-p/4812588#M1126376</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-30T19:32:46Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in BAPI SALES ORDER CHANGE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-bapi-sales-order-change/m-p/4812589#M1126377</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try using 'BAPI_TRANSACTION_COMMIT' after the BAPI call for Sales Order create.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 30 Nov 2008 19:34:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-bapi-sales-order-change/m-p/4812589#M1126377</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-30T19:34:54Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in BAPI SALES ORDER CHANGE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-bapi-sales-order-change/m-p/4812590#M1126378</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;SEE THE FOLLOWING EXAMPLE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT  ZSALESORDER_CHANGE MESSAGE-ID 38.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*----&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Selection Screen Definitions *&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;*----&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;PARAMETERS: p_vbeln TYPE vbap-vbeln OBLIGATORY, "Order Number&lt;/P&gt;&lt;P&gt;p_posnr TYPE vbap-posnr OBLIGATORY, "Order Item&lt;/P&gt;&lt;P&gt;p_etenr TYPE vbep-etenr OBLIGATORY, "Schedule Line&lt;/P&gt;&lt;P&gt;p_reqqty TYPE bapischdl-req_qty OBLIGATORY. " Order Qty&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*----&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Internal Tables/Structures/Variables for calling BAPI. *&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;*----&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;DATA: i_hdr TYPE bapisdh1,&lt;/P&gt;&lt;P&gt;i_hdrx TYPE bapisdh1x,&lt;/P&gt;&lt;P&gt;i_ret TYPE bapiret2 OCCURS 0 WITH HEADER LINE,&lt;/P&gt;&lt;P&gt;wa_ret TYPE bapiret2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF i_sched OCCURS 10.&lt;/P&gt;&lt;P&gt;INCLUDE STRUCTURE bapischdl.&lt;/P&gt;&lt;P&gt;DATA: END OF i_sched.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF i_schedx OCCURS 10.&lt;/P&gt;&lt;P&gt;INCLUDE STRUCTURE bapischdlx.&lt;/P&gt;&lt;P&gt;DATA: END OF i_schedx.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*----&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;START-OF-SELECTION Event *&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;*----&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;START-OF-SELECTION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*"----&lt;/P&gt;&lt;HR originaltext="-----------------------------------------" /&gt;&lt;P&gt;*" Initialize internal tables.&lt;/P&gt;&lt;P&gt;*"----&lt;/P&gt;&lt;HR originaltext="-----------------------------------------" /&gt;&lt;P&gt;REFRESH: i_sched, i_schedx, i_ret.&lt;/P&gt;&lt;P&gt;CLEAR: i_sched, i_schedx, i_ret.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*"----&lt;/P&gt;&lt;HR originaltext="-----------------------------------------" /&gt;&lt;P&gt;*" Fill required ORDER_HEADER_IN data.&lt;/P&gt;&lt;P&gt;*"----&lt;/P&gt;&lt;HR originaltext="-----------------------------------------" /&gt;&lt;P&gt;i_hdrx-updateflag = 'U'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*"----&lt;/P&gt;&lt;HR originaltext="-----------------------------------------" /&gt;&lt;P&gt;*" Fill required SCHEDULE_LINES data.&lt;/P&gt;&lt;P&gt;*"----&lt;/P&gt;&lt;HR originaltext="-----------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i_sched-itm_number = p_posnr.&lt;/P&gt;&lt;P&gt;i_sched-sched_line = p_etenr.&lt;/P&gt;&lt;P&gt;i_sched-req_qty = p_reqqty.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i_schedx-updateflag = 'U'.&lt;/P&gt;&lt;P&gt;i_schedx-itm_number = p_posnr.&lt;/P&gt;&lt;P&gt;i_schedx-sched_line = p_etenr.&lt;/P&gt;&lt;P&gt;i_schedx-req_qty = 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;APPEND i_sched.&lt;/P&gt;&lt;P&gt;APPEND i_schedx.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'BAPI_SALESORDER_CHANGE'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;salesdocument = p_vbeln&lt;/P&gt;&lt;P&gt;order_header_in = i_hdr&lt;/P&gt;&lt;P&gt;order_header_inx = i_hdrx&lt;/P&gt;&lt;P&gt;TABLES&lt;/P&gt;&lt;P&gt;return = i_ret&lt;/P&gt;&lt;P&gt;schedule_lines = i_sched&lt;/P&gt;&lt;P&gt;schedule_linesx = i_schedx.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT i_ret.&lt;/P&gt;&lt;P&gt;WRITE / i_ret-message.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Dec 2008 11:35:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-bapi-sales-order-change/m-p/4812590#M1126378</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-01T11:35:35Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in BAPI SALES ORDER CHANGE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-bapi-sales-order-change/m-p/4812591#M1126379</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes i know i need to call BAPI_TRANSACTION_COMMIT after BAPI_SALESORDER_CHANGE.&lt;/P&gt;&lt;P&gt;But, i am using the BAPI_SALESORDER_CHANGE inside the user exit of the sales order before saving other sales order. So, i can not call BAPI_TRANSACTION_COMMIT to commit the work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anyways, even i tried using this BAPI_TRANSACTION_COMMIT , but no result.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Dec 2008 16:38:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-bapi-sales-order-change/m-p/4812591#M1126379</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-04T16:38:06Z</dc:date>
    </item>
  </channel>
</rss>

