<?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: BAPI_SALESORDER_CHANGE does not make changes in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-salesorder-change-does-not-make-changes/m-p/685522#M30654</link>
    <description>&lt;P&gt;thanx y'all but i couldn't solve the issue so i  made it by using a batch input &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt; , for now is ok but i will return on it...&lt;/P&gt;</description>
    <pubDate>Tue, 13 Nov 2018 00:03:22 GMT</pubDate>
    <dc:creator>marco_sposa</dc:creator>
    <dc:date>2018-11-13T00:03:22Z</dc:date>
    <item>
      <title>BAPI_SALESORDER_CHANGE does not make changes</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-salesorder-change-does-not-make-changes/m-p/685513#M30645</link>
      <description>&lt;P&gt;Hello Folk's i'm struggiling with the bapi in object. I need to changed the edatu at item level, the return of the bapi is that the sales order is changed but no changed is made...&lt;/P&gt;
  &lt;P&gt;i'm comitting after calling the bapi.&lt;/P&gt;
  &lt;P&gt;here's my sample code:&lt;/P&gt;
  &lt;PRE&gt;&lt;CODE&gt;  ls_header_x-updateflag = 'U'.


  assign ls_schdl to &amp;lt;schdl&amp;gt;.
  assign ls_schdlx to &amp;lt;schdlx&amp;gt;.
  assign ls_items to &amp;lt;items2&amp;gt;.
  assign ls_itemsx to &amp;lt;items2x&amp;gt;.

  &amp;lt;schdl&amp;gt;-itm_number = '000010'.
  &amp;lt;schdlx&amp;gt;-itm_number = '000010'.


  &amp;lt;schdl&amp;gt;-sched_line = '0001'.
  &amp;lt;schdlx&amp;gt;-sched_line = '0001'.

  &amp;lt;items2&amp;gt;-itm_number = '000010'.
  &amp;lt;items2x&amp;gt;-itm_number = '000010'.

  &amp;lt;schdlx&amp;gt;-itm_number = '000010'.
   &amp;lt;schdl&amp;gt;-dlv_date = '20181111'.

  append &amp;lt;schdl&amp;gt; to lt_schdl.



  &amp;lt;schdlx&amp;gt;-dlv_date = 'U'.
  &amp;lt;schdlx&amp;gt;-updateflag = 'U'.
  append &amp;lt;schdlx&amp;gt; to lt_schdlx.

  &amp;lt;items2x&amp;gt;-updateflag = 'U'.
  append &amp;lt;items2&amp;gt; to lt_items.
 append &amp;lt;items2x&amp;gt; to lt_itemsx.



