<?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: Delivery Update: Handling unit : BAPI? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/delivery-update-handling-unit-bapi/m-p/4498251#M1064378</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Does anyone found a FM to update this field ?  I have to update it in Batch.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 24 Nov 2009 18:59:51 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-11-24T18:59:51Z</dc:date>
    <item>
      <title>Delivery Update: Handling unit : BAPI?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/delivery-update-handling-unit-bapi/m-p/4498250#M1064377</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Could not make BAPI_HU_CHANGE_HEADER to update the handling unit header field "INHALT - Description of Handling Unit Content". Also referred to SAP note  581282.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It is required to update the handling unit of the delivery using remote FM. So BDC is not possible. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can someone share code of how to acheive this using WS_DELIVERY_UPDATE or other FM/BAPI? Thanks in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Sep 2008 23:01:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/delivery-update-handling-unit-bapi/m-p/4498250#M1064377</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-23T23:01:45Z</dc:date>
    </item>
    <item>
      <title>Re: Delivery Update: Handling unit : BAPI?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/delivery-update-handling-unit-bapi/m-p/4498251#M1064378</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Does anyone found a FM to update this field ?  I have to update it in Batch.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Nov 2009 18:59:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/delivery-update-handling-unit-bapi/m-p/4498251#M1064378</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-11-24T18:59:51Z</dc:date>
    </item>
    <item>
      <title>Re: Delivery Update: Handling unit : BAPI?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/delivery-update-handling-unit-bapi/m-p/4498252#M1064379</link>
      <description>&lt;P&gt;Yes we have to call the 3 FMs then only we update reequired fields..&lt;/P&gt;&lt;P&gt;BAPI_HU_CHANGE_HEADER is not working getting error if not 06 -VPOBJ&lt;/P&gt;&lt;P&gt;Please find the below piece of code:&lt;/P&gt; DATA:ef_rcode         LIKE  sy-subrc,&lt;BR /&gt;      et_vekp          TYPE  vsep_t_vekp,&lt;BR /&gt;      et_vepo          TYPE  vsep_t_vepo,&lt;BR /&gt;      et_vevw          TYPE  vsep_t_vevw,&lt;BR /&gt;      et_highest_level TYPE  vsep_t_venum,&lt;BR /&gt;      et_messages      TYPE  huitem_messages_t.&lt;BR /&gt; DATA : is_flags TYPE v51p_select_flags.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt; DATA:lt_hut TYPE hum_exidv_t,&lt;BR /&gt;      ls_hut LIKE LINE OF lt_hut.&lt;BR /&gt; ls_hut-exidv = '00000000000200000017'.&lt;BR /&gt; APPEND ls_hut TO lt_hut.&lt;BR /&gt;&lt;BR /&gt; CALL FUNCTION 'V51P_FILL_GT'&lt;BR /&gt;   EXPORTING&lt;BR /&gt;     if_langu         = sy-langu&lt;BR /&gt;     it_hus           = lt_hut&lt;BR /&gt;   IMPORTING&lt;BR /&gt;*     ef_rcode         = ef_rcode&lt;BR /&gt;*     et_vekp          = et_vekp&lt;BR /&gt;*     et_vepo          = et_vepo&lt;BR /&gt;*     et_vevw          = et_vevw&lt;BR /&gt;*     et_highest_level = et_highest_level&lt;BR /&gt;     et_messages      = et_messages&lt;BR /&gt;   EXCEPTIONS&lt;BR /&gt;     hu_locked        = 1&lt;BR /&gt;     no_hu_found      = 2&lt;BR /&gt;     fatal_error      = 3&lt;BR /&gt;     OTHERS           = 4.&lt;BR /&gt; IF sy-subrc = 0.&lt;BR /&gt;   BREAK-POINT.&lt;BR /&gt;   DATA: it_new_values TYPE  hum_update_header_t,&lt;BR /&gt;         wa_new_values LIKE LINE OF it_new_values.&lt;BR /&gt;   wa_new_values-hdl_unit_exid = ls_hut-exidv .&lt;BR /&gt;&lt;BR /&gt;   wa_new_values-field_name = 'INHALT'.&lt;BR /&gt;&lt;BR /&gt;   wa_new_values-field_value = 'NEW Values to Pupulate'.&lt;BR /&gt;&lt;BR /&gt;   APPEND wa_new_values TO it_new_values.&lt;BR /&gt;&lt;BR /&gt;   CALL FUNCTION 'HU_HEADER_UPDATE'&lt;BR /&gt;     EXPORTING&lt;BR /&gt;       it_new_values = it_new_values&lt;BR /&gt;     IMPORTING&lt;BR /&gt;       et_messages   = et_messages&lt;BR /&gt;     EXCEPTIONS&lt;BR /&gt;       not_possible  = 1&lt;BR /&gt;       OTHERS        = 2.&lt;BR /&gt;&lt;BR /&gt;   CALL FUNCTION 'HU_PACKING_UPDATE'&lt;BR /&gt;     EXPORTING&lt;BR /&gt;&lt;P&gt;       if_synchron = 'X'.&lt;/P&gt;</description>
      <pubDate>Thu, 21 Sep 2023 15:15:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/delivery-update-handling-unit-bapi/m-p/4498252#M1064379</guid>
      <dc:creator>rattaiah88</dc:creator>
      <dc:date>2023-09-21T15:15:13Z</dc:date>
    </item>
  </channel>
</rss>

