<?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: error while using BAPI_OUTB_DELIVERY_CHANGE in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-using-bapi-outb-delivery-change/m-p/1255813#M146113</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Raj,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Good that you found this function module and shared with the forum. This is a SAP store specific function module and if you follow the code, it calls the function module 'WS_LM_GOODS_MOVEMENT' and this function module in turn does a &amp;lt;u&amp;gt;call transaction&amp;lt;/u&amp;gt; in exactly the same fashion that I posted earlier. Here is the extract of that call transaction.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
        refresh lt_bdcdata.
        if if_flag_inbound eq space.
          set_dynp_batchinput 'SAPMV50A' '4004'.
          set_var_batchinput 'LIKP-VBELN' lt_select2-vbeln.
          set_var_batchinput 'BDC_OKCODE' 'WABU_T'.
          call transaction 'VL02N' using lt_bdcdata
                                  mode if_bitype
                                  update 'S'
                                  messages into lt_messtab.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 23 Mar 2006 20:18:53 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-03-23T20:18:53Z</dc:date>
    <item>
      <title>error while using BAPI_OUTB_DELIVERY_CHANGE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-using-bapi-outb-delivery-change/m-p/1255803#M146103</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Folks,&lt;/P&gt;&lt;P&gt;I created an outbound delivery for a STO, now i have to &lt;/P&gt;&lt;P&gt;changed the PICKING QUANTITY in the Outbound delivery to the same value as Quantity delivered and then post a GI. &lt;/P&gt;&lt;P&gt;I am using BAPI_OUTB_DELIVERY_CHANGE to update the outbound delivery and then post GI. I am getting an error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;E VLBAPI   004         &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can someone let me know why and whts the solution to update the OD and then post the GI using this bapi.&lt;/P&gt;&lt;P&gt;thanks a ton&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Raj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 04 Feb 2024 03:24:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-using-bapi-outb-delivery-change/m-p/1255803#M146103</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2024-02-04T03:24:42Z</dc:date>
    </item>
    <item>
      <title>Re: error while using BAPI_OUTB_DELIVERY_CHANGE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-using-bapi-outb-delivery-change/m-p/1255804#M146104</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I don't know if you can change the pick quantity but here is the message full text&lt;/P&gt;&lt;P&gt;'Error in document &amp;amp;1 item &amp;amp;2 (quantity consistency check)'&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Mar 2006 20:20:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-using-bapi-outb-delivery-change/m-p/1255804#M146104</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-21T20:20:21Z</dc:date>
    </item>
    <item>
      <title>Re: error while using BAPI_OUTB_DELIVERY_CHANGE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-using-bapi-outb-delivery-change/m-p/1255805#M146105</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;To do the GI, do a simple BDC. Here is the sample code.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
  PERFORM bdc_dynpro USING 'SAPMV50A'   '4004'.
  PERFORM bdc_field  USING 'BDC_OKCODE' '=WABU_T'.
  PERFORM bdc_field  USING 'LIKP-VBELN' delvry_nbr.
  PERFORM bdc_dynpro USING 'SAPMV50A'   '4004'.
  PERFORM bdc_field  USING 'BDC_OKCODE' '=BACK'.