*update the data

  call function 'BAPI_SALESORDER_CHANGE'

    exporting

      salesdocument    = p_vbeln

      order_header_inx = ls_header_x

    tables

      order_item_in    = lt_items
      order_item_inx   = lt_itemsx
      return           = lt_return
      schedule_lines   = lt_schdl
      schedule_linesx  = lt_schdlx.

  read table lt_return assigning &amp;lt;return&amp;gt; with key type = 'E'.

  if sy-subrc ne 0.

    call function 'BAPI_TRANSACTION_COMMIT'
      exporting
        wait   = 'X'
      importing
       return = ls_return.

  endif.&lt;BR /&gt;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 02 Nov 2018 10:20:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-salesorder-change-does-not-make-changes/m-p/685513#M30645</guid>
      <dc:creator>marco_sposa</dc:creator>
      <dc:date>2018-11-02T10:20:17Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_SALESORDER_CHANGE does not make changes</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-salesorder-change-does-not-make-changes/m-p/685514#M30646</link>
      <description>&lt;P&gt;Pass &amp;lt;schdlx&amp;gt;-dlv_date ='X'. instead of &amp;lt;schdlx&amp;gt;-dlv_date ='U'.&lt;/P&gt;</description>
      <pubDate>Fri, 02 Nov 2018 12:33:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-salesorder-change-does-not-make-changes/m-p/685514#M30646</guid>
      <dc:creator>rameez_khan</dc:creator>
      <dc:date>2018-11-02T12:33:32Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_SALESORDER_CHANGE does not make changes</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-salesorder-change-does-not-make-changes/m-p/685515#M30647</link>
      <description>&lt;P&gt;thanx for you reply, but no effects.&lt;/P&gt;&lt;P&gt;the strange things is that even by testing the bapi in se37 (in a sequence with the bapi_commit), i have the same issue.&lt;/P&gt;</description>
      <pubDate>Fri, 02 Nov 2018 13:06:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-salesorder-change-does-not-make-changes/m-p/685515#M30647</guid>
      <dc:creator>marco_sposa</dc:creator>
      <dc:date>2018-11-02T13:06:29Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_SALESORDER_CHANGE does not make changes</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-salesorder-change-does-not-make-changes/m-p/685516#M30648</link>
      <description>&lt;P&gt;pass 'X' on &amp;lt;schdlx&amp;gt;-Field which you pass into this structure &amp;lt;schdl&amp;gt;&lt;/P&gt;</description>
      <pubDate>Fri, 02 Nov 2018 13:07:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-salesorder-change-does-not-make-changes/m-p/685516#M30648</guid>
      <dc:creator>former_member595067</dc:creator>
      <dc:date>2018-11-02T13:07:04Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_SALESORDER_CHANGE does not make changes</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-salesorder-change-does-not-make-changes/m-p/685517#M30649</link>
      <description>&lt;PRE&gt;&lt;CODE&gt;thanx for your replu
