<?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: How to post goods issues using WS_DELIVERY_UPDATE_2 in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-post-goods-issues-using-ws-delivery-update-2/m-p/1776296#M334876</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I used FM CSO_P_DLVRY_GOODS_ISSUE_CREATE instead to specifically PGI.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 06 Dec 2006 17:28:26 GMT</pubDate>
    <dc:creator>vyende</dc:creator>
    <dc:date>2006-12-06T17:28:26Z</dc:date>
    <item>
      <title>How to post goods issues using WS_DELIVERY_UPDATE_2</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-post-goods-issues-using-ws-delivery-update-2/m-p/1776295#M334875</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I will appreciate if any one could help me in this matter. I am automating the process of updating deliveries , confirming orders and posting good issues. I am using the fm WS_DELIVERY_UPDATE_2 successfuly to do the first two task, but it wont post the good issues. Can any one help. Thanks a lot.&lt;/P&gt;&lt;P&gt;Teo&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Dec 2006 15:03:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-post-goods-issues-using-ws-delivery-update-2/m-p/1776295#M334875</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-06T15:03:14Z</dc:date>
    </item>
    <item>
      <title>Re: How to post goods issues using WS_DELIVERY_UPDATE_2</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-post-goods-issues-using-ws-delivery-update-2/m-p/1776296#M334876</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I used FM CSO_P_DLVRY_GOODS_ISSUE_CREATE instead to specifically PGI.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Dec 2006 17:28:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-post-goods-issues-using-ws-delivery-update-2/m-p/1776296#M334876</guid>
      <dc:creator>vyende</dc:creator>
      <dc:date>2006-12-06T17:28:26Z</dc:date>
    </item>
    <item>
      <title>Re: How to post goods issues using WS_DELIVERY_UPDATE_2</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-post-goods-issues-using-ws-delivery-update-2/m-p/1776297#M334877</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;use the FM WS_DELIVERY_UPDATE to post the goods issue..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check this code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS: p_vbeln LIKE likp-vbeln.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: vbkok_wa TYPE vbkok.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;vbkok_wa-vbeln_vl = p_vbeln.&lt;/P&gt;&lt;P&gt;vbkok_wa-wabuc = 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: v_error.&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                  = vbkok_wa&lt;/P&gt;&lt;P&gt;          delivery                  = t_created-document_numb&lt;/P&gt;&lt;P&gt;     IMPORTING&lt;/P&gt;&lt;P&gt;          ef_error_in_goods_issue_0 = v_error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;COMMIT WORK.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Naren&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Dec 2006 17:30:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-post-goods-issues-using-ws-delivery-update-2/m-p/1776297#M334877</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-06T17:30:14Z</dc:date>
    </item>
    <item>
      <title>Re: How to post goods issues using WS_DELIVERY_UPDATE_2</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-post-goods-issues-using-ws-delivery-update-2/m-p/1776298#M334878</link>
      <description>&lt;P&gt;It was not working for either, then I added vbkok_wa-wabuc = 'X'. and it has posted the Goods issue.&lt;/P&gt;&lt;P&gt;thank you for the sample coding.&lt;/P&gt;</description>
      <pubDate>Thu, 31 Dec 2020 13:44:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-post-goods-issues-using-ws-delivery-update-2/m-p/1776298#M334878</guid>
      <dc:creator>petra_just</dc:creator>
      <dc:date>2020-12-31T13:44:40Z</dc:date>
    </item>
    <item>
      <title>Re: How to post goods issues using WS_DELIVERY_UPDATE_2</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-post-goods-issues-using-ws-delivery-update-2/m-p/1776299#M334879</link>
      <description>&lt;P&gt;Hi I had similar requirement but the actual goods issue date was not posted and its blank.&lt;/P&gt;&lt;P&gt;please help to resolve the issue&lt;/P&gt;</description>
      <pubDate>Wed, 15 Sep 2021 18:16:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-post-goods-issues-using-ws-delivery-update-2/m-p/1776299#M334879</guid>
      <dc:creator>former_member752456</dc:creator>
      <dc:date>2021-09-15T18:16:16Z</dc:date>
    </item>
    <item>
      <title>Re: How to post goods issues using WS_DELIVERY_UPDATE_2</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-post-goods-issues-using-ws-delivery-update-2/m-p/1776300#M334880</link>
      <description>&lt;P&gt;I've used the below code for Actual GI Date. You can use it:&lt;/P&gt;&lt;P&gt;

