<?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: WS_DELIVERY_UPDATE in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/ws-delivery-update/m-p/893390#M53777</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Bala,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; I have the same problem.Are you able to figure out how you create the batch split line items using this bapi.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you please help me with this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Raj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 11 May 2005 17:19:09 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2005-05-11T17:19:09Z</dc:date>
    <item>
      <title>WS_DELIVERY_UPDATE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/ws-delivery-update/m-p/893387#M53774</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How do I unpick a delivery using the above function module ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Apr 2005 14:31:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/ws-delivery-update/m-p/893387#M53774</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-04-26T14:31:51Z</dc:date>
    </item>
    <item>
      <title>Re: WS_DELIVERY_UPDATE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/ws-delivery-update/m-p/893388#M53775</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Bala,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I got this from one of my collegue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The following is a test function module will unpack a specific Delivery Line \Quantity from an existing HU.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The import parameters are the Delivery, Delivery Item, the Dest&lt;/P&gt;&lt;P&gt; HU that you want to pack onto, and the quantity that should be&lt;/P&gt;&lt;P&gt; unpacked from the Source HU.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; The unpacked quantity that is to be is turned into a negative number, by this function module, which causes the unpacking to happen. So it assumes that the unpack qty is passed in as a postive number.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*********************************************************&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Data Declarations&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;*********************************************************&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  DATA:&lt;/P&gt;&lt;P&gt;    lv_error_1    TYPE XFELD,&lt;/P&gt;&lt;P&gt;    lv_error_2    TYPE XFELD,&lt;/P&gt;&lt;P&gt;    lv_error_3    TYPE XFELD,&lt;/P&gt;&lt;P&gt;    lv_error_4    TYPE XFELD,&lt;/P&gt;&lt;P&gt;    lv_error_5    TYPE XFELD,&lt;/P&gt;&lt;P&gt;    lv_error_6    TYPE XFELD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  DATA:&lt;/P&gt;&lt;P&gt;    ls_vbkok     like vbkok,&lt;/P&gt;&lt;P&gt;    li_verko     like verko occurs 0 with header line,&lt;/P&gt;&lt;P&gt;    li_verpo     like verpo occurs 0 with header line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  DATA:&lt;/P&gt;&lt;P&gt;    ls_tmeng     like vepo-vemng.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*********************************************************&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Pack the lower level handling unit onto the higher level one&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;The packing is done through FM WS_DELIVERY_UPDATE.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;*********************************************************&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CLEAR: li_verpo, li_verko, LS_VBKOK.&lt;/P&gt;&lt;P&gt;  REFRESH: li_verpo,  li_verko.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Fill the HU Header&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  CLEAR:   li_verko.&lt;/P&gt;&lt;P&gt;  REFRESH: li_verko.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  li_verko-exidv = ls_exidv.&lt;/P&gt;&lt;P&gt;  INSERT TABLE li_verko.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Fill the HU items.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  CLEAR:   li_verpo.&lt;/P&gt;&lt;P&gt;  REFRESH: li_verpo.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  li_verpo-exidv_ob = ls_exidv.&lt;/P&gt;&lt;P&gt;  li_verpo-vbeln = ls_vbeln.&lt;/P&gt;&lt;P&gt;  li_verpo-posnr = ls_posnr.&lt;/P&gt;&lt;P&gt;  li_verpo-tmeng = ( ls_unpack_qty * -1 ).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  INSERT TABLE li_verpo.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'WS_DELIVERY_UPDATE'&lt;/P&gt;&lt;P&gt;       EXPORTING&lt;/P&gt;&lt;P&gt;            vbkok_wa                    = ls_vbkok&lt;/P&gt;&lt;P&gt;            commit                      = 'X'&lt;/P&gt;&lt;P&gt;            delivery                    = ls_vbeln&lt;/P&gt;&lt;P&gt;       IMPORTING&lt;/P&gt;&lt;P&gt;            ef_error_any_0              = lv_error_1&lt;/P&gt;&lt;P&gt;            ef_error_in_item_deletion_0 = lv_error_2&lt;/P&gt;&lt;P&gt;            ef_error_in_pod_update_0    = lv_error_3&lt;/P&gt;&lt;P&gt;            ef_error_in_interface_0     = lv_error_4&lt;/P&gt;&lt;P&gt;            ef_error_in_goods_issue_0   = lv_error_5&lt;/P&gt;&lt;P&gt;            ef_error_in_final_check_0   = lv_error_6&lt;/P&gt;&lt;P&gt;       TABLES&lt;/P&gt;&lt;P&gt;            verko_tab                   = li_verko&lt;/P&gt;&lt;P&gt;            verpo_tab                   = li_verpo&lt;/P&gt;&lt;P&gt;       EXCEPTIONS&lt;/P&gt;&lt;P&gt;            error_mesage                = 9&lt;/P&gt;&lt;P&gt;            others                      = 10.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDFUNCTION.&lt;/P&gt;&lt;P&gt;&amp;lt;u&amp;gt;&amp;lt;b&amp;gt;IMPORTING&amp;lt;/b&amp;gt;&amp;lt;/u&amp;gt;&lt;/P&gt;&lt;P&gt;LS_VBELN	LIKE	LIPS-VBELN		Delivery&lt;/P&gt;&lt;P&gt;LS_EXIDV	LIKE	BAPIHUKEY-HU_EXID		External Handling Unit Identification&lt;/P&gt;&lt;P&gt;LS_POSNR	LIKE	LIPS-POSNR		Delivery item&lt;/P&gt;&lt;P&gt;LS_UNPACK_QTY	LIKE	VEPO-VEMNG		Base Quantity Packed in the Handling Unit Item&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps you out.&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Judith.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Apr 2005 08:28:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/ws-delivery-update/m-p/893388#M53775</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-04-27T08:28:06Z</dc:date>
    </item>
    <item>
      <title>Re: WS_DELIVERY_UPDATE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/ws-delivery-update/m-p/893389#M53776</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Judith,&lt;/P&gt;&lt;P&gt;Thanks for your immediate response. Your suggestion will help in unpacking. &lt;/P&gt;&lt;P&gt;What I need is UNPICKING. We are actually evaluating the RFID processing. The pack/unpack will be done by the RFID processes from the Aii system.&lt;/P&gt;&lt;P&gt;In R3 I am looking for a fucntion module to pick, unpick, incremental and decremental picking. I tried this ws_delivery_update by manipulating the field as follows.&lt;/P&gt;&lt;P&gt;vbpok-plmin = '-' ; All our items are batch managed.&lt;/P&gt;&lt;P&gt;This function module creates LIPS records &amp;amp; VBFA records&lt;/P&gt;&lt;P&gt;with +ve &amp;amp; -ve quantities which cause the VL03N to abend&lt;/P&gt;&lt;P&gt;while displaying multiple batch data in picking view.&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;-bala&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Apr 2005 15:11:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/ws-delivery-update/m-p/893389#M53776</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-04-27T15:11:38Z</dc:date>
    </item>
    <item>
      <title>Re: WS_DELIVERY_UPDATE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/ws-delivery-update/m-p/893390#M53777</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Bala,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; I have the same problem.Are you able to figure out how you create the batch split line items using this bapi.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you please help me with this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Raj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 May 2005 17:19:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/ws-delivery-update/m-p/893390#M53777</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-05-11T17:19:09Z</dc:date>
    </item>
    <item>
      <title>Re: WS_DELIVERY_UPDATE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/ws-delivery-update/m-p/893391#M53778</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I couldn't use this BAPI directly. I developed a work around to manipulate the input data for this BAPI by reading the existing data from LIPS &amp;amp; VBFA tables. It worked for my process increment / decrement picking.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 May 2005 16:45:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/ws-delivery-update/m-p/893391#M53778</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-05-19T16:45:30Z</dc:date>
    </item>
  </channel>
</rss>

