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

Similar Messages

  • 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

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

  • No goods receipt possible for purchase order Number and Item number.

    Hello experts,
    When I create a Goods Reciept with reference to Purchase Order using BAPI_GOODSMVT_CREATE, the following error message appears.
    No goods receipt possible for purchase order <PO number> <line item number>.
    But the GR is getting created manually using Transaction MIGO for the same PO number.
    I found some blogs to check for deletion indicator and Movement type and quantity, when I searched SDN for the same Issue.
    In my case 
    1.deletion indicator is not set for the Purchase order line items
    2.And Movement type is 101
    3.And gm_code is 01.
    Could anyone please suggest me, what else could be the reason for this error?

    Here is the code what i have written.
      f_gmvt_header-pstng_date = sy-datum.
      f_gmvt_header-doc_date   = sy-datum.
      f_gmvt_header-pr_uname   = sy-uname.
      f_gmvt_header-ref_doc_no = p_ebeln.
      f_goodsmvt_code_tmp        = '01'.
    * Looping the PO details.
      CLEAR: gf_item,f_gmvt_item.
      LOOP AT gt_item INTO gf_item.
    * fill the bapi item structure details
        f_gmvt_item-material   = gf_item-material.
        f_gmvt_item-plant      = gf_sbms-werks.
        f_gmvt_item-stge_loc   = '0001'.
        f_gmvt_item-move_type  = '101'.
        f_gmvt_item-po_number  = p_ebeln.
        f_gmvt_item-po_item    = gf_item-po_item.
        f_gmvt_item-entry_qnt  = gf_item-quantity.
        f_gmvt_item-entry_uom  = 'PC'.
        f_gmvt_item-entry_uom_iso = 'PCE'.
        f_gmvt_item-po_pr_qnt = gf_item-quantity.
        f_gmvt_item-orderpr_un = 'PC'.
        f_gmvt_item-orderpr_un_iso = 'PCE'.
        f_gmvt_item-no_more_gr = 'X'.
        f_gmvt_item-ref_doc    = p_ebeln.
        f_gmvt_item-prod_date  = sy-datum.
        f_gmvt_item-mvt_ind    = 'B'.
        f_gmvt_item-move_reas  = '101'.
        f_gmvt_item-vendor      = gf_lfm1-lifnr.
        APPEND f_gmvt_item TO t_gmvt_item.
        CLEAR f_gmvt_item.
      ENDLOOP.
    * cALL THE bapi fm FOR gr POSTING
      CALL FUNCTION 'BAPI_GOODSMVT_CREATE'
        EXPORTING
          goodsmvt_header               = f_gmvt_header
          goodsmvt_code                 = f_goodsmvt_code_tmp
    *     TESTRUN                       = ' '
    *     GOODSMVT_REF_EWM              =
       IMPORTING
         goodsmvt_headret              = f_gmvt_headret
    *     MATERIALDOCUMENT              =
    *     MATDOCUMENTYEAR               =
        TABLES
          goodsmvt_item                 = t_gmvt_item
    *     GOODSMVT_SERIALNUMBER         =
          return                        = t_return
    *     GOODSMVT_SERV_PART_DATA       =
    *     EXTENSIONIN                   =
      IF sy-subrc = 0.
    * For commit the changes use BAPI_TRANSACTION_COMMIT FM.
        CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
          EXPORTING
            wait = 'X'.
    *      MOVE: f_GMVT_HEADRET-MAT_DOC   TO WA_DET-MBLNR,
    *            f_GMVT_HEADRET-DOC_YEAR  TO WA_DET-MJAHR,
    *            f_GMVT_HEADER-REF_DOC_NO TO WA_DET-EBELN.
    *      APPEND WA_DET TO IT_DET.
    *      CLEAR WA_DET.
      ENDIF.

  • Mistakenly reversed goods receipt after invoice posted

    Hi experts,
    I already post this question in EAM forum, but moved to here as I think I will get more useful replies.
    I have a PO that was goods receipted and invoiced receipted. Later on, the GR was reversed, and now that entry needs to be reverse... We're having a negative value in our reports that should not be there.
    What would be the way to fix this? Is it OK that the goods receipted may be reversed after invoice receipted.. i.e. after an invoice has been posted? In Tx. OMBZ the Mvt. 102 has "RevGR desp. IR" unchecked.
    Kind Regards,
    Andres.
    Original thread: Reverse goods receipt after invoice posted.

    Just do a GR again for the PO and this should fix your problem. The original document and reversal documents will remain there with another GR document against PO.
    Unless the payment against the invoice hasnt been made, your preceding documents can be changed. Once the payment has been made, you should not be able to change any preceding document.
    Edited by: Afshad Irani on May 31, 2010 9:08 AM

  • No goods receipt possible for purchase order

    Hi Experts,
       Received the goods 10 PC from Vendor on one date, then reversing the GRN on another date, So now GRN total quantity is zero. I am getting error  u201CERROR - 036No goods receipt possible for purchase order 43086066 00220 " while again i am trying to do GRN. Please help me to solve the problem.
    Thanks

    Hi,
    Try to do the GR wrt Mat doc # which you have cancelled.
    regds,
    CB

  • PO 'No goods receipt possible for purchase order'

    Hi gurus!
    While trying to make Confirmation of a PO in the SRM Portal the user is getting the error 'No goods receipt possible for purchase order'
    The scenario used is Classic, so PO is replicated directly to the R/3 system.
    Any idea why this is happening?
    Thanks a lot!

    Hi, thanks for the quick reply!
    Where i can check the Item category?
    I found a field called 'subitem category' but it's blank
    with this possible values:
    1 Variant                               
    2 Discount in kind: inclusive bonus qty.
    3 Empties                               
    4 Discount in kind: exclusive bonus qty.
    5 Prepack item                          
    6 Display item                          
    7 Set item                              
    8 Interchangeable items (IBU: A&D)      
    9 Pre-packing (SLS items)               
    H GT Bill of Material, Header Relevant  
    I GT Bill of Material, Item Relevant    
    About PO type i think it's EC (doc_type?), in R/3 is shown as EBP PO
    I checked in backend system, in the item details > Delivery and the 'Goods Receipt' is checked.

  • Function module to check whether Goods Receipt of a Purchase Order is done.

    Hi,
    Is there any function module to check whether Goods Receipt of a Purchase Order is already done?
    Taking into consideration reversals.
    Thanks.

    Hi,
    I think u can do this by using a simple select query.
    u have to go in EKBE table.
    put the PO no. in field EBELN + EBELP(line item)  and get the material docuement no.  in field BELNR + BUZEI(line item).
    Thanks
    Jitendra

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

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

  • Goods receipt for a Project Order

    Hi,
    I am trying to do goods receipt against a project order but getting the following error:
    Goods receipt for purch. order" is not allowed (WBS BUILDING CONSTRUCTION)
    I am doing this in order to book actual cost against a WBS element.
    Kindly Help.
    Regards
    Karan

    Hi,
    The system status of WBS should be REL ie released. Also check whether current user status is restricting business operation of GR.
    Hope this helps.
    Regards

  • Problem for Goods Receipt for Subcontracting Purchase Order

    Dear all,
    Presently, we are using SAP version 4.6C and we need to introduce GR for
    Subcontracting Purchase Order. We have developed a ABAP program to handle
    subcon Goods Receipt by uploading flat-files from our subcontractor. The
    scenario is as follows :
    Goods Receipt for Subcontracting Purchase Order
    1. In the ABAP program, function BAPI_GOODSMVT_CREATE will be used for goods
    movement.
    2. Data provided to the function are as follows :
    - Posting date
    - Document date
    - Material number
    - Plant
    - Storage location
    - Batch
    - Movement type (101)
    - Quantity
    - Purchase order number
    - Purchase order item
    - Movement indicator (B - Goods receipt for purchase order)
    3. The function will do data verification and automatically determine GI
    item for subcon stock:
    - Movement type (543)
    - Special stock (O - parts prov. vendor)
    - Material
    - Quantity
    - Plant
    Our problem is that :
    Only the GR item in the interface is to be transferred and the GI item is
    determined by the system. So, the quantity for subcon stock cannot be
    changed using this BAPI. Then the system will continue processing the goods
    receipt and create material document.
    Manually, by using transaction code MIGO, the user can display the subcon
    stock data and then change the quantity.
    By using transaction code MB01, after the user fills in all the GR fields,
    the system comes to line item 002 (subcon stock data) and then quantity can
    be changed.
    As per user requirement, quantity for GI item must be same with the quantity
    that has been transferred to subcon vendor in Delivery for Subcon
    (transaction code VL02N).
    We cannot achieve this requirement by using the BAPI mentioned above. Would
    appreciate any valuable help from anyone who is able to help us on this
    matter. Are there any other BAPI's that can help us to achieve the same
    result ?
    Thank you in advance and best regards.

    As far as i understood the problem I suggest u to create the
    BDC according to user actions that are performed in he manual
    operation.
    I can't say that the BAPI performs the exac solution what you want.
    I have done some BDC work using MB01 and suggest you to be careful
    and try to keep the complete in the logic as some chages in rows in BDC will
    change the complete scenario.And throw correct quantity val in correct
    material
    row.
    This methodology will help u even in mass uploads.
    Or in case of automation u can perform the call transaction BDC in
    background mode.
    so As per my understanding bdc program is the solution. pls try and let me
    know.

  • No goods receipt possible for purchase order 'PO#" "Lineitem"

    Hi gurus,
    Please help on below error.
    While doing return to vendor transaction using BAPI 'BAPI_GOODSMVT_CREATE' error 'No goods receipt possible for purchase order 'PO#" "Lineitem"' was encountered. As checked, all data are correct including the plant, sloc, PO#, stocks, batch.
    Please kindly advice on how to resolve the issue.
    Thank you in advance.

    Hi,
    Few things which immediately comes to my mind.
    1. Check if the PO is released?
    2. Check if the confirmation control is properly set in Confirmations tab of item details of a PO.
    3. Check if the Goods Receipt indicator is ticked at item level of PO.
    I hope these helps.
    Kind Regards,
    Prakash

  • Final Delivery indicator in Goods Receipt tab in Process Order

    Hello Friends,
    I have one doubt, thought to discuss with you.Whats the importance of Final delivery indicator in Process order.I know that if any further goods receipt is not accepted against the order than we should tick this indicator,because of which system sets the DLV status at order header level or if goods receipt qty against the order is equal to order qty than system automatically sets this indicator.
    when we do the settlement of order than system looks either for TECO or DLV status of order , if its find  there than system consider such orders for settlement.
    Now my question is suppose i have done the Goods Receipt against the order less than the order qty, than system will set the PDLV Status against that order.Now no further goods receipt is  expected against that order.Now i haven't set the Final delivery indicator in goods receipt tab in process order.But i have technically completed the order,because of which system has set the TECO status against that order.
    Will system allow me to settle such order?and viceversa, if order has DLV status at header level and no TECO status, than system will allow to settle such order?If yes than whats the other use of Final Delivery indicator in process order?Is it important to set that indicator from settlement point of view only?
    As far as i know, system allows us to do,but on this issue i have got different answers from different person.So bit confused.
    Thanks and Regards,
    Jitendra Chauhan
    Edited by: jitendra chauhan on May 8, 2009 8:42 AM

    Dear,
    Will system allow me to settle such order?and viceversa, if order has DLV status at header level and no TECO status, than system will allow to settle such order?
    Yes
    If yes than whats the other use of Final Delivery indicator in process order?Is it important to set that indicator from settlement point of view only?
    You need to Final confirm (CNF) the Order to get the DLV Status.
    Or if the Delivery completed indicator is set in the Process Order, then also th System status will be DLV
    If your order quantity10 and you produced 10 quantity it means that order is fully deliver  then Final delivery will automatically be set.
    The "delivery completed" indicator has the following effects:
    o The item is regarded as closed, even if the total quantity was not delivered.
    o A further delivery is not expected, may, however, arrive.
    If status is DLV then it cannot be a WIP stage where the the good are posted to stock and production is completed
    Please refer this thread fro DLV and TECO,
    Re: order settlement
    Regards,
    R.Brahmankar

