Query Regarding Rework Order

Hi PP Guru,
I have one scenarion wherein I need your help...
Scenario:
My Client is creating a  Rework Production Order wherein he wish to replace one component of a BOM with Other. However the component removed for the Header Material should increase my Inventory.
Example: Suppose I have a Header material 'A' in  a BOM. Components are 'B' and 'C' are required for producing 'A' . Since there is shortage of component 'C', they want it to replace by component 'D'. After creating Rework Order and confirmation, the Stock of 'C' should increase by the no. it was removed from the Header Material. Now the Costing of Production Order should have cost of 'B' and 'D' in it with all the relevant activities.
I have tried options like giving the Quantity of 'C' in minus so it becomes By-product and goes to unrestricted use via movement type '531' increasing my stock as required. But in costing the price for 'C' is in Minus and it is adjusted with the prices of other components (minus plus mathematics) and gives the cost. in this example minus value of 'C' is adjusted against combined value of 'A' and 'D'. (Price of A + price of D) -Price of 'C' which i dont want.
I want Price of 'C' also to be replaced by price of 'D' and Stock of 'C' gets updated in the inventory.
can you please help me in getting the correct process in place. Thanks.

Hi,
            If you are consuming 'D' instead of 'C' ,then you can very much change it in Production order itself or at the time of Confirmation /Goods Issue. Else you can also do reverse GI (262) for  C. I dont know why you are creating Rework order for replacing a part.
Regards,
Velmurugan S