*-- Call Transaction (VL02N)
  CALL TRANSACTION c_vl02n
             USING i_bdcdata
              MODE c_nodisplay
            UPDATE c_synchronous
          MESSAGES INTO i_bdcmsgcoll.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Mar 2006 20:23:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-using-bapi-outb-delivery-change/m-p/1255805#M146105</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-21T20:23:43Z</dc:date>
    </item>
    <item>
      <title>Re: error while using BAPI_OUTB_DELIVERY_CHANGE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-using-bapi-outb-delivery-change/m-p/1255806#M146106</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks Shrinivas.&lt;/P&gt;&lt;P&gt;I have to use a BAPI as far as possible. i have to &lt;/P&gt;&lt;P&gt;update the PICK quan to the same value as Quantity delivered and then post GI.&lt;/P&gt;&lt;P&gt;can u suggest something that will eliminate this error.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Mar 2006 22:29:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-using-bapi-outb-delivery-change/m-p/1255806#M146106</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-21T22:29:19Z</dc:date>
    </item>
    <item>
      <title>Re: error while using BAPI_OUTB_DELIVERY_CHANGE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-using-bapi-outb-delivery-change/m-p/1255807#M146107</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Raj, &lt;/P&gt;&lt;P&gt;as far as I know BAPI_OUTB_DELIVERY_CHANGE is neither able to set the picking quantity nor to post goods issue. So i guess for you purpose it is not really useful. &lt;/P&gt;&lt;P&gt;The next best external interface to set picking quantity and post goods issue is Idoc DELVRY03 with message type WHSCON. &lt;/P&gt;&lt;P&gt;Best regards, Ulrich&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Mar 2006 08:23:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-using-bapi-outb-delivery-change/m-p/1255807#M146107</guid>
      <dc:creator>former_member657875</dc:creator>
      <dc:date>2006-03-22T08:23:18Z</dc:date>
    </item>
    <item>
      <title>Re: error while using BAPI_OUTB_DELIVERY_CHANGE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-using-bapi-outb-delivery-change/m-p/1255808#M146108</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ulrich &lt;/P&gt;&lt;P&gt;do you know any FM that i can use to change picking and post GI.&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;raj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Mar 2006 14:51:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-using-bapi-outb-delivery-change/m-p/1255808#M146108</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-22T14:51:19Z</dc:date>
    </item>
    <item>
      <title>Re: error while using BAPI_OUTB_DELIVERY_CHANGE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-using-bapi-outb-delivery-change/m-p/1255809#M146109</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Raj,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can try to use this FM: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;MB_POST_GOODS_MOVEMENT&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;MB_CREATE_GOODS_MOVEMENT&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this will help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ferry Lianto&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Mar 2006 15:11:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-using-bapi-outb-delivery-change/m-p/1255809#M146109</guid>
      <dc:creator>ferry_lianto</dc:creator>
      <dc:date>2006-03-22T15:11:01Z</dc:date>
    </item>
    <item>
      <title>Re: error while using BAPI_OUTB_DELIVERY_CHANGE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-using-bapi-outb-delivery-change/m-p/1255810#M146110</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Not everything is possible to do with a BAPI at this point. As you can see, pick quantity cannot be updated using this BAPI and there is no BAPI that does the GI.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Mar 2006 15:27:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-using-bapi-outb-delivery-change/m-p/1255810#M146110</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-22T15:27:24Z</dc:date>
    </item>
    <item>
      <title>Re: error while using BAPI_OUTB_DELIVERY_CHANGE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-using-bapi-outb-delivery-change/m-p/1255811#M146111</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks ferry/srinivas&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i was able to update picking quantity using the function mondule WS_DELIVERY_UPDATE_2.&lt;/P&gt;&lt;P&gt;Now i just need a FM or BAPI to post GI and I am done.&lt;/P&gt;&lt;P&gt;pls. let me know if u have clues...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With these FMs i wasnt able to post my GI&lt;/P&gt;&lt;P&gt;MB_POST_GOODS_MOVEMENT&lt;/P&gt;&lt;P&gt;MB_CREATE_GOODS_MOVEMENT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks a ton&lt;/P&gt;&lt;P&gt;raj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Mar 2006 22:23:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-using-bapi-outb-delivery-change/m-p/1255811#M146111</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-22T22:23:23Z</dc:date>
    </item>
    <item>
      <title>Re: error while using BAPI_OUTB_DELIVERY_CHANGE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-using-bapi-outb-delivery-change/m-p/1255812#M146112</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi guys i posted a GI for STO using this bapi... &lt;/P&gt;&lt;P&gt;CSO_P_DLVRY_GOODS_ISSUE_CREATE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can try and see if it works for you.. it did for me..&lt;/P&gt;&lt;P&gt;thanks for all the replies&lt;/P&gt;&lt;P&gt;Raj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Mar 2006 19:06:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-using-bapi-outb-delivery-change/m-p/1255812#M146112</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-23T19:06:52Z</dc:date>
    </item>
    <item>
      <title>Re: error while using BAPI_OUTB_DELIVERY_CHANGE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-using-bapi-outb-delivery-change/m-p/1255813#M146113</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Raj,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Good that you found this function module and shared with the forum. This is a SAP store specific function module and if you follow the code, it calls the function module 'WS_LM_GOODS_MOVEMENT' and this function module in turn does a &amp;lt;u&amp;gt;call transaction&amp;lt;/u&amp;gt; in exactly the same fashion that I posted earlier. Here is the extract of that call transaction.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
        refresh lt_bdcdata.
        if if_flag_inbound eq space.
          set_dynp_batchinput 'SAPMV50A' '4004'.
          set_var_batchinput 'LIKP-VBELN' lt_select2-vbeln.
          set_var_batchinput 'BDC_OKCODE' 'WABU_T'.
          call transaction 'VL02N' using lt_bdcdata
                                  mode if_bitype
                                  update 'S'
                                  messages into lt_messtab.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Mar 2006 20:18:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-using-bapi-outb-delivery-change/m-p/1255813#M146113</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-23T20:18:53Z</dc:date>
    </item>
    <item>
      <title>Re: error while using BAPI_OUTB_DELIVERY_CHANGE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-using-bapi-outb-delivery-change/m-p/1255814#M146114</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Raj,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could you send me the code to update the pick quantity. I am trying to update using the FM WS_DELIVERY_UPDATE_2 and i am getting success message but the pick quantity is not actually saved in the outbound delivery.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance,&lt;/P&gt;&lt;P&gt;Ram&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Sep 2009 16:25:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-using-bapi-outb-delivery-change/m-p/1255814#M146114</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-08T16:25:11Z</dc:date>
    </item>
  </channel>
</rss>

