Picking handling unit in Delivery

Hi,
I have a scenario in which I want to pick handling units from stock into the delivery. At the time of picking in delivery transfer order is created, but warehouse management is not in the scope. Can we pick handling unit in delivery without warehouse management.?
Regards
Falgun

Dear Falgun,
I think its not possible. if i understood your question correctly, that you have created an order and for that you are doing picking/packing, you should create handling unit first and then allocate it in the material master for that perticular material in material master MM01 ->basic data tab under packing material data.
hope its helpful for you.
Regards
Ashwini

Similar Messages

  • Automatic creation of TO's for Handling Unit Inbound Delivery -del type HID

    Hi Guru's,
    I would like to create the putaway TO's for a Handling Unit inbound delivery automatically (delivery type HID). This means at the moment of the creation of the Inbound Delivery. The packing is also automatically done by the customizing of the delivery type. Did somebody faced this requirement before?
    Thx,
    Carl

    I found the solution:
    Choose Customizing activity Define Output Types for Inbound Delivery, and define output type WMTA. Enter the following values in the detail view of output type WMTA under General Data:
    Enter an existing Access sequence. Access sequence 0001 is predefined in the standard system.
    Set the indicator Access to conditions.
    Set the indicator Partner-indep. output.
    Save your entries.
    In the menu tree, choose the entry Processing Routines in the Customizing activity Define Output Types, and enter the following values:
    Choose entry 8 (special function) for the indicator Transmission Medium.
    Enter RLAUTA20 in the field Program.
    Enter ENTRY in the field Form Routine.
    Save your entries.
    Choose the Customizing activity Maintain Output Determination Procedure.
    Define a procedure and enter the output type WMTA in the control view of the procedure. The procedure E10001 is predefined in the standard system.
    To define a suitable condition record for inbound deliveries,
    choose Logistics -> Materials Management -> Purchasing -> Master Data ->
    Messages -> Inbound Delivery -> Create from the SAP menu.
    Enter the output type WMTA.
    Enter output medium 8 (special function) for delivery type Inbound Delivery.
    Select the desired Date/Time.
    Select the desired Language.
    Cheers,
    Carl

  • Good Receipt w.r.t Handling Units(outbound delivery)

    Hi everyone,
    i am doing a BDC for MIGO t-code....to create Good Receipt w.r.t Handling Units(outbound delivery).....
    While executing the Pgm....if some other user has opened the MIGO t-code in DISPLAY mode then that pgm is not able to call the MIGO t-code...to create Good Receipt w.r.t outbound delivery.....
    As this bdc pgm is witten to create the good receipt i.e. why it is not allowing to create the receipt as already someone else has opened it in DISPLAY mode....
    The following code is to create Good Receipt w.r.t outbound delivery handling unit
    perform bdc_field using 'GODYNPRO-ACTION'
    'A01'. -
    Good receipt
    perform bdc_field using 'GODYNPRO-REFDOC'
    'R05'.-----outbound delivery
    PLease if somebody can help me out with this code...or can send me any program related to this pgm.

    hi,
    dont write bdc for migo.
    use bapi.
    *& Report  ZRPT_SUB_KO01GOODSMOVEMENT
    REPORT  ZRPT_SUB_KO01GOODSMOVEMENT.
    PARAMETERS : P_BAG(17)  TYPE C,
                 P_ZZORG LIKE zaUFK-ZZORG,
                 P_MATNR LIKE MARA-MATNR,
                 P_WERKS LIKE AUFK-WERKS,
                 P_WERK LIKE AFPO-PWERK,
                 P_DATE LIKE MKPF-BUDAT,
                 P_LGORT LIKE GOITEM-LGOBE.
    DATA : BDC_DATA TYPE STANDARD TABLE OF BDCDATA. "internla table for bdc data
      DATA : WA_BDC_DATA TYPE BDCDATA .                "work area for bdc data
      DATA : T_XMSEG TYPE   MSEG.
      DATA : T_XMKPF TYPE MKPF.
      DATA : V_BAGS1(17) TYPE C.
    DATA : BEGIN OF WA_MB1B,
           ZZGCODE TYPE ZMIGO-ZZGCODE,
           ZZGBAGS TYPE ZMIGO-ZZGBAGS,
           WERKS TYPE AUFK-WERKS,
           LGORT TYPE VBRP-LGORT,
           ZZORG TYPE zAUFK-ZZORG,
           END OF WA_MB1B.
    DATA : V_MATERIAL TYPE BAPI2017_GM_HEAD_RET-MAT_DOC.
    data : v_date(10) type c.
    DATA : T_GOODSMVT_HEADER TYPE BAPI2017_GM_HEAD_01,
           T_GOODSMVT_CODE TYPE BAPI2017_GM_CODE,
           T_GOODSMVT_ITEM TYPE STANDARD TABLE OF BAPI2017_GM_ITEM_CREATE,
           T_RETURN LIKE BAPIRET2 OCCURS 0 WITH HEADER LINE.
    DATA : WA_GOODSMVT_ITEM TYPE BAPI2017_GM_ITEM_CREATE.
    DATA : BEGIN OF S_MARA,
           MEINS LIKE MARA-MEINS,
           END OF S_MARA.
    DATA : MATERIALDOCUMENT TYPE BAPI2017_GM_HEAD_RET-MAT_DOC.
    *FORM GOODSMOVEMENT TABLES T_RETURN
                             USING WA_MB1B LIKE WA_MB1B.
    SELECT SINGLE  MEINS
                   FROM MARA
                   INTO S_MARA
                   WHERE MATNR = P_MATNR.
       CONCATENATE p_date6(2) p_date4(2) p_date+0(4) INTO V_DATE SEPARATED BY '.'.
        T_GOODSMVT_HEADER-PSTNG_DATE = P_DATE.
        T_GOODSMVT_HEADER-DOC_DATE = P_DATE.
        T_GOODSMVT_CODE-GM_CODE = '04'.
        WA_GOODSMVT_ITEM-MATERIAL =      P_MATNR.                    "'000000000000001556'.
        WA_GOODSMVT_ITEM-PLANT  =        P_WERK.                     " '1000'.
        WA_GOODSMVT_ITEM-STGE_LOC =      P_LGORT.                    " '0001'.
        WA_GOODSMVT_ITEM-MOVE_TYPE =     'Z42'.
        WA_GOODSMVT_ITEM-VENDOR =         P_ZZORG.                   "'0000100224'.
        WA_GOODSMVT_ITEM-ENTRY_QNT =      P_BAG.                   " '1'.
        WA_GOODSMVT_ITEM-ENTRY_UOM =     S_MARA-MEINS.
        WA_GOODSMVT_ITEM-ENTRY_UOM_ISO = S_MARA-MEINS.
        WA_GOODSMVT_ITEM-MOVE_PLANT = P_WERKS.
        APPEND WA_GOODSMVT_ITEM TO T_GOODSMVT_ITEM.
    CALL FUNCTION 'BAPI_GOODSMVT_CREATE'
    EXPORTING
          GOODSMVT_HEADER          = T_GOODSMVT_HEADER
          GOODSMVT_CODE            = T_GOODSMVT_CODE
    IMPORTING
        MATERIALDOCUMENT           = V_MATERIAL
    TABLES
          GOODSMVT_ITEM            = T_GOODSMVT_ITEM
    RETURN                        = T_RETURN.
    BREAK shailajaa.
               EXPORT t_return  to MEMORY ID '123'.
               EXPORT V_MATERIAL TO MEMORY ID 'MAT'.
                CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
         EXPORTING
           WAIT          = ' '.
    *ENDFORM.
    see this example.
    reward points if usefull..

  • Freight Calculation basis Handling Unit in Delivery

    Hi Expts.
    Could anybody help me how to identify shipment cost (freight) on the basis of Number of Handling Unit in a Delivery.
    Example:
    1-One Delivery
    2-Multiple quantity of material (10 qty)
    3-Packed in multiple handling units (2 in one HU, 5 HU)
    Freight calculation on the basis of handling units handled by freight forwarder.
    Urgent help required.
    Regards
    AB

    hi raja,
    packing done at delivery and transfer order is used for packing an item at delivery level or at transfer order level that is at ware house management level.
    packing material is normal material which you will use for packing purpose like
    TV packing uses: polythene cover, thermocol sheets, then a carton and you will keep 10 TV's in one single pallet that is handling unit
    please check SPRO config settings for multi level packings.
    please take this link:
    http://sdconfiguration.blogspot.com/2008/02/multi-level-packaging-in-delivery.html

  • Check if handling Unit/outbound delivery locked?

    Hi all,
    How do i check whether a HANDLING UNIT is locked or not?
    How do i check whether a Outbound delivery is locked or not?
    Any Std FM's available?Any input will be highly appreciated.
    Thanks.
    Edited by: Andy102 on Apr 23, 2010 7:56 AM

    Hi,
    To check the Outbound delivery is locked, call the below function module
    CALL FUNCTION 'SHP_ENQUEUE_EVVBLKE'
      EXPORTING
       MODE_LIKP               = 'E'
       MANDT                   = SY-MANDT
        vbeln                   = <Delivery Number>
    EXCEPTIONS
       FOREIGN_LOCK            = 1
       SYSTEM_FAILURE          = 2
       CSL_NO_CONNECTION       = 3
       CSL_INCONSISTENCY       = 4
       OTHERS                  = 5
    IF sy-subrc ne 0.
      delivery is locked
    else.
      delivery is not locked. 
    ENDIF.
    For handling unit use the function module "ENQUEUE_EVVEKPE"
    Regards
    Vinod
    Edited by: Vinod Kumar on Apr 23, 2010 11:51 AM

  • How to fetch external handling unit# using delivery#

    Hi Gurus,
    Please tell me relationship how to fetch the VBEP-EXIDV(external handling unit)    Using LIKP-VBELN(Outbound Delivery no) .
    Any suggestions welcome.
    Thanks in advance,

    Table vekp has a field SPE_DELDEC.
    Also if field STATUS = 60, its deleted.

  • How to get hierarchy of a handling unit in delivery

    Hi All,
    We have a requirement of displaying in the form output highest level handling unit details(measurements length width and all).
    After that we want to display lower level handling units materials that has been packed.In the transaction Vl03n I can find this by just double clicking the parent Handling unit.
    To make simple how to get the hierarchy of handling units?
    If I know handling unit(say HU1) how to find there are some handling units(may be HU2,HU3) included in this handling unit HU1.
    I refered to the tables VEKP and VEPO it does not help me in this regard.Please suggest some body some idea on this.
    Regards
    Mahesh

    Hi,
    Have you look into field VEKP-UEVEL (Higher-Level Handling Unit)
    RF_SW_VEKP_READ                  Select from table VEKP - 1st layer
    VEKP_READ                        Select from table VEKP - 2nd layer
    Kind Regards
    Edited by: Raymond Friston on Apr 24, 2008 8:37 AM

  • Handling units in delivery

    hello gurus
       can any body send the relavent stepby stepby step configuration settings for handling units.
    thanks in advance,
    balu

    Hi Bala,
    Please go through this SAP help it will help you,
    http://help.sap.com/saphelp_47x200/helpdata/en/16/4bad1ba63611d2b44e006094b9b9dd/frameset.htm
    I hope it will help you,
    Regards,
    Murali.

  • Error while assigning Handling Unit to Delivery

    Hi Friends,
    I am facing the problem while assigning(manually) the HU to Delivey in VL02N.
    Plant/St.Loc are not manged by WM.
    It gives the following error:
    HU XXXXXXX is in the warehouse. Assignment only possible through transf.order
    Note:Warehouse Management is not active.
    kindly guide me..
    With Regards
    Azeez.Mohd

    Hi,
    Activate lean warehouse management,
    Logistics execution>>>shipping>>>picking>>>lean warehouse.
    kapil
    Edited by: Kapildev Farakte on Nov 24, 2009 9:56 AM

  • Delivery item not generated after repacking handling units

    Dear All,
    I am using handling units. In the outbound delivery, I pick handling units using transfer orders. When the TO is confirmed, I get a line for packing material items in my delivery.This is because in the customizing for delivery type, I have flagged the required indicator.
    Then, I repack the contents into an already existing HU and then delete the empty HU.I use BAPI_HU_CHANGE_HEADER  to assign HU to delivery, WS_DELIVERY_UPDATE to repack contents and BAPI_HU_DELETE_FROM_DEL to delete the emptied HU.The problem is that no lines are generated for the handling units into which contents were repacked.
    Any ideas?

    no solution.

  • Outbound Delivery Handling Unit HU material box pallet

    Business requirement.
    To create a delivery based on a sales order using a function module. To do this, users have an AbapWebdynpro application to collect data, 
    Handling units for boxes and handling units for pallets are creates as the user packs his materials in the application.
    Items are packed in boxes and boxes on pallets.
    Problem description: cannot pack boxes onto pallets.
    I can pack items in boxes no problems. Delivery gets created ok.
    How i do it:
    Step 1:
    At the end of AbapWebdynpro process and validations, if no errors occurs, a function module is called to format the data and call fm to create a delivery.
    This part works as expected and is all ok.
    Step 2:
    Then in the function module that will create de delivery, header proposal is filled for boxes and pallets. itemproposal is filled for items in boxes and pallets
    Step 3:
    then,
    FUNCTION 'BAPI_HU_CREATE' is used to create handling units for items
    This part works perfectly for boxes and items but not for pallets.
    then, delivery create
    CALL FUNCTION 'SD_DELIVERY_UPDATE_PACKING_1'
    EXPORTING
    delivery = ls_createditems-document_numb
    commit = 'X'
    synchron = 'X'
    TABLES
    verko_tab = i_verko
    verpo_tab = i_verpo
    prot = i_prot
    it_handling_units_1 = i_handling_unit
    EXCEPTIONS
    update_not_possible = 1
    OTHERS = 2.
    This part works fine also if not pallets HU are present in the data .
    The problem is when i want to create a pallet and add the boxes to it. I have tried about every thing i read but had not much success.
    The only thing that came close to doing the job is the following code.
    First i create the delivery with boxes and materials only and with the following FM, i create the pallet and attach it to the delivery line but then i can not assign the boxes to it.
    ls_handling_units-top_hu_external = ls_packed_pallets-hu_pallet.
    ls_handling_units-top_hu_internal = ls_hupallet.
    ls_handling_units-venum = ls_huboxes.
    ls_handling_units-vepos = ls_packed_boxes-posnr.
    ls_handling_units-rfbel = lv_vbeln.
    ls_handling_units-rfpos = ls_packed_boxes-posnr.
    APPEND ls_handling_units TO lt_rehang.
    Step 4:
    CALL FUNCTION 'SD_DELIVERY_UPDATE_PACKING_1'
    EXPORTING
    delivery = ls_createditems-document_numb
    commit = 'X'
    synchron = 'X'
    TABLES
    verko_tab = i_verko
    verpo_tab = i_verpo
    prot = i_prot
    it_handling_units_1 = i_handling_unit
    EXCEPTIONS
    update_not_possible = 1
    OTHERS = 2.
    Is anyone succeed to create a program to create outbound delivery where materials are pack into boxes and those boxes are packed on pallets.
    Regards
    dstj

    If the delivery document PGIed then you need to do VL09 transaction to reverse the PGI document.
    Then do in VL02N transaction  select Delete handling unit assignment icon it will remove all the handling units from delivery.
    Later goto EDIT option then selct copy pack qty as dlv qty then save.Later system will allow you to delete the document.

  • Outbound Delivery Handling Unit

    Hi Guys,
    I have an outbound delivery with a Handling Unit document attached, question is...how will I delete this HU document. Pls enlighten. Thanks a lot.

    If the delivery document PGIed then you need to do VL09 transaction to reverse the PGI document.
    Then do in VL02N transaction  select Delete handling unit assignment icon it will remove all the handling units from delivery.
    Later goto EDIT option then selct copy pack qty as dlv qty then save.Later system will allow you to delete the document.

  • HANDLING UNITS ERROR

    Hi  All
    we are working in HU and SU managed warehouse scenario , where for packing artiacles we are using HU units for carton and SU for  pallet , HU and SU configuration is  carried out and Put away is perfect successful with out any error  , but while doing outbound delivery against sales order , i am getting  lot  of errors with HU's , can any body tells me how  to do the packing for outbounddelivery , and subsequent TO creation picking  step for HU and SU managed warehouse, 
    thanks in advance

    Hi Chunduri,
    we also use SAP WM with Handling Units.
    The process works as follows:
    With confirmation of the TO (Transport Order), the picked Handling-Units are assigned to the outbound delivery.
    Please check Customizing table-view V_T340DC.
    Pick&Pack should be checked (=X).
    Best Regards,
    Juergen

  • Sales Handling unit enhancement

    Dear friends,
    This is regarding packing handling units in delivery. I have a customized table which is having ready handling units with reference to sales order.
    I have a requirement to pick these handling units from Ztable and attach to delivery when the user clicks PACK button in OBD, instead of selecting handling units one by one again.
    Please suggest any appropriate user exits.
    Regards,
    Praveen Lobo

    Hi,
    Please check below link on all user exits in SD.
    https://wiki.sdn.sap.com/wiki/display/ERPLO/SDUserexits
    You should be able to find the right one there...
    Best regards,
    Anupa

  • Handling Units Configuration Steps

    Can anybody please send me the step by step configuration steps for Handling Unit.
    Thanks in Advace for your help.
    SUNIL

    The following process chain provides an example of how Handling Unit Management can be set up for integrated implementation in the relevant SAP components
    Process Flow
    Sales and Distribution
    ·        You receive a sales order for certain materials. If you have a special agreement with the customer as to the packaging in which this material is to be delivered, you can reflect this agreement by using existing (or creating) packing instructions and a corresponding packing-instruction determination record. You can use this agreement at any point during packing. If the agreement is limited to this particular order, the information is created in the order in the form of a packing proposal.  This agreement is then also available during packing in repetitive manufacturing and in the delivery.
    ·        An availability check is run for the order items. If the system determines that the sales order cannot be filled by using the warehouse stock currently available, a requirement is created for production (in the case of in-house production) or for purchasing (in the case of external procurement).
    Production
    ·        A manufacturing order (such as a work order) is created for the respective material on the basis of the order requirement.
    ·        The raw material required for production is reserved (if it is in stock).
    Purchasing
    ·        If the raw material is not available in sufficient quantities, or if the material required for the sales order needs to be acquired externally, purchase orders are created from the requirements generated for material procurement.
    Goods receipt
    ·        The vendor notifies the goods recipient of the delivery of the goods by using a shipping notification that also contains the packaging data. The shipping notification generates an inbound delivery that includes the packing information from the shipping notification. If there is no EDI notification, the inbound delivery must be created and packed manually for the purchase order. The handling units are put away and the inbound delivery is posted for goods receipt.
    Quality Management
    ·        If the packing data is known in the inbound/outbound delivery, an inspection lot is created for these handling units and the stock is posted to quality inspection stock upon goods receipt/goods issue.
    ·        If the handling units have been put away in HU-managed storage locations, the handling units can be re-transferred since the stock is still managed through the handling unit.
    Warehouse Management
    ·        Handling units with raw materials are provided in time for production in accordance with the production requirement.
    Quality inspection
    ·        As soon as the quality inspection is complete, the stock in the handling units is posted to unrestricted-use stock or to scrap materials, depending on the usage decision.
    Inventory Management
    ·        If the production storage location is not HU-managed, the goods issue of the raw material takes place through an explicit stock posting or through the verification from production.
    ·        If the production storage location is HU-managed, the goods issue takes place either after successful staging of the materials or through explicit specification of the handling unit.
    Production
    ·        The production process is executed and the raw materials are used.
    ·        The handling units that result from this step are planned.
    ·        As a last step, the material that was produced is packed, either in production or after production. The handling units that are created in this way are confirmed as implemented. If there was no planning, the handling units are created directly as implemented handling units.
    Quality Management
    ·        If the status of the handling unit changes from planned to implemented (or changes during creation of implemented handling units from production), an inspection lot is created for the handling units.
    Inventory Management
    ·        The handling units are posted for goods receipt after verification from production (or in a separate step). Quality Management decides whether the handling unit is to be posted to unrestricted-use stock, inspection stock, or quality-inspection blocked stock.
    Shipping
    ·        An outbound delivery is created from the sales order
    Warehouse Management
    ·        Transfer orders are created for the materials to be delivered and the handling units are picked from stock. If only partial quantities of existing handling units are required, handling units are created for the picked materials.
    ·        The picked handling units are confirmed to the delivery.
    Shipping
    ·        The handling units that were picked can be repacked in the delivery. If there is a packaging proposal in the sales order, the delivery can be packed automatically in accordance with this proposal.
    ·        Goods issue is posted for the handling units.
    ·        The customer is informed through EDI about this delivery.

Maybe you are looking for

  • HT4623 Could you please help me to unlock my phone

    I have an iPhone 4 32GB (black)and it's already out of contract so I think it's eligible to unlock as well. Could you please help me to unlock my phone so I can use it with other carriers in other countries. I'll appreciate for your response. My IMEI

  • IMac 27" late 2012 + new Apple TV 3: bluetooth disconnections

    Hello, I have an iMac 27" late 2012 working perfectly with wireless keyboard, magic mouse, and wireless trackpad until two days ago, when I purchased the Apple TV. Since then I have continous disconnections whith Mavericks. Mouse, Keyboard and Pad lo

  • Flex incompatibility issue with SDK 3.5.0.12683 and IE6

    Anyone have experience with issues for IE6 and Flex SDK 3.5.0.12683? As a secondary issue, does anyone know of a way to force a browser cache refresh? thanks Simon

  • How to clear map directions

    How to clear map directions? Thanks in advance!

  • Problem printing changed page background color

    I have changed the page backgound colour in custom package and it shows the colour (green) on the monitor and in preview but the printer does not seem to recognise the colour - the background when printed is black.  I can trun off the colour and get