Goods Receipt of co-product (handling unit)

Hi everybody,
I wonder if it is possible to make goods receipt of co-product using standard transaction (like COWBHUWE)?
I can pack co-product with reference to an order, but when I try to post packed HU (with COWBHUWE or function module) material/co-product inside HU is switched with material defined in production order header (main material).
I can post GR of co-product with MIGO (or FM equvialent) and pack co-product later; but in that case HU has no reference to production order.
Is there any way (standard transaction or function module) to post GR of co-product HU with reference to production order?
Thank you for your answers.
Marko

Marko Kunsic wrote:
I can post GR of co-product with MIGO (or FM equvialent) and pack co-product later; but in that case HU has no reference to production order.
In case we posted goods receipts of co-product using MIGO, we have to create/pack handling units afterwards.
Is it possible to create HU with reference to production order (VEKP-VPOBJ = '09') or somehow regularly insert data about production order number into 'free' HU (VEKP-VPOBJ = '12') history?
There is an option to fill this data (production order number) into field of VEKP, but this seems not to be the optimal way.
Thank you for your help.
Marko

Similar Messages

  • Goods Receipt with respect to Handling Unit (Transaction u0096 MIGO)

    Hi All,
    A delivery is created for stock transport order for goods movement from Plant XXXX (Storage Location – YYYY) to Plant XXXX (Storage Location – ZZZZ).
    Handling Units are packed on delivery and delivery is post goods issued from Plant XXXX (Storage Location – ZZZZ).
    While posting goods receipt (Transaction – MIGO) without selecting “Via Handling Units” system populates the “packaging material” line item whereas when “Via Handling Units” is selected (in other words – when tried to post Goods Receipt with respect to Handling Units) system doesn’t populate the associated “packaging material”.
    Requirement is to populate “packaging material” line item while posting Goods Receipt with respect to Handling Unit.
    Plz guide me.
    Satish

    Hi Vatcan,
    Chek the Inbound Delivery 1st weather you refer the right PO in it
    You can also chek in  PO i
    1 Me23n Go to confirmation tab here you can see the  Inbound delivery  quantity
    2 Chek  which reference document you recived the goods,  (i.e You recived the goods with reference to PO or  Inbound delivery)
    2 Coz if you refer the inbound delivery then syestem will deafult show the inbound quanity
    And yes the actual quanity will update in inbound delivery if you refer the inbound deivery while reciveing the goods

  • 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..

  • Post goods receipt of HU items (Handling unit) inbound deliveries

    Hi all,
        could u plz tell me how to post goods receipt of HU 
        items. i am using BAPI Goods_movment_create
        ( movement indicator 'B' and '01') but it
        is giving error. i am not passing purchase number
        and item , insted i am passing inbound delivery 
        number and item. plz help me out.
    thanks and regards
    manish

    PLease read the FM documentation.
    It is given very clearly.
    Regards,
    ravi

  • Variance Journal Appear in Reversal Goods Receipt of CO Production Order

    Good afternoon
    Currently we face a problem that variance journal appear when doing Reversal Goods Receipt (MBST) of CO Production Order.
    But the variance journal appear after we reverse goods receipt for the second time, third time, and so on.
    No problem for the first time cancellation.
    Here is the example:
    Step 1. We do the Goods Receipt on CO Production Order #1
    Journal
         Inventory (Db)                       36000
              COGM Allocation (Cr)                  36000
    Step 2. We do the Goods Receipt Reversal on CO Production Order #1 (with reference to Step 1)
    Journal
         COGM Allocation (Db)          36000
              Inventory (Cr)                               36000
    Step 3. We do the Goods Receipt again on CO Production Order #1
    Journal
         Inventory (Db)                      36000
              COGM Allocation (Cr)                  36000
    Step 4 (Problem). We do the Goods Receipt Reversal again on CO Production Order #1 (with reference to Step 3)
    Journal
              Inventory (Cr)                                   36000
         COGM Allocation (Db)         54000
              Purchase Price Variant (Cr)              18000
    Why Variance appear in Step 4 ? Is there any mistake ?
    Note:
    *We use Price Control "V" for this material
    *No Goods Issue were made
    *No Settlement Process were made
    *Only this 4 transaction for this CO Production Order
    Thanks in advance for your help

    Done... Closed... Please refer to SAP Notes 1666871.
    Thx...

  • Goods Receipt of Co-Products in Confirmation

    Hi experts,
    I have a question for all that can clear this up for me:
    Using Co-Products is not possible to automatically post the goods receipt for Co-Products. There's even a SAP Note for this (38108).
    But checking the customizing in the activity "Define Confirmation Parameters" there's an option in the order types where you can tick a box called "GR of Co-products".
    If you check the SAP assistant of this box you can read this:
    Goods Receipt of Co-Products in Confirmation
    Defines that when manufacturing orders are confirmed, the goods receipt of co-products can also be posted.
    So my question is:
    If at confirmation we cannot post automatic goods receipt for Co-products why do we have this little box (GR of Co-products)? What is this for?
    Hope someone knows and can explain it to me.
    Thanks a lot.
    Regards.

    Yes, you are totally right.
    I've checked in other system and the box does not show up.
    I've been told that SAP Mill was installed in the system i'm using. I think it can be because of that since SAP Mill allows automatic goods movement at confirmation.
    Thanks a lot for your reply.
    Regards.

  • Goods Receipt of Co Product

    Dear Experts,
    During the goods receipt of co product using transaction code MB31-101 mvt type, system not automatically calculating the proportion qty of co product. For example, I have a production order of 10Kg. When I produce the 10 kgs of main product, 5 kgs of co product get produced. When I do the confirmaion of 5 kg oc main product sysyen should automatically calculate the co product receipt qty as 2.5 kgs in MB31 transaction. How this can be mapped?

    As of SAP ECC 6.0, Enhancement Package 6 (EA_APPL_606) Business Function Optimizations in Production (LOG_PP_CI_1) is available. This business function allows you to use automatic goods receipt for co-products when entering confirmations for production and process orders.
    The confirmation process has been harmonized with the standard confirmation process and is now more user friendly.
    The automatic goods receipt process has significantly reduced the number of process steps previously required. When you have to confirm production orders for which there are co-products, you no longer need to call additional transactions.
    When you confirm production orders, the system automatically calculates a proposal for the goods receipt or the item assigned to the operation with the corresponding quantity calculated. You can also use this function in milestone confirmation.
    Note that the attribute for co-products and the indicator for automatic goods receipt must be set for the material.

  • How do I link manufacturing label designed in wwi to print automatically during the time of goods receipts from the production

    Hello
    Is there any way to link label to print automatically from the printer at the time of TECO ,Goods receipts from production and PGI at the time of delivery to the customers .
    Regards,
    M D

    Hi !
    GLM supports Automatic Label Print requests & Automatic Label Printing(immediately after generation of automatic print requests). But this is limited to Delivery order, Process Order & Handling Unit as standard. For other scenarios, you will have to customize.
    Automatic Print Request Generation - Global Label Management (EHS-SAF-GLM) - SAP Library
    http://help.sap.com/erp2005_ehp_07/helpdata/en/32/a81051e71e2514e10000000a44176d/content.htm?frameset=/en/00/704e3340074776bb6877aa7edb7394/frameset.htm&current_toc=/en/54/c86cb93bdc4d698eb8e2524b59692b/plain.htm&node_id=38
    But this is possible with "Enhanced" GLM. It's better explained here,
    New changes for GLM in EHP7.0 and ERP 6.0
    Regards
    Subash Sankar

  • Avoid posting of Goods receipt of finished product without consumption of components in Subcontracting process

    I have one requirement:
    I provide components using movement type 541 to the subcontracting vendor.
    Now system will allow the goods receipt of the finished product using movement type 101.
    If the components which are to be consumed using movement type 543 O are unchecked when doing goods receipt of the finished product then system will allow to do the goods receipt.
    As a result of which the component consumption will not be done.
    Subsequent adjustment can be done but,
    I want to have a check that without consuming the components the system will throw an error message when tried to do goods receipt using movement 101.
    Please advice if it can be done, if so how to achieve it.

    Hi,
    It depends on what you want your subcontractor to do with the faulty raw material stock - if you want them to scrap it you can scrap stock from subcontractor stock using movement type 551 and special stock "O" (the system should prompt you to enter the vendor code). If you want it returned for you to scrap it - movement 542 to return it then scrap it from your own stock.
    You shouldn't receive an additional 20 of the finished parts - as you only received 80 not 100. Close the purchase order off to close off the balance of 20 remaining.
    Thanks

  • Field "GR Non-valuated" in tab "Goods receipt" of the production order

    Hi,
    When creating a production order, the field "GR Non-valuated" in tab "Goods receipt" is checked by default, due to my assessment customizing.
    This field indicates to the system that it should not create any accounting document, whereas I would like to create one. Does anyone know how to withdraw this automatically check?
    FYI, I do not use COPA and the very basic of CO-PC and I would like to create automatically a default assessment rule (cost center).
    Thanks for your help.
    Ronan

    Hi,
    please note that this is not an MM, but a PP-SCF related issue. It does not belong to the forum ERP MM.
    The indicator AFPOD-WEUNB is set automatically as soon                  
    as you do not settle your production order to category 'MAT' (see                    
    settlement rule). If the order is not settled to a material, then the                
    Goods Receipt will not be valuated and the flag G/R Non-valuated (WEUNB)             
    is set. Only when you settle to a Material is the G/R Non-valuated not              
    set, and you will  receive FI postings in the case of such a movement.               
    This is standard system behaviour.                                                   
    Please review the following notes relating to settlement rules: 518496,              
    400400.                                                                               
    To make sure that the GR-Nonvaluated flag is not set in the                          
    production order, field KZBWS must already be filled with 'M' in the                 
    customer requirement. For that, please set the field KZBWS='M' for the               
    requirement class that is used (see 'General Customizing' in note                    
    459734). PLAF-KZBWS (indicator:valuation of special stock).  
    Regards,
    Edit

  • 545 Goods receipt from by-product from subcontracting

    Hi ALL,
    If a scrap component is entered with a negative quantity for the subcontract order, the receipt of the by-product is posted during goods receipt for purchase order or during the subsequent adjustment.
    Now, when i'm doing MIGO, it's automatically using mtype 545 + O to receive my scrap to vendor stock. The screen filed of special stock indicator (GOITEM-SOBKZ) is not changeable.  I want receive the scrap to normal unrestricted-use stock ( only 545 ) . So how to set the field be changeable?
    Thank you .
    Wayne.

    Hi
    By product will be received as special stock during goods receipt.
    To transfer the by-products quantities from the "stock of material provided to vendor" to the unrestricted-use stock, you please enter a transfer posting using movement type 542 (reversal of the provision of the components).
    warm regards
    sairam akundi

  • Goods receipt tab in production order

    hi all,
    may i know what is this goods receipt tab for in CO01?
    is it GR into inventory or GR into production order?
    thanks

    Hi Sam,
    The screen itself is self explanatory. Data in Goods receipt is being populated from master data and from configuration also. Few data can be changed in order level which will be valid only for this order.
    So the main things are,
    1. Type of stock(unrestricted/quality etc)
    2. GR proc time(comes from master data-Mat master)
    3. GR is possible or not/delivery completion etc)
    4. Under and over delivery tol(from mat master)
    5. Stor loc(Comes from different sources- Please refer the doc link-Default storage locatio selection for component)
    6. Batch -GR
    etc
    Regards,
    Krishnendu.

  • Auto Goods Receipt of By Product

    Hi all,
    When using By Products I need the By-Product to be automatically receipted. I believe this is possible if the by product is planned which it is. I assumed that the by product would be receipted when confirming the final operation. Does the by-product have to be back flushed and assigned to an operation to work.
    Thanks Again
    Stuart

    Hi Stuart
      You have to assign the By product component in B.O.M with a '-ve' sign.While
    confirming you will get it in goods movement tab as you get for auto gr 101 and GI
    261 and by product you will find 531 mvt there you can change the qty as you want to.
    Regards
    Shankar

  • Goods receipt of by product in subcontracting process

    the by-product are produced in subcontracting.
    we have to take back this by product into our company from the subcontractor.
    we have to use which movement type to take it back and the transaction code

    I think we need a better understanding of the stock in question. Different stock categories will require different movement types (since the mvmnt types are partly defined by the stock catagory).
    Also are these "by-products" to be recieved along with a finished good (FERT) as a consumption? (or do you actualy need the inv. available for putaway on the WM level)?
    If there is a finished goods reciept that will also take place and the stock is stock type "O' that needs to be consumed along with a finished goods then the material (by product) should be consumed from stock type "O' as part of the GR in MIGO.
    So two totaly different cenarios here,
    1. simply move the stock into your warehouse from the venders stock (MB1B transfer)
    2. consume the stock durring GR in MIGO as a componant type c0nsumtion of the goods that is issued along with the 101 MIGO GR. (separate movement type posted for the same line viewed as a drop down from the finished good material)

  • How to stop the goods receipt before issueing the goods for production orde

    Frndz,
    I have created a production order, now before even making the issue of rawmaterials from the inventory the system is allowing the goods receipt for that production order , kindly tell me the step by step procedure to check it.
    Regards,
    Srini

    Hi Srini,
    there are couple of ways to handle this situation..
    1. If you set all the components as Backflush relevant in Material Master or setting all Compoents tick in OPK4 will ensure that at the time of confirmation you will have all the components will be done auto GI.
    Now in your control key or Prod. scheduling profile specify that Auto GR.
    Now your GR & GI are linked.
    In OPK4, in the 2nd Tab page, termination of Goods Movements and Goods movements Ticked, so that when ever there is a problem with the components system will terminate the Confirmation.
    So there will not be any GR without GI.
    But, one can make GR with MB31 or MIGO
    (So this is an option but no fool proof method).
    2. Activating the User Satus (Status Profile) so that once the GI is done only you allow the Confirmation.
    (The settings we can discuss if required).
    3. Having the Use Exit..
    Enhancement - MBCF0002
    Functional Module - EXIT_SAPMM07M_001
    Include - ZXMBCU02
    Refer below links for further details..
    do not confirm without goods issue
    default quantity of confirmation(co11) should allowed in goods movements mb
    Revert for further discussion..
    Regards,
    Siva

