WS_DELIVERY_UPDATE

Hi,
I need to change the inbound delivery by packing(VL32N) it with the handling unit and save the delivery .
will the ws_delivery_update work in this scenario?if yes, pls advice the relevant parameters that needs to be passed as its not updating the transaction VL32N.
Regards
Gunjan

Hi,
I need to change the inbound delivery by packing(VL32N) it with the handling unit and save the delivery .
will the ws_delivery_update work in this scenario?if yes, pls advice the relevant parameters that needs to be passed as its not updating the transaction VL32N.
Regards
Gunjan

Similar Messages

  • Relation between RV_DELIVERY_CREATE and WS_DELIVERY_UPDATE

    Hi!
    RV_DELIVERY_CREATE creates a delivery... how to pos goods issue (PGI)
    I know that I need to pass Delivery nr to WS_DELIVERY_UPDATE, but how to retrieve this nr? Is it a result of RV_DELIVERY_CREATE?
    CALL FUNCTION 'RV_DELIVERY_CREATE'
          EXPORTING
            SELEKTIONSDATUM       = SY-DATUM
            VBSK_I                = WA_VBSK
            IF_SYNCHRON           = 'X'
            IF_NO_COMMIT          = ''
          IMPORTING
            VBSK_E                = WA_VBSKE
          TABLES
            LVBAK                 = t_vbak
            LVBAP                 = t_vbap
            LVBEP                 = t_vbep
            LVBFA                 = t_vbfa
            LVBFS                 = t_vbfs
            LVBKD                 = t_vbkd
            LVBLS                 = t_vbls
            LVBPA                 = t_vbpa
            LVBUK                 = t_vbuk
            LVBUP                 = t_vbup.
        IF SY-SUBRC <> 0.
          ROLLBACK WORK.
        ELSE.
          COMMIT WORK.
        ENDIF.
    and
        CALL FUNCTION 'WS_DELIVERY_UPDATE'
          EXPORTING
            VBKOK_WA                 = I_VBKOK
            SYNCHRON                 = 'X'
            NO_MESSAGES_UPDATE       = ' '
            UPDATE_PICKING           = 'X'
            COMMIT                   = ' '
            DELIVERY                 =
            NICHT_SPERREN            = 'X'
            IF_ERROR_MESSAGES_SEND_0 = 'X'
          TABLES
            PROT                     = I_PROTT
          EXCEPTIONS
            ERROR_MESSAGE            = 1
            OTHERS                   = 2.
        IF SY-SUBRC <> 0.
          ROLLBACK WORK.
        ELSE.
          COMMIT WORK.
        ENDIF.
    by the way, what table to check if WS_DELIVERY_UPDATE processed succesfully?
    Will reward,
    Mindaugas

    First thing : these function modules are not yet released by SAP. You can check the release status in their attributes screen. Which means, SAP may modify these function modules in future releases completly. so - take a note on that.
    next, to check if the delivery is PGI'd or not, you can look into table LIKP and field WADAT_IST which stores the actual PGI date (this field gets updated during the PGI process).
    Award if it helps
    Krishna

  • Packing using WS_DELIVERY_UPDATE Error

    Hi Experts,
    I've been browsing the forums, and, despite the many examples available I can't put this FM(WS_DELIVERY_UPDATE) to work.
    I want to do Packing of outbound Delivery using VL02N.I am using below Code ,But it's not Working.
    it's not giving any  error (Sy-subrc 0 & i_prot is empty )but it's not create any HU or Updating Delivery Document no.I also tried some BAPI for Create HU but still not woring.
    ->BAPI_HU_CREATE
    ->BAPI_HU_PACK
    DATA:
    wa_vbkok TYPE vbkok,
    wa_hus TYPE TABLE OF vekpvb,
    wa_pack TYPE REPACK_HU_WM OCCURS 0 WITH HEADER LINE,
    i_prot LIKE STANDARD TABLE OF prott WITH HEADER LINE.
    data : VERKO type VERKO occurs 0 with header line.
    wa_vbkok-vbeln = pvbeln.
    wa_vbkok-vbeln_vl = pvbeln.
    **wa_pack-desthu = exidv.
    wa_pack-quantity = pqty.
    wa_pack-meins = pmeins.
    wa_pack-matnr = pmatnr.
    **wa_pack-charg = pcharg.
    wa_pack-werks = pwerks.
    wa_pack-lgort = plgort.
    wa_pack-vbeln_vl = pvbeln.
    wa_pack-posnr_vl = pposnr.
    wa_pack-object = '01'.
    wa_pack-objkey = pvbeln.
    APPEND wa_pack.
    CALL FUNCTION 'WS_DELIVERY_UPDATE'
    EXPORTING
    VBKOK_WA = wa_vbkok
    SYNCHRON = 'X'
    COMMIT = 'X'
    DELIVERY = wa_vbkok-vbeln
    TABLES
    prot = i_prot
    VERKO_TAB = VERKO
    IT_PACKING = wa_pack
    ET_CREATED_HUS = wa_hus
    EXCEPTIONS
    ERROR_MESSAGE = 1
    OTHERS = 2.
    COMMIT WORK AND WAIT.
    Thanks,
    Nehal.

    The BAPIs for HU create/change work when HU management is switched on in your system. I had a similar requirement where packing was required without HU management. I got it working using Fm -BAPI_OUTB_DELIVERY_CONFIRM_DEC. Below is relevant code.
      ls_headerdata-deliv_numb = lv_delivery.
      ls_control-deliv_numb = lv_delivery.
        ls_bapidlvhdunhdr-hdl_unit_exid    = <fs_hdunhdr>-hdl_unit_exid.
        ls_bapidlvhdunhdr-hdl_unit_exid_ty = 'F'.                        "External identifier
        ls_bapidlvhdunhdr-plant            = <fs_hdunhdr>-plant.
        ls_bapidlvhdunhdr-ship_mat         = <fs_hdunhdr>-ship_mat.
        ls_bapidlvhdunhdr-sh_mat_typ       = <fs_hdunhdr>-sh_mat_typ.
        append ls_bapidlvhdunhdr to lt_hdunhdr.
        ls_bapidlvhdunitm-hdl_unit_exid_into  = <fs_hdunitm>-hdl_unit_exid_into.
        ls_bapidlvhdunitm-batch               = <fs_hdunitm>-batch.
        ls_bapidlvhdunitm-pack_qty            = <fs_hdunitm>-pack_qty_base.
        ls_bapidlvhdunitm-deliv_item          = <fs_hdunitm>-deliv_item.
        ls_bapidlvhdunitm-deliv_numb          = iv_delivery.
        append ls_bapidlvhdunitm to lt_hdunitm.
        call function 'BAPI_OUTB_DELIVERY_CONFIRM_DEC'
          exporting
            header_data          = ls_headerdata
            header_control       = ls_control
            delivery             = lv_delivery
          tables
            item_data            = lt_bapiobdlvitemcon
            item_control         = lt_bapiobdlvitemctrlcon
            item_data_spl        = lt_bapiobdlvitemdataspl
            handling_unit_header = lt_hdunhdr
            handling_unit_item   = lt_hdunitm
            return               = lt_return.
    I hope it helps.

  • Packing in WS_DELIVERY_UPDATE

    I am updating the packing for an existing delivery using WS_DELIVERY_UPDATE.
    The HU's are being updated with no problem, but the the Packing Status is not being updated (VBUK-PKSTK).

    Sorry I forgot a very imortant thing in the earlier post which might be your problem.
    Comment and executable statements prior to the FM call:
    *-- WARNING - Save the no_commit and restore after FM run.
         dg_no_commit = v50agl-no_commit.
    If you execute the FM within the userexit with commit = ' ' then the userexit's no_commit value is 'X' and it will not complete the changes like status updating etc.   After the FM run I have the statement:
    v50agl-no_commit = dg_no_commit. 
    That restores the value the original userexit had. 
    Jim Shupe, Eastman Chemical Co.

  • Bapi for Picking, Packing and Post goods issue (WS_DELIVERY_UPDATE)

    Hi,
    I have a requirement to update the outbound delivery. In that, I need to update the picking, Packing details and have to complete the PGI for the particular delivery. I got the suitable function module for the same is : WS_DELIVERY_UPDATE.
    Can anyone tell me what parameters should I need to pass to perform my above requirements.
    Thanks in advance.
    Regards
    Ramesh mavilla.

    I can Update picking and PGI using the above BAPI. But I am unable to create the Handling Units properly with the above mentioned BAPI befor PGI.  Can any one help me ASAP.
    Thanks
    Ramesh mavilla.

  • Goods Receipt for Inbound HU - WS_DELIVERY_UPDATE

    Hi All,
    I have a requirement to automate transaction VL60p to do GR for
    an inbound delivery with HU.
    Since this is a SAP enjoy transaction I can't use BDC and there doesn't seem to
    be a BAPI for this.
    I plan to use WS_DELIVERY_UPDATE, filling tables VERKO and VERPO.
    Is my approach correct?
    If not can you point me in the right direction?
    Thanks,
    Miguel

    Anyone?
    I've also added IT_OBJECTS as one of the tables I'm passing.
    Its of type PGR_OBJECTS which is described as Objects for Partial Goods Receipt.
    However Posting is still not happening.
    Thanks,
    Miguel

  • Reg : PGI delivery using ws_delivery_update

    Hi All,
    I want to PGI delivery using function module ws_delivery_update .
    What are the mandatory fields to be supplied and in what way to PGI delivery successfully using the above FM
    Or is there any other function module specifically suited to PGI delivery
    urgent help needed.
    if any sample code is there , most welcome.
    Thanks in advance.
    Regards
    Jawahar

    Jawahar,
    it is very easy to go with this code i think rather than going with fm.
    DATA:    I_VBELN LIKE LIKP-VBELN,            
             I_VBKOK LIKE VBKOK,            
             I_PROTT LIKE PROTT OCCURS 0 WITH HEADER LINE.   
    L_VBKOK-VBELN_VL = L_VBELN.   <- Delivery number  
    L_VBKOK-WABUC    = 'X'.       <- Automatic PGI           * Perform Pick and PGICALL FUNCTION 'WS_DELIVERY_UPDATE'
               EXPORTING
                VBKOK_WA           = I_VBKOK                 
               SYNCHRON                 = 'X'                
               NO_MESSAGES_UPDATE       = ' '                
               UPDATE_PICKING           = 'X'                
               COMMIT             = ' '                    
             DELIVERY      = I_VBELN                         
             NICHT_SPERREN    = 'X'    
       IF_ERROR_MESSAGES_SEND_0 = 'X'         TABLES            
      PROT     = I_PROTT     
    EXCEPTIONS    
            ERROR_MESSAGE      = 1               
            OTHERS    = 2. 
    IF SY-SUBRC <> 0.
    Or I_PROTT has type E errors in it 
      ROLLBACK WORK.
    ELSE. 
      COMMIT WORK AND WAIT.
    ENDIF.
    othere wise
    For PGI you can use SD_DELIVERY_UPDATE_PICKING_1
    Regards,
    Naveen

  • HU Creation using WS_DELIVERY_UPDATE

    Hi All,
    I am using FM WS_DELIVERY_UPDATE to create HU and update the inbound delivery. This works good if my delivery has one line item.
    But when my delivery has more than one line item I want to create those many number of HUs for that delivery. But when i try this it still creates one HU even though I am passing multiple entries (depending on number of line items in delivery) in table VERKO_TAB
    For example: Delivery 80001234 has 2 line items. So I am appending two entries with same packaging material in VERKO_TAB.
    Since this delivery has 2 line items I am expecting 2 HUs created for this delivery.
    My question is can we create multiple HUs for this delivery? If so, what parameter I should pass to create multiple HUs.
    I do not want to loop through the line items of the delivery and call up this FM to create one HU at a time since it is not efficient. I want to call this FM only once per delivery and create those many HUs depending on the number of line items in delivery.
    Any idea in this regard would be greatly appreciated.
    Thanks,
    sandeep

    Hi Keshav
    The FM mentioned by you creates one HU at a time. Also it can be used to pack multiple items into the created HU.
    But my requirement is like this.
    If a delivery has 10 delivery line items, we should create 10 HUs for that delivery. I am not concerned about the packing at this moment as it can be achived easily using WS_DELIVERY_UPDATE.
    Any ides?
    Thanks,
    Sandeep

  • HU_PACKING_AND_UNPACKING not working after WS_DELIVERY_UPDATE

    Hello,
    I have noticed strange behaviour of WS_DELIVERY_UPDATE ... please take a look at that:
    1. I am packing items to delivery using HU_PACKING_AND_UNPACKING (and HU_POST) ... items are added/updated to vepo and are visible in VL33n.
    2. After all the packing is done I am calling WS_DELIVERY_UPDATE and relevant information are updated in VL33n.
    3. When (wihout closing my program) I pack another materials (or add new quantities to existing) using HU_PACKING_AND_UNPACKING (and HU_POST) ... data is not updated in vepo and VL33N ...
    4. After closing the program and starting it again I can perform step 3. without problem, but again only until WS_DELIVERY_UPDATE is called for the first time.
    The idea of the program is to pack different materials to different HU without restarting the program after each WS_DELIVERY_UPDATE ... I guess that it sets some global variables or other stuff I cannot find. Have you faced sth like that? Any ideas how to solve it? Maybe there is an easy way to "clear" user buffer from abap program? Or maybe there is FM that "resets HU global variables" to initial status ...
    Looking forward to any tips ...
    FS

    I have tried HU_PACKING_REFRESH ... but it is not working as supposed

  • Problem in FM:WS_DELIVERY_UPDATE to change picked qty and delivery qty

    Dear friends.
    i am trying to chande picked and del qty's through above fm.
    i am getting an error message like this:
    (Required field in interface to delivery update missing 0080000155 000010
    VBELN 000000            Message no. VL280 )
    i am pasing all requires parameters.
    please help me if any thing is missed..........
    here i am giving my code:
    DATA:i_vbeln TYPE vbeln,
         i_posnr TYPE posnr,
         i_new_delqty TYPE lips-lfimg,
         wa_lips LIKE lips OCCURS 0 WITH HEADER LINE,
         wa_likp TYPE likp.
    i_vbeln = '0080000155'.
    i_posnr = '000010'.
    i_new_delqty = '30'.
    SELECT SINGLE * INTO wa_likp
                    FROM likp
                    WHERE vbeln = i_vbeln.
    SELECT SINGLE * INTO wa_lips
                    FROM lips
                    WHERE vbeln = i_vbeln
                    AND posnr = i_posnr.
    DATA:gs_vbkok LIKE vbkok,
          gt_vbpok  LIKE vbpok OCCURS 0 WITH HEADER LINE,
          gt_prott LIKE prott OCCURS 0 WITH HEADER LINE,
          gs_prott LIKE prott.
    DATA:xfeld1 TYPE xfeld,
         xfeld2 TYPE xfeld,
         xfeld3 TYPE xfeld,
         xfeld4 TYPE xfeld,
         xfeld5 TYPE xfeld,
         xfeld6 TYPE xfeld,
         xfeld7 TYPE xfeld,
         xfeld8 TYPE xfeld.
    gs_vbkok-vbeln_vl = i_vbeln.
    gs_vbkok-vbeln = i_vbeln.
    gs_vbkok-brgew = wa_lips-brgew.
    gs_vbkok-kzbrg = 'X'.
    gs_vbkok-kzntg = 'X'.
    gs_vbkok-vbtyp_vl   = wa_likp-vbtyp.
    gs_vbkok-ntgew = wa_likp-ntgew.
    gs_vbkok-gewei = wa_likp-gewei.
    gs_vbkok-lgnum = wa_likp-lgnum.
    gs_vbkok-kodat =   wa_likp-kodat.
    gs_vbkok-KOMUE   = 'X'.
    *gs_vbkok-   = WA_LIKP-
    *gs_vbkok-   = WA_LIKP-
    *gs_vbkok-    = WA_LIKP-
    gt_vbpok-vbeln_vl = i_vbeln.
    gt_vbpok-posnr_vl = i_posnr.
    gt_vbpok-matnr = wa_lips-matnr.
    gt_vbpok-charg =  wa_lips-charg.
    gt_vbpok-lianp = 'X'.
    gt_vbpok-kzntg = 'X'.
    gt_vbpok-kzbrg = 'X'.
    gt_vbpok-lfimg = i_new_delqty.
    gt_vbpok-lgmng = i_new_delqty.
    gt_vbpok-umvkz =  wa_lips-umvkz.
    gt_vbpok-umvkn = wa_lips-umvkn.
    gt_vbpok-TAQUI = 'X'.
    gt_vbpok-brgew = wa_lips-brgew.
    gt_vbpok-ntgew =  wa_lips-ntgew.
    gt_vbpok-gewei =  wa_lips-gewei.
    gt_vbpok-vrkme =  wa_lips-vrkme.
    gt_vbpok-meins =  wa_lips-meins.
    gt_vbpok-VOLUM  =  wa_lips-VOLUM.
    gt_vbpok-VOLEH  =  wa_lips-VOLEH.
    gt_vbpok-vbeln = wa_lips-KDAUF.
    gt_vbpok-posnn =  wa_lips-KDPOS.
    *gt_vbpok-vbeln = wa_lips-vbelv.
    *gt_vbpok-posnn =  wa_lips-posnv.
    gt_vbpok-umrev = wa_lips-umrev.
    gt_vbpok-vbtyp_n = wa_lips-vbtyv.
    gt_vbpok-werks =  wa_lips-werks.
    gt_vbpok-pstyv = wa_lips-pstyv.
    gt_vbpok-ormng = '15'.
    gt_vbpok-ndifm = '15'.
    gt_vbpok-orpos = i_posnr.
    gt_vbpok-pikmg = '1'.
    gt_vbpok-SPE_DLV_QTY_FROM = i_new_delqty.
    APPEND gt_vbpok ."TO gt_vbkok.
    gt_prott-vbeln = i_vbeln.
    gt_prott-posnr = i_posnr.
    gt_prott-matnr = wa_lips-matnr.
    gt_prott-vrkme =  wa_lips-vrkme.
    gt_prott-lfimg = i_new_delqty.
    gt_prott-vrkme = wa_lips-vrkme.
    APPEND gt_prott." TO gt_prott.
    BREAK-POINT.
    CALL FUNCTION 'WS_DELIVERY_UPDATE'
      EXPORTING
        vbkok_wa                           = gs_vbkok
       synchron                           = 'X'
       no_messages_update                 = ' '
       commit                             = 'X'
        delivery                           = i_vbeln
       update_picking                     = 'X'
      nicht_sperren                      = ' '
      if_confirm_central                 = 'X'
      if_wmpp                            = 'X'
      if_get_delivery_buffered           = 'X'
      if_no_generic_system_service       = 'X'
       if_database_update                 = '3'
      if_no_init                         = ' '
      if_no_read                         = ' '
       if_error_messages_send_0           = 'X'
      if_no_buffer_refresh               = 'X'
      it_partner_update                  = ' '
      it_sernr_update                    = ' '
      if_no_remote_chg                   = ' '
      if_no_mes_upd_pack                 = ' '
      if_late_delivery_upd               = ' '
    IMPORTING
       ef_error_any_0                     = xfeld1
       ef_error_in_item_deletion_0        = xfeld2
       ef_error_in_pod_update_0           = xfeld3
       ef_error_in_interface_0            = xfeld4
       ef_error_in_goods_issue_0          = xfeld5
       ef_error_in_final_check_0          = xfeld6
       ef_error_partner_update            = xfeld7
       ef_error_sernr_update              = xfeld8
    TABLES
       vbpok_tab                          = gt_vbpok
       prot                               = gt_prott
      VERKO_TAB                          =
      VERPO_TAB                          =
      VBSUPCON_TAB                       =
      IT_VERPO_SERNR                     =
      IT_PACKING                         =
      IT_PACKING_SERNR                   =
      IT_REPACK                          =
      IT_HANDLING_UNITS                  =
      IT_OBJECTS                         =
      ET_CREATED_HUS                     =
      TVPOD_TAB                          =
      IT_TMSTMP                          =
      IT_BAPIADDR1                       =
      SERNR_TAB                          =
      IT_HURES                           =

    Hi,
    Thanks for the repl
    i also passed..
    vbeln_vl,
    posnr_vl,
    vbeln,
    posnn
    Still not working...any other info to pass to FM
    Regards,
    Raj

  • WS_DELIVERY_UPDATE doesn't create batch split in IBD

    Hello,
    I am using the FM WS_DELIVERY_UPDATE to update the Inbound delivery and post GR against it. The problem I am facing is that when there is a batch split for a line item, the same is not being reflected in the IBD. The GR happens successfully but the only problem is batch split of items not happening.
    Can anyone help me with what parameters I might be missing?
    Below is the call that i make to the FM
      CALL FUNCTION 'WS_DELIVERY_UPDATE'
        EXPORTING
          vbkok_wa                 = lv_vbkok_wa
          delivery                 = lv_vbeln
          if_error_messages_send_0 = 'X'
        TABLES
          prot                     = lt_prot
          vbpok_tab                = lt_vbpok.
    regards,
    Priyank

    This Might help you
    Re: Delete handling unit

  • Dump in WS_DELIVERY_UPDATE outbound delivery

    HI
    Need help in using WS_DELIVERY_UPDATE - I have coded in output type shipment.
    When i do MIGO with respect  to STO ,outp type will be triggered and handling units should assign to outbound delivery .
    but it gives shor dump .
    00 671: ABAP/4 processor: ROLLBACK_IN_POSTING
    Update was terminated
    using below parameters :
    WS_DELIVERY_UPDATE
    VBKOK_WA-VBELN_VL = 183000150
    VBKOK_WA-WABUC = 'X'
    DELIVERY = 183000150
    UPDATE_PICKING = 'X'
    NICHT_SPERREN  = 'X'
    IT_HANDLING_UNITS-TOP_HU_EXTERNAL = 340469890000001222
    and delivery no is shown while doing migo but due to termination rollback is happening.
    please help in doing this ,i have search in sdn but no suitable post.

    Hi Garun,
    You can try like this....
    tb_VBKOK-VBELN_VL = vbeln
    tb_VBPOK-VBELN_VL =  vbeln
    tb_VBPOK-POSNR_VL =  posnr
    APPEND tb_VBPOK.
    CALL FUNCTION 'WS_DELIVERY_UPDATE'
    EXPORTING
    VBKOK_WA = tb_VBKOK
    SYNCHRON = ' '
    NO_MESSAGES_UPDATE = ' '
    COMMIT = ' '
    DELIVERY = tb_vbkok-VBELN_VL
    NICHT_SPERREN = 'X'
    TABLES
    VBPOK_TAB = tb_VBPOK.
    COMMIT WORK
    regards,
    Lokesh

  • Problem in using WS_DELIVERY_UPDATE(updating the deliveries)

    Hi Gurus,
    Iam facing problem  i updating the deliveries using the fm WS_DELIVERY_UPDATE..This is the code..
    MOVE : lwa_mchb-matnr   TO lwa_vbpok-matnr,
                       lwa_mchb-charg   TO lwa_vbpok-charg,
                       lwa_mchb-lgort   TO lwa_vbpok-lgort,
                       lwa_mchb-clabs   TO lwa_vbpok-lfimg,
                       lv_gross_weight  TO lwa_vbpok-brgew,
                       lwa_mchb-clabs   TO lwa_vbpok-ntgew.
                       lwa_vbpok-SPE_INB_ITM_UPD = 'X'.
                APPEND lwa_vbpok TO lit_vbpok.    
              CLEAR : lwa_idetail,
                      lwa_vbpok,
                      lv_gross_weight.
            ENDLOOP.
    Fill the header data
            lwa_vbkok-vbeln_vl  = gwa_header-vbeln.
            lwa_vbkok-wadat_ist = sy-datum.
            lwa_vbkok-bolnr     = gwa_header-bolnr.
            lwa_vbkok-traid     = gwa_header-traid.
            lwa_vbkok-spe_inb_dlv = 'X'.
    Call the function module to update the delivery
            CALL FUNCTION 'WS_DELIVERY_UPDATE'
              EXPORTING
                vbkok_wa                 = lwa_vbkok
                synchron                 = lc_x
                no_messages_update       = space
                update_picking           = lc_x
                commit                   = lc_x
                delivery                 = gwa_header-vbeln
                nicht_sperren            = lc_x
                if_database_update       = '1'
                if_error_messages_send_0 = lc_x
              TABLES
                vbpok_tab          = lit_vbpok
                prot               = lit_prot.
                commit work.
    I have to update the following item fields
    1>BATCH
    2>LGORT
    3>NTGEW
    4>LFIMG
    5>BRGEW...
    also two header fields..The header fields are updated successfully,but the item fields are not updated..Please tell me where iam wrong...what else needs to be passed..
    Your help us highly appreciated..
    Regards,
    Raj

    Hi,
    Thanks for the repl
    i also passed..
    vbeln_vl,
    posnr_vl,
    vbeln,
    posnn
    Still not working...any other info to pass to FM
    Regards,
    Raj

  • How to update batch (LIPS-CHARG) using FM WS_DELIVERY_UPDATE

    Hi guys,
    I posted a question regarding a function module here:
    How to update batch (LIPS-CHARG) using FM WS_DELIVERY_UPDATE
    If you have experience about this FM, kindly visit the link and share your wisdom. Thanks.
    Regards,
    Carl

    Hi guys,
    I posted a question regarding a function module here:
    How to update batch (LIPS-CHARG) using FM WS_DELIVERY_UPDATE
    If you have experience about this FM, kindly visit the link and share your wisdom. Thanks.
    Regards,
    Carl

  • I have a problem in using the function 'WS_DELIVERY_UPDATE'

    I want to update the delivery document at the batch field (CHARG = '0000000605') by using the function 'WS_DELIVERY_UPDATE'.
    Before update, this batch field is initial.
    After having completely updated this delivery, I try to update this batch field again. However, I found the error message showing that 'Confirmed batch 0000000621 is different from batch 0000000605 for main item'.
    How can I solve this problem to update this batch again? This error occurs when I use function 
    'WS_DELIVERY_UPDATE', 'BAPI_OUTB_DELIVERY_CONFIRM_DEC', and 'BAPI_OUTB_DELIVERY_CHANGE'.

    Check OSS 674567.