L_VBKOK-VBTYP_VL = 'J'.&lt;BR /&gt;
L_VBKOK-VBELN = L_VBKOK-VBELN_VL = LF_VBELN. "DELIVERY NUMBER&lt;BR /&gt;L_VBKOK-WADAT_IST = WADAT. "Actual Goods Movement Date Imported by USER&lt;BR /&gt;
&lt;BR /&gt;
        WA_VERKO-OBJECT = '01'.&lt;BR /&gt;
        WA_VERKO-OBJKEY = LF_VBELN.&lt;BR /&gt;
&lt;BR /&gt;
        APPEND: WA_VERKO TO L_VERKO.&lt;BR /&gt;
&lt;BR /&gt;
        REFRESH I_LIPS.&lt;BR /&gt;
&lt;BR /&gt;
        SELECT * FROM LIPS INTO TABLE I_LIPS WHERE VBELN = LF_VBELN. "DELIVERY NUMBER&lt;BR /&gt;
&lt;BR /&gt;
        CLEAR I_VBPOK.&lt;BR /&gt;
&lt;BR /&gt;
        LOOP AT I_LIPS INTO WA_LIPS.&lt;BR /&gt;
          WA_VBPOK-VBELN_VL = WA_LIPS-VBELN."Delivery&lt;BR /&gt;
          WA_VBPOK-POSNR_VL = WA_LIPS-POSNR."Delivery Item&lt;BR /&gt;
          WA_VBPOK-POSNN = WA_LIPS-POSNR."Delivery Item&lt;BR /&gt;
          WA_VBPOK-VBELN = WA_LIPS-VBELN."Pick Order&lt;BR /&gt;
          WA_VBPOK-VBTYP_N = 'Q'.&lt;BR /&gt;
          WA_VBPOK-PIKMG = WA_LIPS-LFIMG.&lt;BR /&gt;
          WA_VBPOK-MEINS = WA_LIPS-MEINS.&lt;BR /&gt;
          WA_VBPOK-CHARG = WA_LIPS-CHARG.&lt;BR /&gt;
          WA_VBPOK-MATNR = WA_LIPS-MATNR.&lt;BR /&gt;
          WA_VBPOK-WERKS = WA_LIPS-WERKS.&lt;BR /&gt;
          APPEND WA_VBPOK TO I_VBPOK.&lt;BR /&gt;
        ENDLOOP.
&lt;/P&gt;&lt;P&gt;

CALL FUNCTION 'WS_DELIVERY_UPDATE_2'&lt;BR /&gt;
          EXPORTING&lt;BR /&gt;
            VBKOK_WA             = L_VBKOK&lt;BR /&gt;
            SYNCHRON             = ''&lt;BR /&gt;
            NO_MESSAGES_UPDATE_1 = ' '&lt;BR /&gt;
            COMMIT               = 'X'&lt;BR /&gt;
            DELIVERY             = LF_VBELN             "DELIVERY NUMBER&lt;BR /&gt;
            UPDATE_PICKING       = 'X'&lt;BR /&gt;
            NICHT_SPERREN_1      = 'X'&lt;BR /&gt;
          TABLES&lt;BR /&gt;
            VBPOK_TAB            = I_VBPOK&lt;BR /&gt;
            VERKO_TAB            = L_VERKO&lt;BR /&gt;
            PROT                 = L_PROT.
&lt;/P&gt;</description>
      <pubDate>Sun, 04 Dec 2022 11:32:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-post-goods-issues-using-ws-delivery-update-2/m-p/1776300#M334880</guid>
      <dc:creator>ashkan_s_b84</dc:creator>
      <dc:date>2022-12-04T11:32:34Z</dc:date>
    </item>
  </channel>
</rss>

