Missing Handling Unit

Hi All,
I have a delivery with 3 line items.
One of the operators forgot to create a handling unit for item 20.
Is there a tcode I can use to create a handling unit and assign that handling unit to my delivery?
Please help.
Meghna

What T code you are using to create HU (Which u mentioned yours operator missed)
You can create HU and then in VL02N assign the HU number in packing button.
Or
You can create directly from VL02N through the packing button
Regards,
Vishal

Similar Messages

  • External Handling Unit (Barcode) Information is Missing

    Hello Folks,
    I got a requirement where a warehouse will send us an EDI 945 file to confirm the shipment completion. But, it send us the file without SSCC labels for those shipped items of the order. This 945 is being translated into a SHPCON IDOC(DELVRY03) which doesn't contain the E1EDL37(Handling unit header). This IDOC is failing in status 51 with the error message: External Handling Unit (Barcode) Information is Missing.
    What should be done to get this IDOC posted sucessfully even if it doesn't contain the SSCC label? Is there any setting that should be changed for this customer to not to look for SSCC labels(External Handling unit).
    Thanks for your help,
    Siva

    This could be because of custom code. Check the exits in inbound FM and you should find out the root cause. Standard SAP doesn't check for customer level SSCC checks. If it gets the HU's from 3PL, it'll pack it such way. If it doesn't, it'll pack is the usual way.

  • "Current assignment" field missing in Handling Unit status tab

    Our scenario is as below:
    1. STO created and outbound deliveries generated
    2. Deliveries are assigned to shipment
    3. Packing is done using RF transaction
    In the normal scenario, the HU status tab would show the outbound delivery number in the current assignment tab. But for some Handling Units, the current assignment field shows blank. Also, the contents tab shows only the delivery line item number and not the delivery number. We have also noticed that the problem delivery line items have been packed in 2 different Handling Units, each containing the full delivery line item quantity. (not sure how this is possible). One of the HU is displayed correctly but the other one has the missing delivery number issue.
    Has anyone encountered such a scenario? How is the system allowing to pack the same delivery item quantity in 2 different Handling Units? Any suggestions in this regard would be very helpful.

    Hi,
    Thank you very much...
    i have another doubt.....
    i am unable to understand determination of packing instructions.
    where it is linking i am confused.
    we are assigning the determination procedure in the T.code
    OVHU2.(Maintain Packing Transaction Profile in IMG).
    my doubt is where we are assigning this Transaction Profile in Handling Units.
    Please help me....
    with regards

  • Missing Weight / Volume data in handling unit

    Hi; I'm trying to realize automatic packing function for outbound delivery.
    System works well after POP1 - creating packing instruction, POF1 packing instruction determination. However, after I change package material master data (Volume / Weight), handling unit is missing weight, Volume data in new created delivery document although packing instruction has been determined.
    Checking Packing instruction master data, total weight / volume has been automatically updated. Why new handing unit is missing weight / volume data during automatic packing transaction in delivery?
    Is there any things i'm missing? Can anyone help for this? Thanks.

    Thanks for your answers, Csaba and muthuraman.d.
    Yes. I was also supposing that HU can automatically calculate weight / Volume from Material master data (package material & packed material). It worked before(the week before last week). Now new generated HU are missing those data. This error is in case on all deliveries.
    Even I create new package material / new finish goods and brand NEW packing instruction for testing, HU can be automaticly generated by auto packing button. But they are missing weight / volume data. This problem seems not relevant to master data(package material weight / volume) changes. I'm suspecting system program has some changes but I don't know where it is.
    Only when I set indicator at packing instruction - " Maintain Weight manually" or "Maintain Volume Manually", those weight / volume data can be coppied into new generated HU in delivery which is full packed.
    System really can automatic calculate weight / volume  data directly from Material master data for HU before(not set - "Maintain xxx manually" in packing instruction). What's wrong with it now?

  • Create and Pack Handling Units in the Sales Order Using HU_CREATE_ONE_HU

    Hello Experts,
    I am trying to use HU_CREATE_ONE_HU function module to create a handling unit and pack it with specific line items in the sales order program in the background.  I am able to create the handling unit and pack it but it does not get associated to the sales order / line item.  If you look at the sale order's packing proposal, it does not show it packed.  If I look at VEKP / VEPO, I see where it was created but there is no value for vbeln or the posnr I proposed.  Below is the code, I am using.  Does anyone know what I am doing wrong or is there another function module I can use?
    LOOP AT t_vbap.
        CLEAR:   is_header_proposal, it_items, es_header, et_items, et_messages, t_vbap2.
        REFRESH: et_items, et_messages, t_vbap2.
        is_header_proposal-exidv          = '$1'.
        is_header_proposal-exida          = 'A'.
        is_header_proposal-vhilm          = 'UNIBOX'.
        is_header_proposal-hu_status_init = 'A'.     "planned
        is_header_proposal-status         = '0001'.  "planned
        "get the components that make up this subassembly including the parent.
        SELECT * FROM vbap
          INTO TABLE t_vbap2
         WHERE vbeln = t_vbap-vbeln
           AND posnr = t_vbap-posnr. "parent
        SELECT * FROM vbap
          APPENDING TABLE t_vbap2
         WHERE vbeln = t_vbap-vbeln
           AND uepos = t_vbap-posnr.  "children
        "now load the items to be packaged in the proposal
        LOOP AT t_vbap2.
          CLEAR: it_item.
          it_item-velin    = '1'. "material item
          it_item-belnr    = t_vbap2-vbeln.
          it_item-posnr    = t_vbap2-posnr.
          it_item-quantity = t_vbap2-kwmeng.
          it_item-meins    = t_vbap2-meins.
          it_item-matnr    = t_vbap2-matnr.
          it_item-werks    = t_vbap2-werks.
          it_item-lgort    = t_vbap2-lgort.
          APPEND it_item TO it_items.
        ENDLOOP.
        CALL FUNCTION 'HU_INITIALIZE_PACKING'.
        CALL FUNCTION 'HU_CREATE_ONE_HU'
          EXPORTING
            if_create_hu       = 'X'
            is_header_proposal = is_header_proposal
            it_items           = it_items
          IMPORTING
            es_header          = es_header
            et_items           = et_items
            et_messages        = et_messages
          EXCEPTIONS
            input_missing      = 1    " Data that is Necessary for Creation is Missing
            not_possible       = 2    " HU Creation not Possible
            header_error       = 3    " HU Header Data Contains Incorrect Data
            item_error         = 4    " Items Cannot be Created
            serial_nr_error    = 5    " Serial Number Error
            fatal_error        = 6    " Internal Error
            OTHERS             = 7.
        CALL FUNCTION 'HU_POST'
          EXPORTING
            if_synchron = space
            if_commit   = 'X'.
      ENDLOOP.
    Thanks for the help.
    Laura

    The abap statement does not make sense.
    xlips_high_posnr = ( lips-posnr / tvlk-incpo ) * tvlk-incpo
    posnr & incpo are both type numc length 6.
    Here is my recommendation to catch the divide by zero error.
      data: l_oref    type REF to cx_root.
      data: l_text    type string.
      TRY.
            clear l_text.
             xlips_high_posnr  = lips-posnr / tvlk-incpo.
            CATCH cx_sy_zerodivide INTO v_oref.
              l_text = l_oref->get_text( ).
            CLEANUP.
    *      Put your code to do further processing if it is divide by zero
      ENDTRY.

  • Handling Unit not being assigned to TO for an outbound delivery

    Hi All
    When I create a TO for an outbound delivery then a handling unit is not being assigned to the TO.
    I cannot confirm the TO as it complains about the non assignment of HU.
    I have done the following so far:
    1. Set up a default packing material w.r.t WhNo and movement type.
    2. Defined a packing group and then assigned the packing group to the packing material.
    3. Set 1 to the indicator for automatic HU creaion in customizations for automatic HU creation.
    Is there something I am missing in the configuration?
    Any suggestions would help.
    Thanks,
    Arup

    Hello,
    HU never get assign at the time of creation of TO. You can assign pick HU at the time of confirmation of TO. There are two ways
    Use transaction code LH01 and assign pick HU
          OR
    (ii)Or at the time of confirmation of TO click on pack tab and complete the packing
    Thanks,
    Milind C

  • MTS with batch management, serialization and Handling unit

    Hello All,
    I am testing a scenario for MTS with batch management, serialization and Handling unit for discrete manufacturing.
    Everything worked fine till I created the Handling unit for the finished product.
    The production order has a quantity of 3 EA.
    It has three serial numbers 1, 2 and 3. (serial numbers can be displayed from order->Header->serial numbers)
    I created one Handling unit for production order quantity of 3 EA.
    I tried to do a goods receipt for the production order using transaction COWBHUWE.
    I get the following error when I try to post the GR:
    Only 0 serial numbers entered instead of 3
    Message no. IO304
    Diagnosis
    There is a serial number obligation, so the number of serial numbers must equal the number of serial numbers in the material document.
    You can post the operation only if you entered the correct number of serial numbers previously.
    System Response
    Depending on the context in which the error arises, the system continues processing, or the required function cannot be performed.
    Procedure
    You have the following options, for example:
    Check that the serial numbers are entered fully.
    If necessary, display an error log.
    If necessary, contact your system administrator.
    What did I miss?
    How to fix this problem?
    Please help.
    Thanks in advance
    George

    I added the serialization procedure HUSL to the serial number profile and it fixed the problem.

  • IDOC DELVRY03 (WHSCON) create Handling Units

    Hi,
    I am creating an inbound delivery from an IDoc.
    I now want to have the items packed on the delivery.
    Therefore the HU's need to be suitably created and packed into for the items.
    From investigating, SAP states use the 'WHSCON for creation of Handling Units for deliveries'.  Refer OSS note 792726.
    Can somebody please point me in the correct direction for performing this.
    So far all I have managed to find is that EXIDV needs to be present, which is the HU, which I do not have.  Unless I am missing some fundamental point that SAP has not pointed out to me yet
    As far as a BDC goes for packing, use the Single Entry tab, on VL32N anyway.
    I have a BDC to do this, so can fall back to that, but it would be preferred to create the delivery and then pack it right away, whilst creating/posting the IDocs.  The IDocs also provide tracking in case things go wrong, etc, hence, prefer the workflow rather than have another program to run, etc etc.
    Thanks
    Justin Mortlock

    Hi,
    Check out the qualifier in the E1EDL41 segment.
    It has following qualifiers.In your IDOC you should be having 002???!!!.
    If so update the mapping with the 003 qualf at the middleware/translator level.

  • Handling unit process step by step

    Dear All,
    We intend to use handling unit functionality.
    Our FG let's say FG001 gets packed in container.
    I have mapped this as following.
    I have created 'Container' as code with material type VERP- Packaging Material. Maintained the required data in Sales org. tab page.
    I have created packing instruction in POP1 with container as packing material & FG001 as material.
    I have maintained the determination record in POF1 (Frankly I didn't understand the relevance of this step, but did cos has been suggested in several threads.)
    Now I have to perform the packing process of FG001 in HU02.
    But system is throwing me an error as 'No packing instruction could be found for material FG001', message no. VHUPD002.
    I have stuck up there. Kind request you to help me in this, regarding any configuration & processing step, if I am missing.
    Also I am few questions to get clear.
    1. How to maintain the batch no. of packing material 'Container' while creating/ generating HU as my packing material is batch managed, and need to have information in which HU the batch of packing material is utilized.
    2. What happens to the stock statement  (MMBE)of both the materials i.e. FG001 & Container when those are get packed i.e. HU created/ generated.
    Please respond urgently.
    Timely answers will be rewarded.
    Mimiri

    VS,
    Thanks once again.
    You got it right. I was confused as I was unable to understand why packing material is not moving along with the FG material.
    Moreover our packing material is container. Once it is packed container moves from plant to plant & then to final destination.
    As we have to track the movement of the container, it was necessary for us to the have stock statement.
    I am still surprised why standard SAP doesn't support the movement of the packing material along with the contents i.e. FG?
    Now to tackle this, we have thought of a way out.
    We have maintained two material codes for container. one is dummy container and second is main container for which we have to track the goods movement. Both will be having same material type as VERP but only difference is later won't be having packing material type in sales view. So it will act as normal material.
    While creating HU with HU02, both the materials with quantities will be entered in pack material section. Dummy packing material serve as packing material. Here my question is what is HU creation & HU generation? Because system is throwing me an error while generation as 'no packing instruction are there for the material although I have defined determination source in POF1 but when I save the HU with out generating it, system doesn't throw this error
    The HU is getting created but I am unable to enter that HU number in VL01N while creating the delivery. How to do that?
    MImiri

  • Handling unit output determination questions

    I have configured a new output type for a custom label we need to implement for handling units.   It is assigned as V6, for Ship-to Party/Shipping Material.
    In VL01N or VL02N, I am able to create the handling units and pack the delivery line item materials into them.
    I am able to manually assign the output type to the handling unit in VL01N/VL02N, but have not been successful in getting the output type to auto populate.  I have verified that it is not populated after packing the HU and saving from VL01N, or when doing from VL02N, or after PGI.
    I have been searching the forums and have not found the answers I need.
    1.  Is it possible for the output type to automatically populate for a handling unit?  If so, at what point should this happen?  I would think based on how our custom label output types for delivery documents behave, it would assign after save from either VL01N or VL02N.
    2.  When I create the HU, I specify a VERP packaging material number that represents the carton in order to create the HU.  I do not have the material on the sales order or delivery as a line-item, and I am not getting any error messages indicating that it should be. 
    If this should work the way we expect it to, any suggestions on what I have overlooked that would prevent my output type from automatically assigning?
    Thanks in advance for your help.
    Dave

    Hi Joan,
    Thank you for your answers.  They were most helpful.  I was finally able to get the new Output Type to assign after I created the HU's and saved the delivery.
    Hopefully you won't mind if I ask some related questions.
    1.  If I went to VL02N for a delivery where I had already created the handling unit, it did not automatically get the Output Type assigned when I saved.  (Like it does for our delivery based labels when I add a user in NACE that previously wasn't identified to get the label.)   Is this the normal behavior for HU-based output or am I still missing something in my setup?
    2. I did the VHAR step and specified both the Output Determination Procedure and the Output Type of my new label,as suggested.   This did work once I finally tested by creating a new HU for a delivery, rather than checking an existing delivery/HU.  Is entering the Output Type here critical?  If another customer has a different label format, I think assigning the Output Type here this will cause a problem for us.  (I haven't had a chance to change the config to remove this and see if the Output assigns based on references elsewhere, now that I know it seems to assign only when the HU is initially created.)
    Thanks again!
    Dave

  • Handling Unit - COP2 error

    I create a Production order for a material
    When we create a Production order for 30 numbers and execute cop2 the transaction code is working fine , Handling units are created , confirmations and goods receipt also happening
    When we create a production order for 60 and execute cop2
    For first 30 there is no issue Handling units are created , confirmations and goods receipt also happening ,
    But when we execute the cop2 transaction code handling units are generated , when i press the confirmtion and goods reciept i get the error as below
    Error
    No alternative unit of measure specified
    Message no. MM108
    Diagnosis
    You want the system to convert from the base unit of measure to an alternative unit of measure for the current material. However, this alternative unit of measure is missing.
    System Response
    The system cannot carry out the conversion.
    Procedure
    This is due to a program error that should not occur. Please contact your system(s) administrator.
    I have checked the material master Alternate UOM is there
    I tried this for  6 different materials this error is coming .
    BUt still Handling unit , confirmations and goods receipt is happening even though  i get the error .
    Recently we had a servie pack update , is there a possibility that it is becuase of the service pack update
    Please advice

    Dear,
    Please refer OSS note 988697

  • QA32 UD for Handling Units results in a transfer posting delivery?

    In our environment we have Handling Units,  Serial Numbers and QM.  In the mateial master the QM inspection types are set to inspecting by HU.  The inspection lot gets created correctly and it references all the HUs.  When we perform a usage decision and transfer the HUs to unrestricted stock in QA32.  The system creates a transfer posting delivery that I then have to go and pick the HUs onto and then PGR the transfer posting delivery.   It seems to me that because QA32 is working with the HUs it should direclty post the stock to unrestricted.  I don't understand why I need this Transfer Posting Delivery.
    Can anyone confirm that, yes indeed this is standard SAP behavior and we have to live with it  or Am I missing something and no the system can directly post an HU with serial numbers form 'Q' stock to unrestricted via QA32.
    Thanks for your help,
    Steve

    Hi,
    The Standard SAP process is as follows,
    1. GR --> Inbound Delivery created and stock is in 902Q
    2. QM processes
    3. Take Usgae Decision --> Transfer Posting Delivery Created
    4. Create TO and confirm TO with reference to step 3 Delviery (Sotck moved from 902Q to 922Q then 922 without Q to 902 without Q(Unrestrcited use)) (This TO Creation and confirmation can be automated)
    5. Now create TO and confirm TO with reference to Step 1 Delivery (Stock moved from 902 without Q (unrestriced)) to the permanent storage (unrestricted use stock).
    I hope this will help you.
    Regards,
    K.Annadurai.

  • Configuration of external handling unit number range

    Hello everyone,
    I am working on a project that includes receiving of handling units from outside of our SAP system in EAN128 format, and am running into some challenges in setting up an appropriate external handling unit number range.  The process will involve creation of an inbound delivery from an advance ship notice, with the delivery to then be packed based upon handling unit information in the ASN.  I have set up an external number range interval in the number range object that is being used for generation of internal handling unit numbers, with the external interval being outside the range of the existing internal intervals.  When the ASN is posted, the inbound delivery is created but cannot be packed (status 52), and I get a message stating "The check digit of SSCC 10000001000001648 is incorrect. 5 is correct" (just using this number as an example).  In this case, the HU number actually had a leading zero, and changing the sample HU to start with a 5 results in the same message but stating that 0 is correct, which is kind of maddening.  The bottom line is that I have not configured an external number range before for handling units and am clearly missing something here.  Has somebody set this up successfully and can share your experience, or can point me to some good documentation?  I am searching OSS, the Business Process Expert Community, and the overall web in general and am not finding any relevant information.

    Per your info,
    in std, You cant maintain HU number ranges with respect to year.
    Still if you want to maintain, You have to use Userexit for Number ranges.
    Generally, all sales documents number ranges are not year specific . ONly FI documents are year specific.
    Why you want to have Year specific number ranges for HU's? - It is nothing to do with Year.
    Convince your client, This year dependant HU number ranges doesnt carry any value addition. Still client insists, only way to achieve this is "USEREXIT_NUMBER_RANGE"
    hope it helps

  • Assigning Handling Unit to the Inbound Delivery

    Could anyone please give me an example of code (using FM 'ws_delivery_update' and probably others) to assign a HU created by transaction HU02 (status PLND)to the inbound delivery (like VL32N).
    After such assignment I want to create an appropriate Transfer Order to move the HU to the warehouse. In my case ws_delivery_update doesn't update the HU positions table VEPO-VBELN.
    When tried to use FM 'L_TO_CREATE_DN' it just showed an error saying that 'No items or handling units to be placed in storage could be determined'.

    What parameters have I missed? Please, help!

  • Assign Serial numbers to handling Units in the Packing

    Hi,
    I'm using a Function module SERNR_ADD_TO_HU for to add Serial numbers into the handling units. Function module executed successfully and returns a commit value 'X', but table SER06 was not updated. Is there any thing i'm missing (or) is there any other function module for to add serial numbers to the handling uints.
    Thanks in Advance.
    Narasimha.

    Hi Narasimha.
    You can use FM WS_DELIVERY_UPDATE to update serial numbers in HU assigned to deliveries.
    I've just finished the code (it took me about 4 days to get it right!!! it was driving me crazy, but it's working now!!!).
    Please find a sample code below:
    DATA FOR BAPI WS_DELIVERY_UPDATE
      DATA:
            wa_vbkok_wa         TYPE vbkok,
            wv_delivery         TYPE likp-vbeln,
            bt_vbpok_tab        TYPE TABLE OF vbpok,
            bt_it_sernr_update  TYPE shp_sernr_update_t,
            bt_verko_tab        TYPE TABLE OF verko,
            bt_verpo_tab        TYPE TABLE OF verpo,
            bt_it_verpo_sernr   TYPE TABLE OF hum_verpo_sernr,
            bt_it_packing_sernr TYPE TABLE OF hum_rep_sernr,
            bt_et_created_hus   TYPE TABLE OF vekpvb,
            bt_prot             TYPE TABLE OF prott,
            wa_vbpok_tab        TYPE vbpok,
            wa_it_sernr_update  TYPE shp_sernr_update_t WITH HEADER LINE,
            wa_verko_tab        TYPE verko,
            wa_verpo_tab        TYPE verpo,
            wa_it_verpo_sernr   TYPE hum_verpo_sernr,
            wa_it_packing_sernr TYPE hum_rep_sernr,
            wa_et_created_hus   TYPE vekpvb,
            wa_prot             TYPE prott,
            wa_ef_error_sernr_update TYPE xfeld.
    UPDATE DELIVERY
    [0]
    ... DELIVERY - HEADER ...................................
      MOVE s_vbeln    TO wv_delivery.                          "delivery number
      MOVE s_vbeln    TO wa_vbkok_wa-vbeln.                    "delivery number
      MOVE s_vbeln    TO wa_vbkok_wa-vbeln_vl.                 "delivery number
      MOVE 'J'        TO wa_vbkok_wa-vbtyp_vl.
    [1]
    ... DELIVERY ITEM - CONFIRM PICKING .....................
      MOVE s_vbeln    TO wa_vbpok_tab-vbeln_vl.
      MOVE '00010'    TO wa_vbpok_tab-posnr_vl.
      MOVE s_vbeln    TO wa_vbpok_tab-vbeln.
      MOVE '00010'    TO wa_vbpok_tab-posnn.
      MOVE '2'        TO wa_vbpok_tab-pikmg.
      APPEND wa_vbpok_tab TO bt_vbpok_tab.
    [2]
    ... DELIVERY ITEM - UPDATE SERIAL NUMBERS ...............
      MOVE s_vbeln    TO wa_it_sernr_update-rfbel.
      MOVE '00010'    TO wa_it_sernr_update-rfpos.
      MOVE i_sernr1   TO wa_it_sernr_update-sernr.
      APPEND wa_it_sernr_update.
      MOVE i_sernr2   TO wa_it_sernr_update-sernr.
      APPEND wa_it_sernr_update.
      APPEND LINES OF wa_it_sernr_update TO bt_it_sernr_update.
    [3]
    ... CREATE HU ASSIGNED TO DELIVERY ......................
      MOVE 'BP02'     TO wa_verko_tab-vstel.
      MOVE s_matnr    TO wa_verko_tab-vhilm.
      MOVE 'E'        TO wa_verko_tab-exida.
      MOVE 'BP01'     TO wa_verko_tab-werks.
      MOVE '0002'     TO wa_verko_tab-lgort.
      MOVE '01'       TO wa_verko_tab-object.
      MOVE s_vbeln    TO wa_verko_tab-objkey.
      APPEND wa_verko_tab  TO  bt_verko_tab.
    ... EXECUTE BAPI (PICKING & HU CREATION) ................
      CALL FUNCTION 'WS_DELIVERY_UPDATE'
        EXPORTING
          vbkok_wa                           = wa_vbkok_wa
          synchron                           = 'X'
        NO_MESSAGES_UPDATE                 = ' '
          commit                             = 'X'
          delivery                           = wv_delivery
          update_picking                     = 'X'
          nicht_sperren                      = space
          it_sernr_update                    = bt_it_sernr_update
       IMPORTING
          ef_error_sernr_update              = wa_ef_error_sernr_update
       TABLES
          vbpok_tab                          = bt_vbpok_tab
          verko_tab                          = bt_verko_tab
          et_created_hus                     = bt_et_created_hus
          prot                               = bt_prot.
      CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'.
    [4]
    ... PACK ITEMS ..........................................
      LOOP AT bt_et_created_hus INTO wa_et_created_hus.
    ... ITEMS:
        MOVE wa_et_created_hus-exidv   TO  wa_verpo_tab-exidv_ob.
        MOVE wa_et_created_hus-exidv   TO  wa_verpo_tab-exidv.
        MOVE '1'       TO wa_verpo_tab-velin.
        MOVE i_matnr1  TO wa_verpo_tab-matnr.
        MOVE s_vbeln   TO wa_verpo_tab-vbeln.
        MOVE '00010'   TO wa_verpo_tab-posnr.
        MOVE '2'       TO wa_verpo_tab-tmeng.
        MOVE 'BP01'    TO wa_verpo_tab-werks.
        MOVE '0002'    TO wa_verpo_tab-lgort.
        MOVE '2'       TO wa_verpo_tab-anzsn.
        MOVE s_vbeln   TO wa_verpo_tab-rfbel.
        MOVE '00010'   TO wa_verpo_tab-rfpos.
        APPEND wa_verpo_tab TO bt_verpo_tab.
    ... SERIAL NUMBERS:
        MOVE wa_et_created_hus-exidv   TO wa_it_verpo_sernr-exidv_ob.
        MOVE s_vbeln                   TO wa_it_verpo_sernr-belnr.
        MOVE '00010'                   TO wa_it_verpo_sernr-posnr.
        MOVE i_sernr1                  TO wa_it_verpo_sernr-sernr.
        APPEND wa_it_verpo_sernr       TO bt_it_verpo_sernr.
        MOVE i_sernr2                  TO wa_it_verpo_sernr-sernr.
        APPEND wa_it_verpo_sernr       TO bt_it_verpo_sernr.
      ENDLOOP.
      MOVE '1'                         TO wa_it_packing_sernr-zeile.
      MOVE i_sernr1                    TO wa_it_packing_sernr-sernr.
      APPEND wa_it_packing_sernr       TO bt_it_packing_sernr.
      MOVE i_sernr2                    TO wa_it_packing_sernr-sernr.
      APPEND wa_it_packing_sernr       TO bt_it_packing_sernr.
    ... HU HEADER:
      CLEAR bt_verko_tab.  REFRESH bt_verko_tab.
      MOVE wa_et_created_hus-exidv TO wa_verko_tab-exidv.
      APPEND wa_verko_tab TO bt_verko_tab.
    ... EXECUTE BAPI (PACK ITEMS INTO HU) ...................
      CALL FUNCTION 'WS_DELIVERY_UPDATE_2'
        EXPORTING
          vbkok_wa                           = wa_vbkok_wa
          synchron                           = 'X'
          commit                             = 'X'
          delivery                           = wv_delivery
       TABLES
          verko_tab                          = bt_verko_tab
          verpo_tab                          = bt_verpo_tab
          it_verpo_sernr                     = bt_it_verpo_sernr
          it_packing_sernr                   = bt_it_packing_sernr
          prot                               = bt_prot.
      CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'.
    Hope it helps!
    This is my first post in this forum. Don't forget to vote if the solution suits you!
    Thanks,
    -ct-

Maybe you are looking for

  • Data issue in IDOC

    Hi Experts, I do the following steps to generate IDOC for Passing over payroll data to ADP. I run the payroll and Run the coombined Payroll export and go to WE05 to chk for idoc. I have some data issue here. I need the IDOC to Pick 0167 infotype info

  • Why can I no longer open a PE image directly in PE 11 by simply double clicking the image?

    In contrast to previous versions, for whatever reason, I cannot open a PhotoShop Elements image directly by simply 'double clicking' on the image. When I do this with PE 11, PE 11 opens blank and I then have to go to the Open menu and find the image

  • Query on Encrpytion and Decryption in FTP server

    Hi Experts, We are currently using SFTP receiver adapter in one of our interface. Our query is, is it possible to do encryption and decryption of file in the sender and receiver FTP channel. Your inputs are welcome. Thanks in Advance. Regards Suganya

  • Pictures and Scanned images are now gray boxes

    I have Adobe Reader XI and it will no longer show images or allow me to scan from my printer.  I have a mac, and have always been able to create pdfs and scan to them until the past few days. My version is up to date. Images in pdfs and the scanned d

  • Solaris 10 for desktop use?

    Hello. I've got a Dell Inspiron 9400 (intel graphics card) laptop and I have a dual boot: Windows Vista in one partition and Debian Lenny on the other. I'm seriously thinking about the possibily of uninstall Debian and install Solaris 10 and configur