Similar Messages

  • Query regarding Transfer order creation

    Hi Experts,
    I have query regarding on creation of transferorder in WM.
    1) Once the delivery order received from SD ,  How  WM people  will proceed with that delivery order?
    2) Is it possible  to create transfer order for each item avaliable in delivery order?
    3)  Is there any chance to partial delivery/ partial picking against that delivery order?
    Please guide..
    Points willl be rewarded ..
    Thanks in advance..

    1.once the delivery order received from SD, WM will start up with creating a wave pick thru outbound delivery monitor(VL06P), then trasnfer order (TO)is created , then TO is confirmed and goods issue is posted.
    2.yes it is possible to create transfer order for each item avaliable in delivery order, if the delivery items are not grouped under a wave pick.
    3.partial delivery can be made

  • Query regarding Purchase Order Lines stored in database?

    Hi Friends,
    While i extract Purchase Order details ,i found that in demo database,some Purchase order lines are stored in seperate entries in POR1..
    eg: if <b>21</b> A00001 is ordered,then the purchase Order line for 20 item is stored in a row and purchase order for 1 item of that same item 'A00001' is stored in a seperate row in POR1..
    In wht criteria SAP B1 take it as a seperate row for a single item order while storing in POR1--Purchse Order Lines
    Thanks in Advance
    regards
    Sooriyakala.P

    Hi,
    Could be that 20 items come from a Sales Order (and line), and 1 from another one? If isn´t this data, could be any diffent one.
    Then in the SBO GUI there is a field in the left botton of the item matrix called "summary type" (or something similar, I´m translating). Here you can say to summ all the items in one row, or not to make any summary.
    Regards,
    Ibai Peñ

  • Regarding purchase order number

    Hi
    Just basic question in Sales document.
    While creating Sales order, we are giving purchase order number in header.
    why its required.
    Can somebody explain me...
    Regards
    Chandra

    Hi Chandra,
    It is customer's reference number. Using this reference customer order can be tracked. For example if customer has any query regarding the order he placed, he can just refer the PO number and based on which customer service track the order of customer.
    If you look an EDI order, Order is created in some legacy system and Data flows to SAP and an SAP order is created through an inbound IDOC. Then wat is the way to track the legacy system's order? It is through the purchase order number,based on which customer service can track the order information.  This is just an example for your understanding of the field of order.
    Hope this explains.
    Edited by: mokirala tilak on Aug 12, 2011 10:51 AM

  • Query for Sales Order Analysis

    Dear Experts
    I have written a Query for Sales Order Analysis and would like to have help on this.
    The query is used for generating daily report for Sales Order on number of documents (Sales Order), total amount of sales orders and total GP of Sales Order. The query is written as below:
    SELECT T0.[DocNum], SUM(T0.DocTotal) AS 'Total', SUM(T0.U_Total_GP) AS 'Total GP'
    FROM ORDR T0 WHERE T0.[DocDate] =[%0] GROUP BY T0.[DocNum] ORDER BY T0.[DocNum]
    where U_Total_GP is a UDF for storing the GP of each order.
    After executing the query, a selection criteria of date appears and after a date is selected, the report shown information required. However, the query does not calculate column total for total amount and total GP. Although I know the total for each column can be displayed by pressing "Ctrl" + Click on the column title, it would have to be done from time to time.
    Therefore, I would like to modify my query in order to calculate the column totals when executed. Are there any suggestions for this?
    Thank you
    Regards
    Elton

    Hi Elton,
    Try this:
    SELECT T0.[DocNum], SUM(T0.DocTotal) AS 'Total', SUM(T0.U_Total_GP) AS 'Total GP'
    FROM ORDR T0 WHERE T0.[DocDate] =[%0] GROUP BY T0.[DocNum]
    Union ALL
    SELECT '', SUM(T0.DocTotal) AS 'Total', SUM(T0.U_Total_GP) AS 'Total GP'
    FROM ORDR T0 WHERE T0.[DocDate] =[%0]
    ORDER BY T0.[DocNum]
    Thanks,
    Gordon

  • Query on Sales Order Analysis

    Dear Experts
    I have written a Query for Sales Order Analysis and would like to have help on this.
    The query is used for generating daily report for Sales Order on number of documents (Sales Order), total amount of sales orders and total GP of Sales Order. The query is written as below:
    SELECT T0.[DocNum], SUM(T0.DocTotal) AS 'Total', SUM(T0.U_Total_GP) AS 'Total GP'
    FROM ORDR T0 WHERE T0.[DocDate] =[%0] GROUP BY T0.[DocNum]
    Union ALL
    SELECT '', SUM(T0.DocTotal) AS 'Total', SUM(T0.U_Total_GP) AS 'Total GP'
    FROM ORDR T0 WHERE T0.[DocDate] =[%0]
    After executing the query, a selection criteria of date appears and after a date is selected, the report shown information required. Everything is fine with this query except I would also like to incdude the total number of Sales Order (per day) right below the column "DocNum".
    Is it possible to achieve this?
    Thank You
    Regards
    Elton

    Try this:
    SELECT T0.[DocNum], SUM(T0.DocTotal) AS 'Total', SUM(T0.U_Total_GP) AS 'Total GP'
    FROM ORDR T0 WHERE T0.[DocDate] =[%0] GROUP BY T0.[DocNum]
    Union ALL
    SELECT count(DocDate), SUM(T0.DocTotal) AS 'Total', SUM(T0.U_Total_GP) AS 'Total GP'
    FROM ORDR T0 WHERE T0.[DocDate] =[%0]

  • Error message when releasing a rework order

    Dear Experts
    I try to create a Rework production order  using co07 but I am unable becase when I click on the Release button, I get this error message " order type pp07, no checking rule maintained for operation. Release of order not possible". what steps do I take to solve thisproblem?

    Dear Vincent,
    1) Go to OPJK, here for ur plant & Order type do settings for Business function 1 & 2
    2) or else Copy any Std Rework order in OPJK & Give ur plant & order type & save
    Then check the result
    Regards
    Madhu Kumar

  • Problem in settlement of rework order

    Hi
      I have raised a production order and settled all the products in the order. But in quality inspection i have cleared only some quantity and made some quantity rework. I have raised a rework order for the same and settled the rework order.But the quantity is not settled to the main production order.Where is the problem in the rework order
    Regards,
    PradeepM.

    Hi Pradeep,
    Are you expecting
    1. the rework cost in the rework order to be settled to the parent order or
    2. the confirmed quantity in the rework order to be added to the parent order.
    Up to my knowIedge I dont think the 2nd point will happen.
    Let us confirm with other Experts opinion.
    BR,
    UK

  • Error while Goods receipt for rework order.

    Dear all,
    I have created one Rework order through TC CO07.
    While doing Goods Receipt it gives Error Msg as following.
    "No valid order items exist for order 200000203"
    Message no. C6008
    Regards
    Atul

    Dear,
    There is only confirmation CO11N for the rework order. And good reciept MB31 for main order.
    There is no GR for rework order. Once you confirm rework order,you need to do the GR for the balance qty of  main order or parent order.
    And you need to priliminary settlement of rework order first in CO8B, hence the cost will be moved to parent order, then you settle parent order in KO88.
    Hope clear to you.
    Regards,
    R.brahmankar

  • AUTOMATIC CREATION OF REWORK ORDER

    Hi
    Could any solve my problem?
    Basically i am working in pipe manufacturing unit where we follow discrete manufacturing.
    I have some pipes that been rejected from certain operation and sent for reworking.Now, i want that "A rework order should be created automatically for the same pipes"
    Is it possible? if yes then, what will be procedure & what setting required for the same ?
    Cheers
    Alok

    Hi,
      Rework order can be created automatically by trigger point through change in operation status only.
    I think not possible to create rework order automatically if the material got scrap.
    Regards,
    Dharma

  • Rework Order after QC Rejection......for Production against Sales Order

    Hi All,
    Can you help me in the following issue.........?
    I have Make to Order production scenario. After Production Order is confirmed material goes for QC inspection and some quantity get rejected ( need rework).
    Since I have confirmed total quantity in order confirmation, if I create a rework order with reference to the sales order that will increase the production qty by the rework qty. But I need a rework order to rework on the rejected quantity.
    Let me know how to resolve the issue.
    Thanks and Regards,
    Samar

    Hi!,
    From your mail it seems that you are doing quality inspection on GR (inspection type 04). Please carry out following steps:
    1) At the time of quantity posting on usage decision please put rejected quantity in field against retuen to vendor (i.e. carry out 122 movement for the rejected material). By doing this you will find the delivered quanity on prod order reduced by the rejected quantity.
    2) Now create a production order without material (CO07) for the rejected quantity and put the original order as cost receiver in the settlement rule so that all the cost incurred during rework will be settled on original order.
    3. Confirm the origianl order / Final operation again for the reworked quantity and make the GR again. This will again create a new inspection lot.
    4. Carry out the result recording and UD for this new inspection lot.

  • Query regarding the fields details in particular form for all the users in

    Dear All,
                  I have one query regarding the fields details in particular form for all the users in company.
    Let take an exapmle if i had created Purchase Order having fields in content tab as 1.Item No. 2.Quantity 3.Unit Proce   4.Total   5. Location.
    While Login in User manager i set these fields only for Purchase order , but when i login from other user and open the similar purchase order the defaults fields are also seen including  above 4 fieds .
    Now my question is how to set the User choice fiels for the particular form that are common to all users.
    Means whenever i login in any user and opens the same document the same fields should be seen....Thanksssss.........

    You have to login with each and every user and do the Form Settings of every forms, so that all the forms look same for all the users.
    This is a manual job and you have do do it with every user login.
    Alternately, you can try out this link that explains
    [How to Copy One Screen Layout to Another User|http://www.sbonotes.com/2008/03/how-to-copy-one-screen-layout-to.html]

  • Some querries related to BOM,Rework order

    Hi FRIENDS,
    Really feeling good to being among SAP intellectuals.This is my first thread in community....
    I am working in SAP QM past 2 yrs,and am trying to get some SAP PP knowledge...
    pLz help me out in getting some knowledge......
    a) Whis is it so that rework order is always created without material,it sounds confusing to me.Cant I prepare a standard order for a component say of 100 pcs and then confirm it by 95 pcs and create rew another order with material(same) for 5 pcs..
        By co07,the user can book other component (apart from BOM component of that header) by going to co07---bom tab.
    Can it be stopped....
    b) Another querry is related with BOM....
           Why By product is maintained in negative qty in BOM,Cant get the theory behind it.....
    Plz answer my querries....

    Dear Snehal,
    1.Normally a rework order will be created in order to address the product which does meet the expected quality parameters.
    2.For a rework order which is created through CO07,no GR will be made and only confirmation will be required because
    already the whole product exists as such and this order helps to capture the extra cost spent for correcting the product and
    for settlement.
    3.So for this reason order without material will be created without referring to any particular material or say product and in
    case if you creating a production order with material GR will be made as an automatic process or manual GR.
    4.A byproduct will be maintained in negative quantity because so much of product will be obtained as an output along with the
    main product.In this the GR will be happening for the main product as well the by-product.So the normal components will be
    maintained in +ve quantity which means consuming so much quantity the fianl product is produced and if any component is
    maintained in negative quantity then it indicates that its a by product.
    Check these links to explore more.
    settings for co-product and by-product
    Re: Co product and By Product
    http://sapfunctional.com/PP/Co&BiProducts.htm
    Regards
    Mangalraj.S

  • Query regarding Freight

    Hi! Gurus,
    I am having a query regarding Freight .
    Consider PO having 100 Quantity and freight applicable WRT quantity Condition
    type FRC1.Rs 1 /1 Quantity.
    Freight amount = Rs 100.
    Consider 5 Good Receipt WRT purchase order.
    GR1- 20 Quantity ,Freight = 20 RS
    GR2 -20 Quantity ,Freight = 20 Rs
    GR3- 20 Quantity ,Freight = 20 RS
    GR4 -20 Quantity ,Freight = 20 Rs
    GR5- 20 Quantity ,Freight = 20 RS
    Well my question is can i do miro with respect to delivery note(GR1,GR2,GR3,GR4,GR5) wherein i will get only freight amount that i have to pay to vendor
    secondly if i  do MIRO WRT purchase order ,
    I getting 5 GR line items and 1item Rs 100 Freight.
    We require 5 GR line item and 5 Freight items.
    How this can be done.
    Thanks and Regards,
    shailesh

    If you vendor is sending you a five invoice with each having the freight then post invoice against the delivery note so you will get only that GR qty with freight amount.
    but if you get 5 GR and 1 invoice then you can not post separately

  • Automatic Trigger of Rework Order

    Hi Gurus,
    As a rework process, I know the following
    1) We have to create rework order through CO07, and settlement to be done for original order after confirmation with ref. to Ref. Opn. set.
    2) We can introduce a rework operation in the production order operation view and carry out further process
    3) We can set trigger point in the routing to carry out Rework Process as std. for all the orders, which uses that particular routing.
    Now my requirement is, how automatically  process the rework quantity, when we enter rework quantity in CO11N.
    Pl. let me know the IMG setting.
    Regards,
    Madhava
    Edited by: Madhava K.N on Jul 15, 2009 5:03 PM

    Hi,
    Thanks for the inf.
    With your help, I can create a rework operation for that particular order. But following are my doubts.
    1) You have mentioned that, change to be set * first and then again + What is the significance of assigning twice.
    2) During confirmation, I entered some quantity in yield and some quantity in rework, but in the order display, it has created one more operation as rework, but required quantity as original order quantity, That means, we have to rework entire quantity of the order not the rework quantity entered during co11N.
    Hence this solution holds good for Insert ref. operation set and rework of all quantity.
    My requirement is automatic creation of rework order for the rework quantity. For this
    I have chagned my earlier setting of trigger point - create order with reference and in active I have put 2 with the clue from your answer.
    Now the rework order is generated for the quantity which i have entered in Co11n rework quantity field. But not able to see the order no. Just blindly I displayed the next order no. It worked out.
    Now, I released the rework order and confirmed through co11n.
    I tried to confirm original orderfor rework quantity, it is giving the information as "Up until now only xx pieces confirmed for predecessor operration. Since it is information, i tried to save it, but the  message " total confirmation quantity is not equal to planned confirmation quantity" is displayed.
    Performace assitant gives following message.
    Total confirmation quantity not equal to planned confirmation quantity
    Message no. RU117
    Diagnosis
    There are the following reasons for this message:
    You create a final confirmation. The confirmed quantity for this operation (yield + rework quantity + scrap quantity) is not equal to the planned quantity to be confirmed.
    You create a partial confirmation. The quantity confirmed until now for this operation (yield + rework quantity + scrap quantity) is greater that the planned quantity to be confirmed.
    My yieldrework qtyscrap qty. does not exceed the planned quantity.
    Then I went to MIGO, and posted GR for original order,  but in CO03, it is not showing the del. quantity, even for the partial accepted quantity also.
    Is there any steps for rework order after confirmation?
    Pl. help me.
    Madhava

Maybe you are looking for