Maybe you are looking for

  • Text message vibrate instead of alert sound

    i am in a text message conversation screen (as opposed to the main message screen that lists my messages), and my phone ringer is on with vibrate activated. however when i receive a text message within the conversation, it only vibrates with no sound

  • ShowOneTab with forEach - disappearing tabs

    I'm using the following code to generate a set of tabs. On initial load the tabs and the first set of components render correctly, but when I click to switch to another tab, all tabs disappear resulting in a blank page. organizerGroups is a list of g

  • 11g on SLES 10 x86_64 problem

    Hi I'm trying to install Oracle 11g Database (linux.x64_11gR1_database.zip) on SLES 10 x86_64 SP1 (2.6.16.46-0.12-smp) And I've got error while linking: Exception Name: MakefileException Exception String: Error in invoking target 'ioracle client_shar

  • CS3 fails to update

    Hi, I dont know if this is the right place for a problem with CS3, but every time I run adobe updater with my CS3 application on my Imac Mac Os 10.5.6, I get a message from the installer that "the update cannot be applied to the product".  At the bot

  • Is possible to run a windows (windows XP) in  a MAC OS ?

    My computer have two partitions (mac os Leopard, Windows XP) My computer boots on Mac OS. How to run a windows (Windows XP) in Mac OS. I need to have Mac OS and a windows with Windows XP. Best regards RV