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

Similar Messages

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

    Hi All,
    I try to follow the thread SAP ERP Manufacturing - Production Planning (SAP PP) to do it, however it is not working. I already created the status profile, assigned it to 'StatusProfile Header' in OPJH for the correct order type. However when I change the status to permitted GR, it is still not able to give me to do it in MIGO. Any idea?
    Thanks.

    Hi Justin,
    User status will not sutiable for your requirement, the best way is to use User exit or BADI
    Implement the BADI - WORKORDER_GOODSMVT in this there is method
    MANUAL_GOODS_RECEIPT under that
    write this code
    if_ex_workorder_goodsmvt~manual_goods_receipt.
    data: lt_resb type standard table of resb,
            wa_resb type resb.
    select * from resb into table lt_resb where rsnum eq i_order_header-rsnum and xloek eq space and bdmng gt 0.
    check sy-subrc eq 0.
    loop at lt_resb into wa_resb.
         if wa_resb-enmng < wa_resb-bdmng.
              message E499(sy) with 'Order is not fully consumed. Processing is STOPed'.
         endif.
    endloop.
    endmethod.
    Enhancement: MBCF0002
    Function module: EXIT_SAPMM07M_001
    Code for your copy pasting in the source code of ZXMBCU02.
    Remember to activate the program. In SMOD enter the enhancement, press F8 and then click on activate button.
    *& Include ZXMBCU02
    Regards,
    Sankaran

  • How to stop 261 and 262 MVT types after GR for production Order.

    hi,
    After GR [MB31] against the Production order,  261 and 262 movments should not be happen, but in  present proces its taking place,
    Client dont want to happen it,
    Can any body tell me how to controll this.
    Veera.

    Hi  Veerakumar ,
    You can TECO the production order if reqd since delivery complete status of the order.
    or you can go to system status and do as explained .
    Regards,
    Vimal

  • How to change the Profit centre in goods receipt before posting

    Hi All,
    when we are doing MB01,  material master and Purchase order  are  having different profit centres, since legacy has multiple profit centre for the same material.
    My requirement is to change the profit centre before posting a Goods receip with the Purchase order Profit centre.
    Is thre any user-exit, Badi or Substitutions for this requirement.  I have implimented the below code in the Badi
    MB_DOCUMENT_UPDATE.
    data : ls_xmseg type mseg.
    ls_xmseg-Profit Centre = .....
    ls_xmseg-prctr = '0020077170'.
    modify XMSEG from ls_xmseg transporting prctr .
    But i'm getting Data base update terminated message. Please help me in this.
    thanks,
    Ram.

    Dear Sir,
    But is T-code not working ....
    have you other code/ process so, pls. give me ....
    Pls sir
    Regards
    Jayesh Kanungo

  • My daughter has an iphone 5s and I have her old 3GS. She receives all my imessages that I rcv or send to other people. Can anyone advise how to stop this? we have removed the 3gs from her itunes account but it hasn't stopped the issue.

    My daughter has an iphone 5s and I have her old 3GS. She receives all my imessages that I rcv or send to other people. Can anyone advise how to stop this? we have removed the 3gs from her itunes account but it hasn't stopped the issue.

    There are a lot of posts in the forums today with people having problems with iMessage.   There was also a published outage yesterday, so it's possible there are still some issues that may be impacting you both.
    I would just wait it out - I'm sure it will be sorted out soon.

  • Goods receipt before an order is not fully consumed

    Hi all,
    can anybody tell me how to stop goods receipt before an order is not fully consumed?
    In my case the goods receipt is executing automatically by the confirmation.
    Thanks for your answers!

    Hi,
    You can control this requirement by activate User Exit or BADI, see below source code
    Take help with your ABAPer on this and modify as per your required
    User Exit
    Enhancement: MBCF0002
    Function module: EXIT_SAPMM07M_001
    Code for your copy pasting in the source code of ZXMBCU02.
    Remember to activate the program. In SMOD enter the enhancement, press F8 and then click on activate button.
    *& Include ZXMBCU02
    data: lt_resb type standard table of resb,
    wa_resb type resb.
    select * from resb into table lt_resb where aufnr eq i_mseg-aufnr and xloek eq space and bdmng gt 0.
    check sy-subrc eq 0.
    loop at lt_resb into wa_resb.
    if wa_resb-enmng < wa_resb-bdmng.
    message E499(sy) with 'Order is not fully consumed. Processing is STOPed'.
    endif.
    endloop.
    BADI
    Implement the BADI - WORKORDER_GOODSMVT in this there is method
    MANUAL_GOODS_RECEIPT under that
    write this code
    if_ex_workorder_goodsmvt~manual_goods_receipt.
    data: lt_resb type standard table of resb,
    wa_resb type resb.
    select * from resb into table lt_resb where rsnum eq i_order_header-rsnum and xloek eq space and bdmng gt 0.
    check sy-subrc eq 0.
    loop at lt_resb into wa_resb.
    if wa_resb-enmng < wa_resb-bdmng.
    message E499(sy) with 'Order is not fully consumed. Processing is STOPed'.
    endif.
    endloop.
    endmethod.
    Pls refer below thread
    https://forums.sdn.sap.com/post!reply.jspa?threadID=1284289
    Regards,
    Sankaran

  • Post Goods Receipt before putaway

    Hi Experts,
    We're planning to implement SAP WM of SAP ECC 6.0. We're using inbound delivery for our goods receiving into the warehouse.  The process steps  that I found out from the SAP document is as follows:
    1.  Create inbound delivery
    2.  Pack if necessary
    3.  Putaway
    4.  Confirm Putaway
    5.  Post Goods Receipt
    We've business requirement to do the Post Goods Receipt before putaway.
    I do not find the configuration for this requirement.  
    Could some-one help me on this?  Any help on this would be greatly appreciated.
    Please send me the documents how to configure this.
    Thank you.
    with regards,
    Muthu Ganapathy.

    Hi Philip,
    Thank you for your response.  I have found-out the same option as you mentioned from the 4.6c release notes.  I tried and it's still not working.  Don't know the cause for not working.  Any thought on this?  Please let me know.
    Thank you again,
    with regards,
    Muthu Ganapathy.

  • Wanted to block the Goods Receipt but not the Invoice Receipt

    Hi
    After the partial delivery of the Goods Receipt, i am manually setting the "Delivery completed" indicator in the PO. I dont want any future delivery against this PO. But it is allowing me to do a GR even though the Delivery Completed Indicator is set.
    How can i stop all the future deliveries agains the PO. But at the same time, is should not block the IR. I tried this by locking the PO item. It is not allowing me to do any GR after locking the same. But at the same it is not allowing me to do the IR also.
    Is there any way i can stop the GR, but do the IR for the purchase order ? Please clarify. Points assured.
    Thanks
    Venkat.

    Hello,
    If u maintain the latest GR date as a current date in the PO item level - delivery tab, then system will not allow to do further GR in future.
    Latest Possible Goods Receipt
    This is the latest acceptable date for goods receipt (GR).
    If goods are received after this date, you will receive either a warning message or an error message, depending on the system setting.
    If you receive an error message, you will not be able to post the GR.

  • Serial number optional at goods receipt but mandatory at goods issue?

    How can we make serial number optional at goods receipt but mandatory at goods issue?
    Thanks in advance for the answers....

    Hi,
    Not in front of the system, but if i remember correctly one of these enhancements has a check on serial numbers,
    1. User exit -> MBCF0002
    2. BADi -> WORKORDER_GOODSMVT or MB_DOCUMENT_BADI
    Check & revert if it meets your need.
    Regards,
    Vivek

  • What is the  FM/BAPI  to get the Goods Receipt  Based on the Purchase Order

    Hi ,
    I want FM/BPI  to get the Goods Receipt  Based on the Purchase Order in MM.
    Thnx in advance

    Hi
    BAPI_GOODSMVT_CREATE
    Thanks & Regards
    Kishore

  • Goods Receipt is allowed through MIGO  for PO's though they hav the confirm

    Goods Receipt is allowed through MIGO  for PO's though they hav the confirmation control key. where as its should allow based on ASN(inbound Delivery).
    Not sure if any system changes has to be made or anything else. please suggest.
    Thanks

    Hi Dear <
      You can also recived the goods  with reference to inbound Delevery,
    1  Select  In Confirmation  Tab Con con key while in  Creating PO
    2  Create a Inbound delevry from T.code: VL31n
    3 Once you create the Inbound delevery wth reference to PO, The inbound delevery no will be propulated in  Confirmation Tab of PO
    4 you can Do the mIGO  with reference to that Inbound delevery

  • Goods Receipt not Increasing the Inventory and creating a variance instead

    Hi Experts,
    We have this situation in some of the goods receipts and not all of the goods receipts. In some Goods receipts, what is happening is:
    1 - When we copy the goods receipts from the PO and add the goods receipts, the G/L account for Inventory Variance is Debiting instead of Debiting the the Inventory in that particular warehouse. I want to change the G/L from Inventory Variance Account to Inventory Account. I have checked all the settings but I am not able to understand why this is happening. I did the same Goods in the test server, everything was perfect. Like this we have couple of Goods Receipts that hit the wrong G/L. We use SAP Business One 2007A PL:08.
    Any Idea why this is happening only to some goods receipts? Would greatly appreciate your earliest response.
    Please let me know the checkpoints as well if possible. May be I am missing something here.
    Thanks

    Hi all ,
    You can set other warehouse for that particular Item Or Create Duplicate Item From  item Master and Delete old one and set quantity as per GL Or your requirement.
    Thanking you,
    Ganesh Mahajan

  • Report execute time nd how many records will be returned before hitting the "run" option?

    Post Author: Prasad15
    CA Forum: WebIntelligence Reporting
    Is there any way to know how long the report executes and how many records will be returned before hitting the "run" option?
    Regards
    Prasad

    To know if the report is going to return more than 10,000 records, you first have to run the query with a 'select count(1) from ... where ...' (with the same from and where clauses as you normal query). Since this takes about the same time as runnng your report, I wonder if you really gain anything (although formatting may take some time too).
    You may simplify the select count(1) query by omitting all the lookup tables that are only needed for formatting. That way your query may run a lot faster. You can put this in your after parameter form trigger.

  • Omputcer has been installed with a German programme, originally programmed in English with English keyboard. The keys are the same as before but the keyboard is now programmed in German and I cannot find the way to enter @. How can I do it?

    My computer has been installed with a German programme, originally programmed in English with English keyboard. The keys are the same as before but the keyboard is now programmed in German and I cannot find the way to enter @. How can I do it?

    Hello r555,
    Thank you for being a My Best Buy member, and thank you for visiting our forum.  I am very sorry to hear that it has not always been easy for you to receive your Gamers Club Unlocked bonus when trading in games.  I'll be happy to talk to you about your experience.
    I get the impression you are quite familiar with the trade-in process and how the bonus is applied, and it is disappointing to hear that a store associate wouldn't attempt to complete that process.  I will be sending you a private message so we can get some more specific information regarding which store you were at as well as the trade in question where you did not receive the bonus.  Please watch for a message from me shortly.
    Sincerely,
    Mike|Social Media Specialist | Best Buy® Corporate
     Private Message

  • How to stop Mail from selecting addresses from the list of Previous Recipients?

    How to stop Mail from selecting addresses from the list of Previous Recipients?

    This is a related question.
    I deleted ALL my previous recipients and when I create a new e-mail it STILL is getting addresses that I don't want - they pop up and I don't know how to stop this!
    I switched from one ISP to another - I deleted the old e-mail account in MAIL - I DID use the same name on the account - is that why it keeps bringing up the old address? 
    ARGH!

Maybe you are looking for

  • How to change the field length in standard sap program.

    Hi All, How to change the field length in standard sap program. Urgent Example: Text1 type c length 75, To change : Text1 type c length 150, Point will be rewarded.. Thank you, Vikram.C

  • Using an Extended Airport Express

    Suppose I have a newer Airport Express which has been successfully extended from an Airport Extreme via Wi-Fi. Which features of the Airport Express ( Wi-Fi, USB, Ethernet, Audio Out) can be used simultaneously-- Or is it one feature at a time? For e

  • HOW CAN I DELETE GOPHOTO.IT INSTALLER? PLEASE HELP ME

    i don't know how can i delete this program and i need to solve this problem for work. so i'll be really grateful if someone of you can help me. thank you in advance.

  • Lcm batch utility issue in 11.1.1.3

    "Utility.bat" is currently unable to execute multiple Definationmigration.xml files from the batch mode In the batch file i have called multiple Definationmigration.xml file The batch file is in this format echo D: D:\cd d:\Hyperion\common\utilities\

  • Consolidating in another currency

    Our main entity hierarchy has base entities in a number of currencies, but all parents are USD. We have a need to translate and consolidate the same base data using the prior year's currency rates. The translation of base entities at the new rate is