Maybe you are looking for

  • API to add lines to an existing Standard Purchase Order on 11.5.8 version

    Hello All, Is there any API in Oracle 11.5.8 Version using which we can add a line to an existing open Standard Purchase Order. In 11.5.10 we can do that using Purchasind document import program, how about 11.5.8, i am not able to find one. Pls let m

  • Why does the left side of mbp 4.1 get abnormally hot? What's is the problem?

    Hello Everyone: The bottom of my 2008, 15" 4.1 mbp has always gotten very hot.  lately however, it gets extremely hot. The other night, I fell asleep with it open, on my lap and it literally burned me and left a nice blister on my lap.  I think the f

  • No HTML validation of spry

    Hi After inserting a spry xml, and validating the page in Dreamweaver, I got the following msg: <the tag "div" doesn't have an attribute: "spry:region" in currently active versions [XHTML 1.0 Transitional]> <the tag "th" doesn't have an attribute: "s

  • BAM - Problem with Latin characters

    Hi, I been having problems using the Crosstab type view when dealing with data that has special characters in it, like "João" or "Temporário". When my data contains this kind of characters I get a java script error in Active Studio or Viewer, this er

  • Lenovo thinkpad edge e531 - How to know charge fully ?

    Hello, Lenovo thinkpad edge e531 - How to know charge fully ? Please help meeeeeeeeeee Solved! Go to Solution.