<?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 PICKING Using WS_DELIVERY_UPDATE in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/picking-using-ws-delivery-update/m-p/1185250#M126987</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Iam doing Picking using the BAPI WS_DELIVERY_UPDATE.&lt;/P&gt;&lt;P&gt;Iam just passing the following fields .&lt;/P&gt;&lt;P&gt; vbkok_wa =  &amp;lt;  Delivery no in  structure&amp;gt;&lt;/P&gt;&lt;P&gt; synchron = 'X'&lt;/P&gt;&lt;P&gt;delivery  = 'Del #'&lt;/P&gt;&lt;P&gt;update_picking = 'X'&lt;/P&gt;&lt;P&gt;nicht_sperren  = 'X'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Tables &lt;/P&gt;&lt;P&gt;   vbpok_tab  = ....&lt;/P&gt;&lt;P&gt;     prot   = ....&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;My delivery is not being picked properly using this BAPI. Am i missing any necessary parameters.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance,&lt;/P&gt;&lt;P&gt;Ajai&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 24 Jan 2006 04:46:18 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-01-24T04:46:18Z</dc:date>
    <item>
      <title>PICKING Using WS_DELIVERY_UPDATE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/picking-using-ws-delivery-update/m-p/1185250#M126987</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Iam doing Picking using the BAPI WS_DELIVERY_UPDATE.&lt;/P&gt;&lt;P&gt;Iam just passing the following fields .&lt;/P&gt;&lt;P&gt; vbkok_wa =  &amp;lt;  Delivery no in  structure&amp;gt;&lt;/P&gt;&lt;P&gt; synchron = 'X'&lt;/P&gt;&lt;P&gt;delivery  = 'Del #'&lt;/P&gt;&lt;P&gt;update_picking = 'X'&lt;/P&gt;&lt;P&gt;nicht_sperren  = 'X'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Tables &lt;/P&gt;&lt;P&gt;   vbpok_tab  = ....&lt;/P&gt;&lt;P&gt;     prot   = ....&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;My delivery is not being picked properly using this BAPI. Am i missing any necessary parameters.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance,&lt;/P&gt;&lt;P&gt;Ajai&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jan 2006 04:46:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/picking-using-ws-delivery-update/m-p/1185250#M126987</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-24T04:46:18Z</dc:date>
    </item>
    <item>
      <title>Re: PICKING Using WS_DELIVERY_UPDATE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/picking-using-ws-delivery-update/m-p/1185251#M126988</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;  CALL FUNCTION 'WS_DELIVERY_UPDATE'
    EXPORTING
      VBKOK_WA           = L_VBKOK
      SYNCHRON           = 'X'
      NO_MESSAGES_UPDATE = ' '
      COMMIT             = 'X'
      DELIVERY           = L_VBKOK-VBELN_VL
      NICHT_SPERREN      = 'X'
    TABLES
      VBPOK_TAB          = L_VBPOK.

  COMMIT WORK.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;i think you did correctly, just check it in debug mode,&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;are L_VBKOK and L_VBPOK having any values.&lt;/P&gt;&lt;P&gt;vbkok should have delivery, &lt;/P&gt;&lt;P&gt;vbpok should have delivery , item.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;vijay&lt;/P&gt;&lt;P&gt;check&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Vijay Babu Dudla&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jan 2006 04:57:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/picking-using-ws-delivery-update/m-p/1185251#M126988</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-24T04:57:58Z</dc:date>
    </item>
    <item>
      <title>Re: PICKING Using WS_DELIVERY_UPDATE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/picking-using-ws-delivery-update/m-p/1185252#M126989</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have similar issue, I'm looking to use this function to update serial numbers of line numbers and then PGI the outbound customer delivery. The deliveries are already picked/packed via an IDoc application. My code looks as follows but it's not updating the serial numbers, any advice?&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_wa&lt;/P&gt;&lt;P&gt;                delivery            = ls_vbkok_wa-vbeln&lt;/P&gt;&lt;P&gt;                commit                    = 'X'&lt;/P&gt;&lt;P&gt;                it_sernr_update           = 'X'&lt;/P&gt;&lt;P&gt;           IMPORTING&lt;/P&gt;&lt;P&gt;                ef_error_any_0            = l_any_update&lt;/P&gt;&lt;P&gt;                ef_error_sernr_update     = l_sernr_update&lt;/P&gt;&lt;P&gt;                ef_error_in_goods_issue_0 = l_gi_update&lt;/P&gt;&lt;P&gt;                ef_error_in_final_check_0 = l_fc_update&lt;/P&gt;&lt;P&gt;           TABLES&lt;/P&gt;&lt;P&gt;                it_verpo_sernr            = it_serials&lt;/P&gt;&lt;P&gt;                prot                      = it_prott&lt;/P&gt;&lt;P&gt;           EXCEPTIONS&lt;/P&gt;&lt;P&gt;                error_message             = 1&lt;/P&gt;&lt;P&gt;                OTHERS                    = 2.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Jul 2006 16:14:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/picking-using-ws-delivery-update/m-p/1185252#M126989</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-25T16:14:40Z</dc:date>
    </item>
  </channel>
</rss>

