Posting of rejected qty thru QM

Hi,
I have a issue were i need to post 8 out of 10 qty to unrestricted stock and remaining 2 to be done rework how should i post it and how the rework will be done is not clear. I have a tried to do it by posting 8 in unres and remaining 2 to return delivery stock while giving UD  is it correct way of doing ...pls confirm....or also in QM how the defects are recorded is not clear since i dont have much knowledge of QM

Hi manisha
Thnkz for your reply.....return delivery for vendor return is ok....but wat abt case in which i want to rework inhouse....ie in my own plant ....even in tht case do i have to post it to return delivery or should i post it to block stock is not clear .....plz clarify it urgently.....Also i have come across an article which says tht while result recording i should confirm the qnty....a separate screen pops out while RR and thr i have to put qnty in yield scrap & rework.....actually I'm a PP consultant and dont know much abt QM....Plz help....

Similar Messages

  • Rejected Qty reference in Purchase order

    Dear Gurus
    I have created PO of 100 qty ,i have taken GRN of 100 qty ,in Quality rejection i have rejected 10 qty and accepeted 90 qty
    ========>>>
    Now if you will do the normal rejection i.e Return Delivery
    You will get the reference of this in the PO Created earlier i.e 100 qty PO created ,100 qty GRN done and ret delivery 10
    ==========>>>>
    But here i am doing the return delivery through SD i.e I am sending this 10 qty which is rejected by creating return Order (Return PO)
    i.e i have created PO of 10 qty and marked the return DElivery tick so that th shipping tab in item detail gets activated. and in delivery tab i have to select the block qty.
    I have saved the no and the PO no gets genereated.
    I have to give this PO reference no to SD person and through VL04 he will create delivery and do the POST GOODS ISSUE.
    Till now i think everybody must have understood the scenario.
    ==================
    Now the problem is my cleint wants that he should have the rejected good's reference in the Earlier PO which i have created for 100 goods.So that the Vendor will come to know that he has received the rejected goods against this PO............CAN ANYBODY HELP ME IN THIS ISSUE
    THANKZ IN ADVANCE
    Good reward points will be awarded for all the goods answer
    SHAILESH

    do one thing
    change the same PO
    add the same line item below 100 qty
    which ur rejected qty and tick it as return delivery
    u have the reference in the same PO
    regards,
    snb

  • Rejection qty stock at operation wise

    Dear All
    I have a problem for getting the Rejected quantity stock at each operation wise.
    Material 'A' has 10 operations in the routing.
    At each operation some qty may get rejected.
    How to account the stock of rejected quantity at each operation level?
    If i enter in the Rework / Scrap field in the confirmation screen, i can't getting the stock anywhere because there is no seperate material code for that operation.
    I tried by creating a Seperate material code for the Rejection qty and assign it to the BOM. But it is not viable that creating seperate material code at each operation level.
    Please explain me what is the standard procedure to follow.
    Thanks & Regards
    Bala

    yes
    stock will not be upadate unless until u maintain the material as negative qty in the bom if u know rejection qty is knwon before planed order creation.
    i think in your case  rejection qty is known at the time of confirmation, for this u declare rejection qty as scrap in scrap filed at the time of each operation,after that clcik on goods movemnt button,there u can add manually material  name and storage location and movement type is 531 ,on which material u want to post the stock.
    Edited by: sukendar neelam on Jan 22, 2009 8:22 AM

  • WS Error - Planned Qty should be greater than Completed + Rejected Qty

    Hi All,
    We've tried to close a Production Order using the ProductionOrdersService Web Service.  We're doing this by setting the Production Order Status flag to closed (boposClosed).  The call also requires us to re-set the due date so we do that to the same value.
    When we perform the call we receive the following exception:
    "Planned Qty should be greater than Completed + Rejected Qty  [OWOR.PlannedQty]"
    It's interesting to note that we've tried to close the production order with different items and everything seems to point towards an issue with the items, however, we're not really sure what is triggering the error.  We're also not sure what the error really implies as the Planned Qty is greater than the Completed + the Rejected Qty on the database.
    We're working with SAP 8.8.1.
    The code is as follows:
            // Get the current session ID first
            // Create message header object with value..
            SAPProductionOrdersService::MsgHeader^ localMsgHeader = gcnew SAPProductionOrdersService::MsgHeader();
            localMsgHeader->SessionID = sessionId;
            localMsgHeader->ServiceName = SAPProductionOrdersService::MsgHeaderServiceName::ProductionOrdersService;
            localMsgHeader->ServiceNameSpecified = true;
            SAPProductionOrdersService::ProductionOrdersService ^iprodWs = gcnew SAPProductionOrdersService::ProductionOrdersService();
            iprodWs->MsgHeaderValue = localMsgHeader;
            // Set the item params object
            SAPProductionOrdersService::ProductionOrderParams^ localProductionOrderParams = gcnew SAPProductionOrdersService::ProductionOrderParams();
            localProductionOrderParams->AbsoluteEntry = ProductionOrderNum;
            localProductionOrderParams->AbsoluteEntrySpecified = true;
            // Perform the Item fetch with that information
            SAPProductionOrdersService::ProductionOrder^ localProductionOrder = iprodWs->GetByParams(localProductionOrderParams);
            // Construct a new Production Order Data structure
            SAPProductionOrdersService::ProductionOrder^ newProd = gcnew SAPProductionOrdersService::ProductionOrder();
            // Absolute Entry
            newProd->AbsoluteEntry = ProductionOrderNum;
            newProd->AbsoluteEntrySpecified = true;
            // Production Order Status
            newProd->ProductionOrderStatus = SAPProductionOrdersService::ProductionOrderProductionOrderStatus::boposClosed;
            newProd->ProductionOrderStatusSpecified = true;
            newProd->DueDate = localProductionOrder->DueDate;//     {6/9/2011 0:0:0 System.DateTime}     System::DateTime
            newProd->DueDateSpecified     = localProductionOrder->DueDateSpecified;//     bool
            // Setting lines array back
            newProd->ProductionOrderLines = localProductionOrder->ProductionOrderLines;
            // Item Code
            newProd->ItemNo = ItemNum;
            // Perform the Update of the Production Order with that information
            iprodWs->Update(newProd);
            // Since there is no return type telling us of the recent update, unless we get an exception, assume it worked
            String^ recMsg = "Close Production Order Attempt Successful.  Parameters are: \r\n" +
                             "Production Order Num: " + ProductionOrderNum;
            Log::LogInformation(recMsg);
            retVal = true;
    Hector

    Dear Gordon,
    Yes, I have checked the data in the database.  I've checked tables OWOR fields PlannedQty, CompletedQty and RjctQty and everything seems  to be in order.  I also checked table WOR1 for the production order lines.  There are two lines, one Labor and one Raw Material (regular item).  I've checked BaseQty, PlannedQty and IssuedQty but everything seems in order there as well.
    Do you know if there is a way to find out what internal piece of code throws that exception message?
    Hector

  • In Production Return & Rejected Qty Prod Order wise required

    Hi Experts,
    In Production, Parent Item to be produced 100. Two Child items are there for the parent Item.
    Parent Item A- 100 Qty
    Child Item A1- 100 Qty -- Issue method Back flush
    Child ItemA2 -100 Qty -- issue method Manual
    Child Item A2 Issued Manually. Production Completed........
    In the receipt from Production
    Parent Item A -90 Qty completed
    Child Item A1- 8 Qty Returned (Good Raw Material Returned)
    Child Item A2- 3 Qty Returned (Good Raw Material Returned)
    Child Item A1 -2 Qty rejected (To be scraped)
    Child Item A2 - 7 Qty rejected (To be scraped)
    We would like to take query/Report......... Production Order Wise, Child Item Issued, Component Returned, Component Rejected.
    Plz Guide Me,
    Thanks and Regards,
    Manikandan

    Hi,
    In SAP, for items defined as Back-flush, you cannot change the issue qty of Raw Material components. This will always correspond exactly to the qty of Finished Goods and the relation between the FG qty and the component qty in BOM. In you example, the RM Item A will be issued as 100 qty as the FG produced is 100 qty.
    Or if you are recording 90 qty then RM Item A will be consumed automatically equal to 90 qty.
    In SAP, the FG reject is prodcued only for numerical record and is recorded in the Receipt from Production screen. Total prodcued qty will be reject qty + completed qty.
    The scrap of FG item is not possible as FG item. Fixed qty of Scrap can be defined in the BOM or the production order as a row with negative qty. This will be prodcued automatically based on the qty relationship between Scrap item and the FG item.
    Say if in the Production Order for a FG of 100 qty, scrap is produced equal to 20 qty, then this srap item will be entered in the Production Order as a row of -20 qty. When production of X qty is recorded, scrap will be prodcued in the following ratio:
    Scrap produced = X * (20/100)
    Regards

  • Reference of Rejected qty in PO

    Dear All
    Before mentioning my problem,i will take you through the scenario from which the problem is encountered
    Actually we are imlementing SAP for the Client for their Export Unit,we have already implemented SAP for their 2 plants
    Now In EoU the purchases are made against CT3 and duty can be exempted for the material against this CT3 form.
    But if there is any rejection then the same material has to be sent to Vendor by payment of excise duty thro PLA Account.
    Suppose MAterial is A
    Vendor is : Sup1
    Customer is : Sup1 (here we have created the customer with the same name as vendor )
    Now suppose if i want to recover only  excise duty from vendor i cant do it from MM so part of it has to be done from MM and part of this process from SD. So that i can recover only the excise duty from Vendor which will be customer in SD process.
    >
    Suppose i have created PO of 100 qty ,i have taken GRN of 100 qty ,in Quality rejection i have rejected 10 qty and accepeted 90 qty
    ========>>>
    Now if you will do the normal rejection i.e Return Delivery
    You will get the reference of this in the PO Created earlier i.e 100 qty PO created ,100 qty GRN done and ret delivery 10
    ==========>>>>
    But here i am doing the return delivery through SD i.e I am sending this 10 qty which is rejected by creating return Order (Return PO)
    i.e i have created PO of 10 qty and marked the return DElivery tick so that th shipping tab in item detail gets activated. and in delivery tab i have to select the block qty.
    I have saved the no and the PO no gets genereated.
    I have to give this PO reference no to SD person and through VL04 he will create delivery and do the POST GOODS ISSUE.
    Till now i think everybody must have understood the scenario.
    ==================
    Now the problem is my cleint wants that he should have the rejected good's reference in the Earlier PO which i have created for 100 goods.So that the Vendor will come to know that he has received the rejected goods against this PO............CAN ANYBODY HELP ME IN THIS ISSUE
    THANKZ IN ADVANCE
    Good reward points will be awarded for all the goods answer
    SHAILESH

    Normal procedure for sending the rejected material back to the vendor in the same p.o no  in which it is inwarded
    Eg
    P.O :AAA
    part no: xxx
    qty: 100 GRN
    Accepted: 90
    Rejected: 10
    Movement type :101
    Return the 10 nos back to the vendor by movement type 122
    you have  to use P.O AAA
    If QM module is there when taking UD accept 90 and reject 10.
    RETURN P.O : This  p.o  is raised to send the material to the vendor where the stock is procured previously before SAP Implementation.  (Or) Material lying for more than a year
    Hope you are clear
    G.Ganesh Kumar

  • Rejected Qty Production Order

    Suppose I have got a production order for 100 Nou2019s. I have maintained the rejection percentage as 2%. I have maintained 4 operations 10, 20, 30 and 40. While running MRP, planned order generated for 102 Nou2019s. After that I have released the production order. Now during confirmation of operation 10, 4 Nou2019s have rejected. So in this case, what will happen? Whether again new planned order will generate? If yes, then for what Qty (2 or 4)? Please explain in detail?

    Hi ,
    Rejection  % u  defined that is planned rejection( as per ur past exp.). and rejection happen during operation is unplanned .
    It will not create any planned order.

  • Duplicate Post Report Rejected

    On Aug. 28th I used the "Report this post" facility to report a post as a duplicate of one posted three minutes before. This morning I received to my mac.com account e-mail that my report had been rejected. Included was this text: "delivery temporarily suspended: host mail-in6.apple.com[17.254.13.9] refused to talk to me: 554 Open proxy list. Review your server settings."
    Something seems to be broken.

    Eric W. wrote:
    I am curious if anyone else has had this problem recently.
    I just had one a little while ago.
    <[email protected]>: delivery temporarily suspended: host
    mail-in2.apple.com[17.254.13.5] refused to talk to me: 554 Open proxy list.
    Review your server settings.
    Reporting-MTA: dns; jiveasp-apple08.managed.contegix.com
    X-Postfix-Queue-ID: 38C9ACDEF17
    X-Postfix-Sender: rfc822; [email protected]
    Arrival-Date: Mon, 31 Aug 2009 15:01:20 -0500 (CDT)
    Final-Recipient: rfc822; [email protected]
    Original-Recipient: rfc822;[email protected]
    Action: failed
    Status: 4.0.0
    Remote-MTA: dns; mail-in2.apple.com
    Diagnostic-Code: smtp; 554 Open proxy list. Review your server settings.

  • "post" or "reject" parked Document ?

    Hi All,
    I am designing a WF for posting of parked invoices with BO - FIPP.
    At some approval level where 'X' person will post the parked Invoice , we want to give him the option of rejecting the document as well.
    If I am using tcode - FBV0 for post document , we have option for "post" but no option is provided for "reject".
    Please suggest how to go about it ??
    Best Regards
    Priya

    Hi Priya
    Stuck with FIPP Workflow. You need to do Business Object Binding from Workflow to Task. This can be done by checking the Binding of TS20000166 in Workflow Template WS20000075. Once you do that you will get a link. If you click on the link you will get the TCODE in display Mode. I was expecting some mails from you regarding queries:)))). I have now turned into a Workflow Specialist in my company )). Please reward points if useful )). I thnk this wil be very useful.
    Thanks
    Arghadip

  • URGENT: movement type for blocked (rejection) qty to unrestricted

    at the quality we reject the material and the material is blocked.
    but now we want to transfer that blocked material to the unrestricted stock and then unrestricted to scrap.
    plz provide the necessary steps and the movement types for this
    its very urgent
    plz help.

    Mov Type: 343(Blocked to UR)
    Mov Type : 551 (UR to SCrap)
    Tran Code: MB1B
    Edited by: PP Consultant on Dec 18, 2007 8:10 AM

  • Workflow - resubmit rejected content thru DIS

    Hey
    I have a problem with a workflow. The problem occurs when a contributor is working with content that was previously rejected in a workflow through the DIS. They make the changes recommended by the reviewer and check it back in, but the content is not moving on to the next workflow step. The manual says that they should be able to set a flag named Revision Finished Editing, but it is not appearing in the metadata field screen when I do a "Checkin with metadata". Note that I can see this field if I do the checkin through the web client, just not in the DIS.
    Is this a bug, or do I have to do something to get this check box to appear?
    Cheers,
    A

    Hi Alec,
    I wonder what needs to happen before a Desmo_Mk* user gives points for "Helpful" or "Correct" answer to anyone and marks the question as "Answered". It is strange to me - unlike many other users of this forum you didn't mind to invest 153 keystrokes to express your gratitude, and yet - no points?
    Never mind.
    There is actually one thing you could try (which would alleviate your training issue a little bit): you might have noticed that the appearance of the "Workflow" line is a feature of DOC_INFO. You could try to modify the output of this service (this will be an idocScript customization- I assume quite a simple one) to expose not only the name of the workflow, but also APPROVE (and REJECT, if you will) workflow actions. Then you should verify whether this change affects also DIS.
    This would save your users two mouse-clicks.

  • Requirement of putting partial batch qty to restricted status

    Hello All
    I have a requirement where in the 100000 EA of FG is produced & is having a single batch no., but out of these 3000 need to be reworked & shall take atleast 5-6days for rework, on the other hand we cant wait for that long to deliver the remaining 97000 EA of FG.
    My question here is that can i put partial qty of a batch to restricted use & do the rework & at the same time my remaining 97000 are in unrestricted use & can be dispatched readily.
    Looking forward to your valualbe inputs.
    Regards,
    J K Tharwani

    Sure.  In the stock posting screen of the UD just post the 3000 to blocked and the 7000 to unrestricted.  You don't have to make the UD eithr if you don't want to.  Or, as I often recommend, post the reject qty to a separate new batch number and post this batch to unrestricted stock with a restricted batch status.
    This allows production to select the reework from restricted stock.  But restricted batch can be set up so they cannot be sold.
    Even better if you can designate a storage location for rework and physically move the material there.
    FF

  • BAPI for Posting Incoming Payments thru F-28

    Hi,
    we are trying to post the incoming payment thru standard BAPI (BAPI_ACC_DOCUMENT_POST) but unable to do so. the error message are coming in Object type and object key fields in header data.
    kindly help me, and if possible pls sent me  sample input parameters(for header and lineitem details) for this.
    It's very urgent
    Points assured.
    regards,
    Anand

    Hello,
    what is the error log?
    Pls mention
    Rgds
    Rajendra

  • Regarding rejecting my posts in abap development

    Hi Moderator,
    i have posted a query and it got deleted by moderator , the reason given "You haven't showed.........", after that i have again posted my queries by showing that i have already written my code and i get struck for a logic, which i am not getting.........again my queries get deleted saying "Please see the rules of Engagement....". as shown in the screenshot below.
    My question is "if i know what to write, and how to write my logic, why i will post my queries".
    So, can i know the exact reason behind rejecting my queries. Here is the moderator messages.

    Shweta Chouhan wrote:
    Isn't it a basic question, and has been answered many times before, why not this thread removed
    I've lost count how many times I've heard this. "It's not fair. My post was rejected but (scrabbles for the search functionality...) this one wasn't".
    1) If you know how to search, then you should use that to look for an answer before posting
    2) If you see a question that should be rejected, you should hit the alert moderator button
    3) You should be able to work out that there are hundreds of messages posted every day and that moderators cannot hope to read every one. We're not paid to do this, you know. We do it in our spare time, while you're having coffee or lunch or dinner or watching TV...
    Clear and exact enough for you?

  • Posting Withhold tax thru "BAPI_INCOMINGINVOICE_CREATE"

    Hi all,
    I am facing problem in posting withhold tax thru the standard BAPI. The invoice is posting properly but not updating the Withhold tax amounts that I am passing to the BAPI. And it is giving no error either.
    When trying to post manually thru MIRO it is ok.
    But thru BAPI it is not getting updated.
    Did anybody face this problem, or has successfully posted the withhold tax thru this BAPI?
    Please help me out.
    Thanks

    Did you resolve this problem ? could you share your solution for this please ?

Maybe you are looking for

  • Unable to open project in Visual Studio 2015 Preview

    I have a problem with one of my solutions. It freezes the application on load. Visual Studio 2015 Preview works for all other projects and loads up correctly. But this one solution file doesn't load. Have anyone had this issue and what is the best wa

  • Possible to install TV tuner on my K330B to play Wii?

    Hey all - I've been plucking my monitor wire between my computer and an external TV tuner for quite some time, and it's getting old reaching behind and trying to get the connection right without bending pins. I want to play Wii on my 1680x1050 monito

  • Shipment Cost = Purchase Order

    Hi Where do I define such that one PO will be created for every shipment cost document.. Currently the line is added to the existing purchase order (from previous transactions).. THanks

  • Upgrade to K7N2 - Win2K cannot find bootable device

    I just tried upgrading my system to a K7N2. When Win2K loads (during the white logo'ed screen with the progress bar) it gives a BSOD with something like "Cannot find bootable device" (I forget the exact phrase). I've had to swap back to my previous M

  • I lost my iPod install disk...

    Hello everyone. I have reformated my computer (i think thats what i did) and everything was ereased, and I went to install my iPod again, AND I LOST MY DISK. is there anyway to get the software on the internet to install it? Please help me   Windows