Consignment indicator added to production orders

Hi Everyone,
I was wondering if you could help me, we have a raw material that has been moved from consignment to own stock, all the info records have been changed and material moved to own stock BUT when we create a production order the consignment indicator is still being added in the special stock screen!
The production order backflush is creating COGI errors for this material, can anyone tell me where this indicator comes from and how we can change it?
Thanks
Mark.

Thanks for the reply,
I have looked at the issue again and problem is the opposite, my mistake, the material has moved to consignment stock from own stock but the special stock indicator 3 is not being added to the production orders.
Info record looks ok
We do not use anything in the stock determination, nothing is configured, all other consignment materials work fine.
Please help if you can
Thanks

Similar Messages

  • Production Order Deletion Indicator - Reversal

    PP Experts,
    We have set the deletion indicator on our production orders, now we need to undo the  deletion indicator on some.  Is it possible to remove the deletion indicator, not the deletion flag, but the deletion indicator.
    Barry

    Hi Barry Nelson,
    Well the most important thing is every body said and again i am repeating we can not revesal the deletion indicator for a production order.
    Mainly Deletion Indicator is used to reduce the old order data stored in the SAP system when ever they come to conclusion there is no use OK.
    Activating Deletion Flag means you are deleting from Tables as well OK. Once the data is deleted from tables means you can not find any information of the order OK.
    It will also increases the system performance as well.
    I hope it helps you any questions pop me again.
    Regards,
    Madhu.G

  • Mass change final issue indicator in production order

    Hi
    Is there any report can show final issue indicator for all production order? How can I mass change the indicator?

    Hi,
      In reports such as COOIS and COHV you can select in the initial screen "List: Components" and check your "Change layouts" to view the report with the "Final Issue" indicator.
    But you cannot do a mass change in this option. One way is : You can just select the particular order -> goto Component Overview of the order to be changed and do the necessary changes and save to get the required result.
    -Thaila Shree

  • Is it possible to create a Production order for consignment fill-up?

    Dear all,
    As you know, the consignment  fill-up is  for delivery the own stock to customer special stock.
    But our customer request, they want to create a Prodcuction order for the consignment fill-up.
    The design flow is like below:
    Consignment fill-up -> MRP -> Production order -> GR the FG to local storage location -> Outbound Delivery to customer special stock
    So could any one tell me is it possible?
    Because I have tried to change the configuration for it, but always failed.
    Tks
    David

    Hello,
    Kindly go through following links:
    To consider customer consignment stock while MRp with help of user exit/bad
    Re: Excluding Kanban storage location from MRP
    To consider customer consignment stock while MRp with help of user exit/bad
    Can MRP consider customer consignment quantity ?
    PP-MRP Exclude Consignment stock in MRP
    customer consignment in MRP?
    Consignment Fill Up Error
    Thanks & Regards
    JP

  • Booking Costs after closing Production order

    Hi all,
    There is a production order for which all components have been issued, plus GR done. Finally all variances were calculated and settlement completed. This is an MTO order.
    Now I need to know how to book additional costs against this order for the following scenarios:
    1. Time booking
    2. Addition of a materials (Users forgot to add a material, but on the shop floor it was consumed)
    What would be the most logical business solution for the above two situations. Do we need to reverse settlement in such a case or not?
    Plus additionally I would like to know why does KKAX show WIP costs on production orders already settled and closed?
    Thnks
    Regards,
    G. Coelho

    Dear Mr.Godwin ,
    Let me explain you the various stage when you add extra material/Time  in a production order :
    1.Good Issue aginst production order reservation completed  -Status GMPS  but operations are not Confirmed -CNF
    2.Production Order Final Confirmation done  but Final Issue Indicator not marked or Clear Reservation not marked  at that time .Through MIGO you can issue the extra material if they are added in the Production Order -Componenet Overview .
    All the cost will be shown as variance in Production Order -Cost anaysis -Select Costing trend -Select required field for information .
    3.You can add extra hrs only in CO11N not any other Txn based on the Define Confirmation Parametre set up -OPK4 (not over or under delivery tolerence in general valid settings )
    4.You can add extra material just after order is Created (CRTD), Relased(REL)  at Componenet-Overview -select line itm and assing at operation with item categoery L
    You can't add extra material and Time in the following state in production process :
    1.Goods Issue with Final Issue Indicator -GMPS
    2.Production Order Technical Complete for settlement -TECO
    3.Production Order Confirmation done -CNF with clear reservation .
    4.Production Order is under Settlement process duing the month end or order by order .
    Best option what we follow :
    1.Update the Production Order with fresh item which are physically issuesd from Store in SAP  to capture in the same reservation nuber
    2.Compare COO2-Dcuments Goods Movement  and MB25-Open reservation for production order , which are required to issue through MIGO.
    3.Perform MIGO for the fresh item which are added in the production order .
    4.Follow BackFalshin of compoenent during CO11N if you have Back Falshing activated in MMR/Work Centre
    5.Apply Enhancement for production  order confirmation to avoid the issue .
    CONFPP01            PP order conf.: Determine customer specific default values 
    CONFPP02            PP order conf.: Customer specific input checks 1           
    CONFPP03            PP order conf.: Cust. specific check after op. selection   
    CONFPP04            PP order conf.: Customer specific input checks 2           
    CONFPP05            PP order conf.: Customer specific enhancements when saving 
    CONFPP06            PP Order Confirmations: Actual Data Transfer               
    CONFPP07            Single Screen Entry: Inclusion of User-Defined Subscreens 
    Hope this will be usefull  for your requirement
    Regards
    JH

  • Error on Production Orders Add-on when 2 or more users at the same time.

    Hi.
    Our add-on creates special production orders (SAPbobsCOM.BoProductionOrderTypeEnum.bopotSpecial) with no problem when used by one user, but if there are two or more users  everyone on his own SAPBO session it starts to throw different errors, we think it may be a concurrence problem due to several transactions.
    Here a short brief of the code sample and the process:
    (error handling and object members not included in the sample)
    oDoc.ProductionOrderType = SAPbobsCOM.BoProductionOrderTypeEnum.bopotSpecial
    If the oDoc.Add() is correct, We get the last production order created and release it:
    Me.sKey = Me.Company.GetNewObjectKey
    oDoc = Me.Company.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oProductionOrders)
    oDoc.GetByKey(Me.sKey)
    oDoc.ProductionOrderStatus = SAPbobsCOM.BoProductionOrderStatusEnum.boposReleased
    oDoc.Update()
    Then we go for an inventory Entry:
    oDoc = Me.Company.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oInventoryGenEntry)
    oDoc.DocDate = Date.Now
    oDoc.Lines.BaseEntry = Me.sKey
    oDoc.Add
    And Finally to close the production order:
    oDoc.ProductionOrderStatus = SAPbobsCOM.BoProductionOrderStatusEnum.boposClosed
    oDoc.Update()
    This works fine when only one user is using the add-on, but in the end there wil be at least eight users simultaneously  working with this add-on
    The test:
    We have four users creating production orders with the  add-on.
    Two of them get the usual success messages and the created documents in SAPBO are all correct.
    The other two users get diferrent errors messages during the process.
    If they wait and try again to run the process it works fine.
    Repeating the test get errors on different users depending on which one started the process first.
    Our client needs to generate beetwen 900 and 1200 production orders per day, so they can't wait until the process is free for each user to work with it.
    The common erros detected are:
    Changing the status of the production order:
    -5002 - The warehouse is not defined for the item.
    -4002 - To generate this document,
               first define the numbering series in the Administration module
    -1029 - Field cannot be updated
    Adding the production order and inventory entry:
    -2038
    -1116
    -5002
    Regards,
    Omar Fonseca

    The start transaction model didn't Fit well with all the process we are doing, but the idea of locking or holding the other users seems to work pretty fine, we are now using a flag to determine if someone is doing the process and put in hold the new ones.

  • Issue in va02 that relates to Production order

    There is an issue in sales order change credit memo issue transaction
    va02.
    The issue message:  You cannot select assembly order for deletion.
    When i look into the status of the order it shows the following status.
      REL  Released            
      PRT  Printed             
      CNF  Confirmed           
      DLV  Delivered           
      PRC  Pre-costed          
      GMPS Goods movement posted
      MACM Article committed   
      OPGN Operation generated 
      SETC Settlement rule creat
    Can this order be deleted what is the issue.

    Hi,
    Hope you are doing a change of the credit status of the order, for material with assembly processing indicator like strategy type 81 or 82.
    by changing the credit status, the system will try to set the deletion indicator to the production order created for the sale order.
    If the productuion order is released and sone goods goods movement or activity tposting has already happened, then the system will post this message.
    Kindly check the related production order attached for the sale order.
    Thanks,
    JK

  • Automatic GI issue for Confirming Production Order

    Hi
    I am trying to confirm the Production order using CO15, But at the time , i want to make the GI automatic for the componets , I maintain the back flush indicator for the components in the material master. How to make GI automatic
    Thanks
    JJ

    Hi
    Kindly check the following setting to ensure you have done correctly:
    Material master
    With the Backflushing key (MRP2) you can specify that
    -The material is not generally backflushed - that nmeans this material wherever used will not be backflushed
    -The material is always backflushed - Always wherever this material used will be backflushed
    -The work center determines whether the material is backflushed - WC setting has the priority if this setting is made.
    Work center -
    You can set the Backflushing indicator on the Basic data screen. This is only taken into account, if the material master stipulates that the work center should determine whether the material is backflushed. Work centers are assigned to a production order via the operations. The operations are copied from the routing used.
    Routing
    You can stipulate that the material is to be backflushed, on the component overview in the routing. This indicator is always taken into account, irrespective of the indicators in the material master or work center.
    If the Backflushing indicator has been maintained in the master data, it is copied from there when you create a production order. You can change the indicator in the production order, as you like
    Thanks

  • Production Order creation Despite Delivery Block on Sales Order

    Hi All
    I have created a Z1-Delivery Block and assigned the block to a Sales order type.
    Now during the creation of the Sales order the Delivery block is assigned immediately the system creates  a planned order but no production order.However the business would still like the production order to be created.
    Is there a SAP standard way to allow this to happen or would I need to enhance via a USER EXIT.
    Thanks in Advance for your assistance.
    KA

    I'm not an expert, but I don't think delivery block actually has any influence on the production order. We have tried on purpose to use a delivery block to prevent the PO creation/release and had to develop a user exit for this purpose. The way it works in our system - planned order has a conversion indicator. Some standard program runs in background and converts the planned orders with this indicator into the production orders. If indicator is not set then PO is not created.
    Delivery block just prevents delivery from PGI, I don't think it even prevents the delivery creation (much to my surprise).

  • How to round quantity with FMS for some items in Production order lines?

    Hello,
    How to round the quantity with FMS or SP for only some items in the composition of Production order (lines) and the bill of materials like a box or a stick that should not be with commas.
    Exemple  of Production Order
    P1
      M1 | 234,78
      M2 | 104,04 --> 104
      M3 | 60,7
      M4 | 512, 00
      M5 | 107,67 --> 108
    and others will not be rounded
    Thanks,
    Hafid

    Hi Gordon,
    you're always the first to respond, thank you.
    Its when adding the production order, before its creation or when entering the quantity of product in OWOR.
    Like :
    SELECT CASE WHEN ($[$37.4.0] = 'M2') OR ($[$37.4.0] = 'M5') THEN ROUND (T0.[PlannedQty],0)
    ELSE T0.[PlannedQty] END AS PlannedQty FROM WOR1 T0
    or
    SELECT ROUND (T0.[PlannedQty],0) FROM WOR1 T0 WHERE T0.[ItemCode] =$[$37.4.0] AND (T0.[ItemCode] = 'M2' OR  T0.[ItemCode] = 'M5)
    Thanks,
    Hafid

  • Production order with components consumed from vendor consignment stock

    Hi expert,
    I have a production order with components and some of the components should be consumed from vendor consignment stock.
    When the order is created/released : is there  a possibility to have those components created with "special stock indicator" = 3 (consignement stock) by default?
    Thanks,
    P.

    Dear Pete,
    In my understanding it's not possible to populate this value as 3 - consignment stock in the component overview.This has to be
    done manually.
    Check in this way,by indicating a value in any of the material master field(for eg ABC indicator in MRP1 view) and if there's some
    value,then while saving the system populates for all those materials with this value as 3 by using some user exit or BADI.
    I'm not sure,it's only an idea,check and revert
    Regards
    Mangalraj.S

  • IDOC for Creation of Production order and also adding components

    Hi ,
    I have a requirement like I get the data from a 3rd party system and using that i have to create production orders and also should be able to add more materials in COMPONENTS part of that Production order. I was looking for a BAPI which can handle this process.
    And also can any one help me by letting me know is there any Message type available for handling this process of Production order creation and Adding extyra components to it.
    I have a  message type LOIPRO (for Production Order) and associated function modle CLOI_MASTERIDOC_CREATE_LOIPRO for creation of master IDoc, but not sure can i handle the Components part in this.
    Please do send replies ASAP, its very urgent.
    Or else atleast suggest me the other ways of doing this .
    Also send me any BDC program if anyone has already developed for this.
    Thanks
    Kumar
    Edited by: Phani Kumar Peddagopu on Mar 19, 2008 6:56 PM

    Resolved .

  • Cannot place order ERROR: "There was a problem adding your product to cart"

    Hey guys,
    Well, once again Best Buy's online system is preventing me from making an order. It seems like nearly every time I log in I experience some new problem. This time, I'm unable to add anything to my cart. It doesn't matter what item I try to add to my cart or what browser I use or if I clear cookies...it happens every time, on every browser, with every product in the store. The error shows a red & white triangle with a message "There was a problem adding your product to cart".
    Just to clarify ahead of time: 1) I have already tried signing in using 4 different browsers (explorer, firefox, chrome, opera) & they all give the same error; 2) Prior to posting here I researched this problem & found out it is somewhat common & has been occurring since at least 2012 on BestBuy.com; 3) Every time someone posts in here about this problem, customer service offers the same "fix" every time - to sign out, clear their browser cache of cookies, shut down the browser, restart the browser, sign back in, etc.... The only problem is, this "solution" has not worked ONE time our of the many times this problem has cropped up in here over the past 3+ years. Why this "solution" keeps getting told to people even though it never works is beyond me. But, there you have it.
    Just to clarify: I have already tried this solution, And just like with everyone else before me, it didn't work for me either. So, what's the next step? There must be something else that can be done other than waiting a couple more days for it to magically fix itself (it seems that is the only thing that ever "works"...is to let several days go by and the problem ends up getting fixed in some back-end server-side patch up). 
    What I'm hoping for from you is a solution that can fix this immediately. This problem has already prevented me from making a couple purchases for items that were temporarily on sale over the past couple days. So, those are lost sales for Best Buy. What I'm hoping to do now is pre-order the Elder Scrolls Online (PS4) in order to take advantage of the $10 pre-order reward. The game releases on Tuesday the 9th. So, in order to get this done in time I need to place the order sometime today (on the 8th).
    With all these repeated technical problems making purchasing a chore & wasting my time every single time I want to buy a product it's almost as if Best Buy is telling customers "We don't care if our online system works reliably...go spend your money at Amazon instead". lol
    Thank you in advance for your timely help on this matter.
    -Marc (removed per forum guidelines)

    Hello mjswooosh,
    I'm very disheartened to hear that you've had ongoing problems when attempting to order from BestBuy.com. Our goal is ever to provide a fun and efficient shopping environment! Certainly creating aggravation serves neither you nor us and I apologize sincerely for this having been your experience.
    We recommend the troubleshooting steps you mentioned (i.e., clearing the browser cache, deleting temporary internet files and cookies) because this is the most common cause of this type of problem. I too have encountered this issue from time to time and these steps have almost always resolved the problem. I say almost always because there's one further step you can try: ensure that you have signed out of BestBuy.com, then perform the browser maintenance steps we've recommended. Afterward, before signing in to BestBuy.com, add your desired items to your cart and sign in as part of the checkout process. When the standard steps have not netted a resolution for me, this has solved the problem each time.
    I hope this helps. I'm very grateful that you took the time to write to us with your concerns and for sharing your very valuable feedback about your online experience.
    Sincerely,
    John|Social Media Specialist | Best Buy® Corporate
     Private Message

  • Issue with printing newly added operations in Production Order through CO02

    Hi,
    Currently I have one issue with printing production order changes through CO02. If I go for print, all the operations are captured in printout. But after the print, if I add any new operations to this production order, and then go for print, its not capturing the newly added operations. Also, there is information popup coming "Copies will be printed for order. Original list already printed". This message effectively means, even after changes, when I go for print functionality, its just going for printing copies of original printed list.
    Can anyone help me out to get the newly added operations reflected in the print through CO02 ?
    Regards,
    Shiva

    Hi,
    1) Go to Tcode "OPK8"
    2)Select LG02 "Op Control Ticket"
    3) Double click on :List Control for Transactions" in the left hand menu tree
    4) In front of ur desired t code "co02" make the changes ( Number of prints- u can increase) 6th column.
    Try this.

  • Special stock indicator in production order

    Hi,
    We have a new business scenario from sales department.
    For example, A is a MTO item, it has component B & C. Now there is a sales order for A come in, and system create a production order, but there is no enough stock for B. They want to:
    1, Allocate C to the production order and other production order or sales order can not take it away via V_V2 or MRP run.
    2. Create another seperate purchase order for B and want this purchase order also allocate to this production order.
    3. They do not want to use WIP stock because it is difficult to display WIP stock in SAP you know.
    I trying to use the special stock indicator "E" for components in production order, and I move C to custom stock via 412 E with no issue.
    But when I create a purchase order for B with account assignment "F",  it goes to normal stock in MD04. After I post GR for the purchase order, the quantity goes to production order directly, does not show in MD04 and did not reduce the requirement quantity.
    If I create a purchase order for B with account assignment "E", it gives an error message "Sales document item is not defined for the transaction. I tried to change the requirement type from "KMFA" to "KE" in the sales order for A, and the production order disappeared, it is not accepted.
    How should I define and configure the process?
    Thank you so much.
    Albert

    Hi Albert
    I suggest you to take a look on the setting "individuall/collective" on the tab MRP4 of the material master.
    For both components, you should set the value 1 and system will always plan the components under the sales order special stock.
    BR
    Caetano

Maybe you are looking for

  • How do i find a numbers file

    in numbers I type Command-o in the search field i type "numbers" without the quotes. no numbers files are found in that directory. .xls and .csv files are found, including .xls versions of previously created .numbers files typing the full filename al

  • IPad4 volume button appears to have suddenly gone bad, will not increase volume. Has anyone else experienced this problem?

    My iPad4 lives in a smart case, it never even goes out of the house. I baby it to be honest. So why, I ask you, did the volume button suddenly stop working? I tried all the suggested software and general settings I could find but it appears to be a h

  • Hyperlink character options in InDesign

    I am creating hyperlinks in InDesign and do not have any options available under the "character options" box.  It just lists [none] with no options in the drop down menu. My hyperlinks WORK but do not appear in either preview mode or .pdf output with

  • Record disappears if two requests are activated together

    Hello Ods with key K is updared from ds1 and ds2 with addition mode. DS1 doesnt bring any records with key K. DS2 brings record with key K. The record disapear if two requests are activated together. The record is visible if requestes are activated s

  • Seeking BAPI to Park Vendor Invoice

    I am searching a BAPI to park vendor invoice? I tried to execute FV60 to park vendor invoice but the "trading partner" field is not populated. I think this auto-populated by the system once you tick save complete button.