Maybe you are looking for

  • The plug-in for the selected item... TR cRIO 9014

    Hi all, When opening project built in LabView 8.6 i get a warning (please find the attachement). I can not recollect what plug-in I need to start?  Can it be related to vi's written for RT? Maybe one of them utilizes toolkit I have not installed? Sol

  • Premiere Elements 9 for Mac Crashing Constantly

    Hi, I recently installed Adobe Premiere Elements 9 on a brand new Imac with 4gb memory and a 1333 MhZ DDR3 processor.  And the program literally crashes about every 30 seconds.  I get maybe three tasks accomplished before it hangs, spins the ball and

  • Cisco Prime device challenge

    How do I connect via server console to cisco prime infrastructure? I can ssh and telnet to it. What happens if the CPI is  not  pingable? Kindly revert, Regards, Tioluwani

  • How cant i start with iphon 4g what program ineed to download to my pc to contact my iphone

    how cant i start with iphon 4g? what kind of program ineed to download to my pc to contact my ihone?

  • SpringLayout fails to resize

    re: Java Tutorial, How to Use SpringLayout http://java.sun.com/docs/books/tutorial/uiswing/layout/spring.html run SpringDemo3.java, given as an example on this page. resize (expand) the frame by grabbing a border. this works. now attempt to resize (c