Enhancement during automatic HU creation for outbound delivery

Hi All,
I need your suggestion / input on following scenario.
When I create an outbound delivery and save it, an automatic Transfer Order is created and at the same time an HU is created for delivery.
Now, I want to populate the field EXIDV2 of table VEKP ( HU header table ) with a specific logic.
Can anyone suggest a suitable EXIT or BADI or Enhancement point where I can populate the field VEKP-EXIDV2 ?
Note: I have tried using EXIT_SAPLV51S_001, but it is not helping in my case. Because it is called only when Transfer Order is created manually (LT03), but is not working when TO is created automatically after saving the outbound delivery.
Thanks & Regards,
Devendra

HI,
You can use the BADI BADI_HU_MAIN and the method HEADER_UPDATE_IN_PACKING.
REgards,
Ankur Parab
Edited by: Ankur Parab on Jul 28, 2009 6:53 PM
Edited by: Ankur Parab on Jul 28, 2009 6:56 PM

Similar Messages

  • Update VEKP-EXIDV2 during automatic HU creation from outbound delivery

    Hi All,
    I need your suggestion / input on following scenario.
    When I create an outbound delivery and save it, an automatic Transfer Order is created and at the same time an HU is created for delivery.
    Now, I want to populate the field VEKP-EXIDV2 ( HU header -- Handling Unit's 2nd External Identification) with a specific logic.
    Can anyone suggest a suitable EXIT or BADI or Enhancement point where I can populate the field VEKP-EXIDV2 ?
    Note: I have tried using EXIT_SAPLV51S_001 and also BADI_HU_MAIN, but it is not helping in my case.
    Because it is called only when Transfer Order is created manually (LT03), but is not triggered when TO is created automatically after saving the outbound delivery.
    Thanks & Regards,
    Devendra

    Hi Ankur,
    I am not going into HU creation screen in VL02N. There is some setting on functional side to create the automatic TO and HU during outbound delivery creation.
    When I save the delivery, an entry in HU header table (VEKP) gets created automatically. I want to populate the field VEKP-EXIDV2. But, the EXIT or BADI as mentioned in my previous post is not helping in this case.
    I would appreciate if you can throw some light in resolving this problem.
    Thanks.
    Devendra

  • Automatic goods issue for outbound delivery, during the transfer order confirmation

    Hello,
    Could you please advise how to realize automatic goods issue for outbound delivery, during the transfer order confirmation in the WMS.
    Now after creation of outbound delivery, i can't post the goods issue. Before i have to make the transfer order and confrim it and only after this i can post the goods issue in the VL02 t-code.
    Could you please advise - what i have to customize that to make automatic GI for outb. delivery (i mean with creation material document) during the TO confrimation.
    Thanks in advance.

    Hi Iiya
    Check the below setting, might be helpful

  • How do we do Automatic freight preperation for outbound delivery in SAP

    How do we do Automatic freight preperation for outbound delivery in SAP

    'Automatic freight preperation'? New concept that SAP came out with? Or is it Freight Calculation? If it is the latter, activate Shipment and Transportation and you have it in a jiffy. You need to work on VT01N, possibly VI01. Plenty of work in SPRO, too
    Regards
    Ramana ND

  • Automatic goods issue for outbound delivery without picking/packing

    Hi,
    I have the following flow: sales order -> outbound delivery -> goods issue.
    I would like to to be able to post an automatic goods issue on my delivery.
    Could someone please let me me know how to perform the customizing for this or give me the reference of the appropriate post which answers this.
    Thanks,

    Hi,
    Use t-code VL23
    select  varient SAP & STANDARD >>> Click on START IMMEDIATELY
    or else
    click on schedule >>> click on schedule periodically >>> select your option as Minute and maintain value 1 or ( 1 to 60 )
    it means sytem will run this program after every one minute
    Also You can able to create your own varients and speciefy criteris like form which sales orz, which delivery types etc.
    Kapil

  • Idoc for transfer order creation for outbound delivery

    Hi
    I am using idoc basic type WMTOID01 and message type WMTORD. when i am trying to create TO for delivery. the idoc is creating and TO ia also creating but, this is not linking to delivery. I am using mov type 601 and requirement type PICK and doc type L sales document. destination storage type 916 but when u see the TO i am not getting the delivery number is not appearing in TO and if you see the document flow in delivery the TO which is created is not appearing in document flow. please help to get the solution

    Some corrections
    Hi,
    Please check the delivery which you are creating is for WM managed storage location or not.
    If your configuration is in place & you are creating delivery & picking from WM managed storage location then TO will be seen in document flow. Either you create TO automatically or manually, in delivery document flow system will show TO number. Also in TO you will see destination bin as delivery number. (Dynamic bin)
    Hope this helps you.
    Regards,
    Prashant

  • Enhancement during creation of outbound delivery to update serial number

    Dear ABAPers,
    Is there any Enhancement during creation of outbound delivery to update the serial number.
    My Requirement is In the VL10B transaction Outbound delivery will be created for the Purchase Order. During this time i want to update the serial number in the Outbound Delivery.
    Any Replies.....
    Thanks & Regards,
    Ashok kumar.
    Edited by: M Ashok kumar on Jul 22, 2010 6:41 AM

    hi
    check INVOICE_UPDATE
    Thanks
    Edited by: saurabhmani on Jul 22, 2010 3:00 PM

  • BAPI for Outbound Delivery Creation with reference to Sales Order - VL01N

    Hi Everybody,
           We are in ECC 5.0 version.
           I want to create a enhancement for Outbound Delivery Creation with reference to a Sales Order.
           Is any BAPI available for this ?
           Any input on this will be very much helpfull.
           Please suggest any BAPI available for this, or should I go for BDC using VL01N or VL04 ?
           Thanks in advance.
    regards,
    Nagarajan.J

    Hi Nagarajan,
    The BAPI BAPI_DELIVERYPROCESSING_EXEC meets your requirement. You can create delivery with reference to sales order.
    The below is the sample code...
      data:lt_request      like bapideliciousrequest
                                    occurs 0 with header line,
           lt_createditems like bapideliciouscreateditems
                                    occurs 0 with header line,
           lt_return       like bapiret2
                                    occurs 0 with header line.
        lt_request-document_type      = 'A'.
        lt_request-document_numb      = vbeln.
        lt_request-document_item      = posnr.
      lt_request-material           = matnr.
      lt_request-plant              = werks.
      lt_request-stge_loc           = lgort.
      lt_request-quantity_base__uom = base_uom_qty.
      lt_request-delivery_date      = sy-datum.
      append lt_request.
      call function 'BAPI_DELIVERYPROCESSING_EXEC'
      EXPORTING
        DELIVERY_EXTEND       =
        TECHN_CONTROL         =
        tables
          request               = lt_request
          createditems          = lt_createditems
          return                = lt_return.
      loop at lt_return where type = 'A'
                          or  type = 'E'.
        exit.
      endloop.
      if sy-subrc <> 0.
    Use the BAPI for Commit
        call function 'BAPI_TRANSACTION_COMMIT'
             exporting
                  wait = 'H'.
      endif.
    Thanks
    Ramakrishna

  • Functon Module required for Creation of Outbound Delivery & PGI

    I am creating sales order. Now, I am creating outbound delivery using VL01N by passing Sales Order & Shipping point...and upon creation of outbound delivery doing a PGI...
    This can be done manually, but need to make it automatic, I mean on save of sales order i will do it. For this is there any FUNCTION MODULE which can be used so that using the Sales Order & shipping point it automatically creates Outbound Delivery & subsequently does a PGI.

    Havent tried, but please check if we can manage via combination of below BAPI's:
    1. BAPI_OUTB_DELIVERY_SAVEREPLICA
    2. BAPI_OUTB_DELIVERY_CONFIRM_DEC
    3. BAPI_ACC_GOODS_MOVEMENT_POST
    Will try myself, when i am back in office on Monday.
    Kind Regards
    Eswar

  • WMTA -- automatic TO for outbound Delivery

    Dear all,
    A quick question about automatic TO creation for an outbound delivery:
    My message WMTA has been properly determined, and has a green traffic light.
    When running SE38 RSNAST00 my delivery is not processed.
    When running RLAUTA20 in background, same thing.
    When running LT03 TO creation takes place with any error.
    What else could be missing?
    Thanks,
    Noki

    Hi,
    well, if the traffic light is green, the TO should have been created already (so no need for any of the other transactions or reports). What is the picking status of your delivery?
    Best regards
    Juergen

  • Automatic TO creation for delivery

    Dear Experts ,
    We are facing a problem with Automatic TO creation for delivery only in some storage types ( not all the types , some types are working fine )
    The problem happened after we applied a user exit for a specific picking strategy , but even after we have cancelled that user exit still problem remained.
    We have checked the following settings, and everything seems fine:
    1-Warehouse management - Activities u2013 transfers u2013 define Mvt type
    2-Warehouse management u2013 interfaces- Automatic TO creation
    Looking for your help in this issue
    Thanks ,
    Malik

    Hi Malik,
    You mentioned that you have previously implemented the picking user-exit and removed it later. Did you enter the correct picking strategy for the effected storage types after removing the user-exit? This could be one reason.
    What happens when you try to create the TO manually?
    Regards,
    Osman

  • BAPI for Outbound Delivery Creation with reference to Sales Order

    Dear all,
    I'm on R/3 4.6B platform and to develop an RFC for outbound Delivery creation instead of using the standard VL01N transaction.
    I've review BAPI for Outbound Delivery Creation with reference to Sales Order - VL01N thread which suggest BAPI_DELIVERYPROCESSING_EXEC .
    However, in 4.6B, that function module doesn't exist. Appreciate any suggestion and or workaround.
    Thanks.
    Steven
    Edited by: Steven Khoo on Mar 25, 2010 7:13 AM
    Edited by: Steven Khoo on Mar 25, 2010 7:14 AM

    Not required anymore

  • Create TO automatic by using wave pick for outbound delivery NLC (STPO)

    Dear all,
    In Cross company code process, we have to create TO automatic by using wave pick for outbound delivery NLC (delivery type NLCC). Time data in outbound delivery NLC have been fulfilled, but there is no TO created, what is wrong in this? pls help.
    Thanks

    Hi Kishor,
    Is there any requirement of TO when ECC system is Interfaced to EWM.
    As per my understanding we have terminology WT & WO in EWM.
    Regards,
    Rock

  • Material document posted during PGI for Outbound Delivery

    Dear Experts,
    We have an Outbound Delivery having multiple line items.
    I have a couple of questions.
    1). How may material doc numbers will be generated if I do PGI multiple times?
    2). Can I have 5 different material docs if I post GI 5 times (Per line). Is this scenario possible?
    Your inputs are valuable. Kindly revert
    Thanks,
    Shetty

    Hi Harry
    In my scenario, Outbound delivery having 5 lines.
    I created TO a and confirmed TO for only 2 lines.
    Now when I do PGI for outbound delivery, GI is done for only those 2 lines with confirmed TO
    I will do the rest of GI again
    In this scenario, what will happen? how many material docs are posted?
    Thanks
    Shetty

  • Condition table for outbound delivery

    Hi guys
    Is it possible to create a new condition table for outbound delivery output type with a field „sold-to”, although this field is available in the field catalogue , it does not show up during a table creation in the FieldCatlg,why?
    Your quick response appreciated .
    Regards
    Dominik

    Hi Dominik,
    You need to Append the new fields which you want to see in the Field Catelog to create a condition table.
    Please follow the following process
    Got to T. Code SE11 andGive the Table name
    Then click on the Button Append Structure and
    Key in the name of you append starting with letter 'Z'.
    Add fields whcih you want.
    Activate the table.
    Hope this is clear.
    Reward if helpful.
    Thanks,
    Praveen

Maybe you are looking for