&amp;lt;schdlx&amp;gt;-dlv_date ='X'.
But no effects.
&lt;BR /&gt;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 02 Nov 2018 13:40:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-salesorder-change-does-not-make-changes/m-p/685517#M30649</guid>
      <dc:creator>marco_sposa</dc:creator>
      <dc:date>2018-11-02T13:40:00Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_SALESORDER_CHANGE does not make changes</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-salesorder-change-does-not-make-changes/m-p/685518#M30650</link>
      <description>&lt;P&gt;Used Code Like below code With all Mandatory Field E.g : SO , Item , Qty , plant , etc &lt;/P&gt;&lt;P&gt; &amp;lt;schdl&amp;gt;-itm_number ='000010'.&lt;/P&gt;&lt;P&gt;&amp;lt;schdlx&amp;gt;-itm_number ='X'.&lt;/P&gt;&lt;P&gt;&amp;lt;schdl&amp;gt;-dlv_date ='20181111'.&lt;/P&gt;&lt;P&gt;&amp;lt;schdlx&amp;gt;-dlv_date ='X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&amp;lt;schdlx&amp;gt;-updateflag ='X;. This field also 'X'&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;append&amp;lt;schdl&amp;gt;to lt_schdl.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 02 Nov 2018 15:48:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-salesorder-change-does-not-make-changes/m-p/685518#M30650</guid>
      <dc:creator>former_member595067</dc:creator>
      <dc:date>2018-11-02T15:48:08Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_SALESORDER_CHANGE does not make changes</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-salesorder-change-does-not-make-changes/m-p/685519#M30651</link>
      <description>&lt;P&gt;Hi Marco,&lt;/P&gt;&lt;P&gt;I must admit your code is a little confusing to me but from what I see I cannot see any obvious mistakes other than the on already mentioned.&lt;/P&gt;&lt;P&gt;But I looked up some of my own code, where I am changing a schedule line. I would try to just change the schedule and not the order item.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Peter &lt;/P&gt;</description>
      <pubDate>Fri, 02 Nov 2018 22:10:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-salesorder-change-does-not-make-changes/m-p/685519#M30651</guid>
      <dc:creator>pjl</dc:creator>
      <dc:date>2018-11-02T22:10:15Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_SALESORDER_CHANGE does not make changes</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-salesorder-change-does-not-make-changes/m-p/685520#M30652</link>
      <description>&lt;P&gt;hello Peter, thanx for ur reply can please show me a piece of your code in order to understand where am i missing please?&lt;/P&gt;&lt;P&gt;Thanx again&lt;/P&gt;</description>
      <pubDate>Sat, 03 Nov 2018 14:19:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-salesorder-change-does-not-make-changes/m-p/685520#M30652</guid>
      <dc:creator>marco_sposa</dc:creator>
      <dc:date>2018-11-03T14:19:44Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_SALESORDER_CHANGE does not make changes</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-salesorder-change-does-not-make-changes/m-p/685521#M30653</link>
      <description>&lt;P&gt;Hi Marco,&lt;/P&gt;&lt;P&gt;Check your LT_RETURN: maybe the bapi returns no error but you have some message explaining what's going on.&lt;/P&gt;</description>
      <pubDate>Mon, 05 Nov 2018 08:24:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-salesorder-change-does-not-make-changes/m-p/685521#M30653</guid>
      <dc:creator>SimoneMilesi</dc:creator>
      <dc:date>2018-11-05T08:24:11Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_SALESORDER_CHANGE does not make changes</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-salesorder-change-does-not-make-changes/m-p/685522#M30654</link>
      <description>&lt;P&gt;thanx y'all but i couldn't solve the issue so i  made it by using a batch input &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt; , for now is ok but i will return on it...&lt;/P&gt;</description>
      <pubDate>Tue, 13 Nov 2018 00:03:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-salesorder-change-does-not-make-changes/m-p/685522#M30654</guid>
      <dc:creator>marco_sposa</dc:creator>
      <dc:date>2018-11-13T00:03:22Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_SALESORDER_CHANGE does not make changes</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-salesorder-change-does-not-make-changes/m-p/13604096#M2026515</link>
      <description>&lt;P&gt;Hola, disculpa por la tardanza, pero me he topado con el mismo error.&amp;nbsp;&lt;BR /&gt;A mí me funcionó pasarle el VGBEL en el SALESDOCUMENT&lt;!--    StartFragment     --&gt;&lt;/P&gt;&lt;P&gt;&lt;!--  StartFragment   --&gt;&lt;SPAN&gt;&lt;SPAN class=""&gt;CALL&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN class=""&gt;FUNCTION&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN class=""&gt;'BAPI_SALESORDER_CHANGE'&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;SPAN class=""&gt;EXPORTING&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;salesdocument&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;SPAN class=""&gt;=&amp;nbsp;&lt;/SPAN&gt;wa_lips&lt;SPAN class=""&gt;-&lt;/SPAN&gt;vgbel&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;order_header_inx&amp;nbsp;&lt;SPAN class=""&gt;=&amp;nbsp;&lt;/SPAN&gt;ls_u_header_x&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;SPAN class=""&gt;TABLES&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;SPAN class=""&gt;return&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN class=""&gt;=&amp;nbsp;&lt;/SPAN&gt;lt_return&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;order_item_in&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;SPAN class=""&gt;=&amp;nbsp;&lt;/SPAN&gt;lt_items&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;order_item_inx&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;SPAN class=""&gt;=&amp;nbsp;&lt;/SPAN&gt;lt_items_x&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;schedule_lines&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;SPAN class=""&gt;=&amp;nbsp;&lt;/SPAN&gt;lt_schedule_lines&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;schedule_linesx&amp;nbsp;&amp;nbsp;&lt;SPAN class=""&gt;=&amp;nbsp;&lt;/SPAN&gt;lt_schedule_linesx&lt;SPAN class=""&gt;.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 13 Feb 2024 17:31:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-salesorder-change-does-not-make-changes/m-p/13604096#M2026515</guid>
      <dc:creator>GABRIEL16</dc:creator>
      <dc:date>2024-02-13T17:31:39Z</dc:date>
    </item>
  </channel>
</rss>

