Committed Quantity in Component Detail screen

Hi,
Can anyone tell me how does the committed Qty in Component detail screen appears. I tried creating a PR and PO and then GR for 2 same materials on an activity. 1st one shows committed qty while the other donot shows. Note that GR has been done for both of them.
Please let me know what is the funda behind this.
BR

Thanks for your quick reply,
But the fact is I dont have this check ON in config, so the only way that remains is manual.
But I am lil confused with terminology here. The GR is already done and Material is in Project stock, why is the committment Qty remains after availibility check ? There is no MRP run.
BR

Similar Messages

  • Production order-committed quantity

    Dear all
    PLz through out the  light on committed quantity in component overview screen in production order .
    give me detail

    Hi
    During creation of production order you will do material availability check,, if materials are avialable  it will commited the quantity means automatically reserved the quantity..
    During Goods Issue what ever the materials issued it will come as quantity with drawn
    comitted qunatity will check Stock/Purchase Orders/Purchase requistations  like as per your availability check createria
    regards,
    srihari.m

  • Indicator to include component scrap in the details screen of MFBF tcode

    Hi ,
    There is an indicator in the 'Details' screen of MFBF transaction to "Include Component scrap".
    User has to select this indicator everytime he wants to include the component scrap or is there a way to save this setting ?
    If it is defaulted from some config settings ..please let me know where it is maintained.
    Your inputs would be highly appreciated.
    Regards,
    Sastry

    Sastry,
    You need to Implement the solution provided in OSS Notes#361630 for your requirement.
    Regards,
    Prasobh

  • Update commitment quantity in production order

    Dear Expert,
    I have a case which i have created a production order and it has created the reservation document for the material which is available. So when i run the missing part list, it will show which part is not available.
    I have do some update on the missing part list stock, lets say i have GR for one of the missing component. But when i run the missing part list, it is still showing the same missing part list although this the component has been added to stock.
    I have check the overview of component in Prod Order, the specific component committed quantity still not update although i have add the stock and and posted it before the requirement date.
    Question is: how to update the missing part list?
    Regards,
    LY

    Lukas,
    You can see the elements that are reducing your available stock in CO09.  Enter the matl number, plant, and the checking rule.  You will see the display.  The quantity you are interested in is the one at the right, ATP qty.
    Hit the "all details" button.  Now, on the rows, you will see the details of all of the supply and demand elements that are contributing to your 'negative 1' qty.  In the column titled Rec/Reqd qty, there will be a minus sign for each requirement, and no sign for each supply element.  ATP uses its internal arithmetic to then calculate the ATP qty.
    You can review which elements are being considered by hitting the 'scope of check' button.
    It is hard to troubleshoot from a distance.  However, if you can give us details of the detailed CO09 display, we can probably point you in the right direction.
    A common problem is is storage location.  If your prod order ATP is 'storage location specific' (this is common), and the stock and the requirements both exist in different storage locations, it can cause symptoms similar to the ones you have described.
    Rgds,
    DB49

  • Adding new fields in Item details screen in VA01 tcode

    Hi all,
    My requirement is to add custom fields in 'Additional Data B' tab of VA01 transaction.
    That is, after entering the material and quantity, if i double click tat material, it goes to item details screen. In taht, 'Additional data B' tab is there with no fields.
    Now i want to add fields in that.. Is it possible?
    Is there any exit for adding custom fields under that tab?
    Pls tell me the procedure..
    Regards,
    Shanthi

    The process for Additional Data B, whether header or item level, is simple... 
    First, add the data elements to VBAK (header) or VBAP (item), in a customizing append.  The accepted practice is to name your fields beginning ZZ, with the appropriate or custom data element/domain.
    Then on Additional Data B screens, already named in this thread, create whatever is needed.  For instance, you might want to add a subscreen that contains a group of fields with the DDIC-specific captions.
    If you simply need a field, you can place the field (like VBAK-ZZMYFIELD).   SAP will then manage updates to the database for you....no need to do anything to see that the data gets copied into the tables.
    In one instance, I saw a pushbutton added that resulted in calls to screens with table controls, etc., essentially an entire subsystem called by pressing that button....

  • Detail screen in

    I am carrying out an excercise in DMS ,where it states:-
    Create the following document structure in the document:
    Document: PLM ##
    Document type: FOL
    Document part: 000
    Document version: 00
    Change number: No entry
    Valid from date: Today.s date
    You can now enter several documents in the "detail screen":
    Item       item type      Document     Type     TID    Vs     Quantity
    10          D                 td01
    My question was, where is this "detail screen" (eith item type, quantity,item,TID)?
    I can't see it in the 'document browser' tab page and neither in the basic data 'gen document' tab page.
    I created the above PLM02 document from the 'document browser' in a previous task & on ECC6 'CV02/02' TRANSACTIONS.(just FYI)
    can someone assist please ?
    Thanks

    Thanks all, I got it
    Env>doc structure>create
    Edited by: Shovon Banerjee on Apr 22, 2008 1:39 PM

  • Metadata property as Details Property in Details Screen

    Hi,
    is there any way (java class) to display a metadata property as a details property in a details screen (I think the default details area is overview_description).
    Thanks in advance.
    Regards
    Ray

    Hi,
    you can create a class that extends AbstractResourceDetailsProperties and renders a metadata property, similiar to the standard ModifiedDetailsProperty, for example, that renders the Modified Property.
    For example if I have a property named Customer I would create a class called CustomerDetailsProperty something like this:
    public class CustomerDetailsProperty extends AbstractResourceDetailsProperties {
         public CustomerDetailsProperty() {
         public boolean isPropertyAvailable(IResource resource) {
              com.sapportals.wcm.repository.IProperty tempProperty = null;
              try {
                   if (getPropertyName() != null)
                        tempProperty = resource.getProperty(getPropertyName());
              } catch (ResourceException rEx) {
                   log.errorT("Could not check property availability for resource < "
                             + resource
                             + " > "
                             + LoggingFormatter.extractCallstack(rEx));
                   return false;
              return tempProperty != null;
         public Component renderDetailsProperty(IResource resource) {
              try {
                   com.sapportals.wcm.repository.IProperty customerProp = null;
                   com.sapportals.wcm.repository.IProperty tempProperty = null;
                   if (getPropertyName() != null) {
                        tempProperty = resource.getProperty(getPropertyName());
                        customerProp =     resource.getProperty(PropertyName.getPN("http://sapportals.com/xmlns/cm", "Customer"));
                   if (tempProperty != null) {
                        String header =     getPropertyLabel(tempProperty, resource.getContext());
                        GridLayout grid = new GridLayout();
                        grid.addComponent(1, 1,     renderShortDateProperty(tempProperty, resource));
                        if (customerProp != null) {
                             Component customer = PropertyRenderUtil.renderProperty(customerProp , resource,     0);
                             Link userLink = null;
                             if (customer instanceof Link) {
                                  userLink = (Link) customer;
                                  userLink.setLinkDesign(LinkDesign.RESULT);
                                  grid.addComponent(2, 1, userLink);
                                  grid.getCell(2, 1).setWidth(";padding-bottom:3px;");
                             } else {
                                  grid.addComponent(2, 1, customer);
                                  grid.getCell(2, 1).setWidth(";padding-bottom:3px;");
                        return render(header, grid);
                   } else {
                        return null;
              } catch (WcmException wcmEx) {
                   log.errorT(
                        "Could not render lock property for resource < "
                             + resource
                             + " > "
                             + LoggingFormatter.extractCallstack(wcmEx));
              return null;
         public IResourceDetailsProperty getNewInstance(int priority) {
              CustomerDetailsProperty detailsProperty = new CustomerDetailsProperty();
              detailsProperty.setPriority(priority);
              return detailsProperty;
         public IPropertyName getPropertyName() {
              try {
                   return PropertyName.getPN("http://sapportals.com/xmlns/cm", "Customer");
              } catch (ResourceException e) {
                   e.printStackTrace();
                   return null;
         static Class _mthclass$(String x0) {
              try {
                   return Class.forName(x0);
              } catch (ClassNotFoundException x1) {
                   throw new NoClassDefFoundError(x1.getMessage());
         private static Location log =
              Location.getLocation((com.mycompny.CustomerDetailsProperty.class).getName());
    Best regards,
    Avishai Zamir

  • Production Order Header - Committed Quantity

    Hi Team,
    I have created the production order with quantity 2. In order to produce the 2 header item, i need to 2 components (BOM item). But currently i have only 1 quantity of  BOM item in stock. With this condition, i am performing the ATP check in my production order. Since i have only one BOM item in stock, i can able to produce only one header item. So after executing ATP check in my production order, i am expecting the below field to be updated as "ONE" (refer the screen shot). But it is not getting updated. Why? When this field will be updated?
    Thanks

    I have tried testing this in various ways on my system but I cannot get the committed quantity to 0 unless there is 0 available. The quantity is always updated for me.
    Can you do the following?
    Set a breakpoint here:
    Function AVAILABILITY_CHECK_CONTROLLER
    CALL FUNCTION 'AVAILABILITY_CHECK'  <<<<<<<< Breakpoint here
           EXPORTING
                P_SCHEDSH     = P_SCHEDSH
                P_SCHEDTR     = P_SCHEDTR
    When your breakpoint is hit during the availability check, hit "F6" and then check the values in table P_MDVEX. If possible, post the results back here; ensure that you have included the MNG01 and MNG01 fields.
    This internal table holds the result of the availability check. By looking at this, we might be able to narrow down if this is an availability or PP issue.

  • Withdrawal quantity more than Committed Quantity

    Hi Gurus,
    I am facing 1 problem with Withdrawal quantity for 1 component for  Production order.
    I have a Production Order of 430 Quantity .
    When I check components , it is showing Committed Quantity as 435 while withdrawal Quantity as 439.
    We have activated backflush.
    Can anyone tell me why Withdrawal quantity more than Committed Quantity and order quantity?
    --Denish

    Hi,
    Commited quantity is the quantity which, according to the availability check, is available.
    Wwithdrawal quantity is the quantity that has already been issued.
    Probably, you issued this component more than you planned, however you have done this issue with backflush of production confirmation. Therefore, issue is still on planned issue and withdrawal quantity exceeds your planned quantity, and commited quantity is less than withdrawal quantity.
    Regards.
    Onat

  • Negative committed quantity in stock??????be positive plz

    hi
    i've noticed a minus “sign” in quantity committed field in stock .This is really weird since i dont think that a committed quantity should be negative,any idea on how this could happen?
    thanxs in advance
    regards
    s.brooks
    Message was edited by:
            Ombretta Roverato

    Hi Ombretta
    In B1, if you don't control continue of stock B1 can do transaction with sotk in negative.
    You look "ADMINISTRATION\Company Details\Default Evaluation Mothod", I Think this option you have true.

  • Committed quantity query

    Does anyone have a query that can detail the commited quantity in the Item Master Detail Inventory Data Detail tab?
    Thanks, Jeff

    I use this one in a Sales Order assigned to the ItemCode:
    IF (SELECT DISTINCT T0.Itemcode FROM RDR1 T0 WHERE T0.ItemCode = $[$38.1.0]  AND T0.LineStatus != 'C')
    IS NOT NULL
    SELECT T1.DocNum AS 'Document',
                 T0.ItemCode AS 'Item Code',
         T0.Dscription AS 'Description',
                 T0.ShipDate AS 'Required Date',
         T0.Quantity AS 'Orig. Qty',
         T0.OpenQty AS 'Open Qty.',
                 T1.CardName AS 'Customer',
         T0.LineStatus AS 'Status',
                 T0.LineNum + 1 AS 'Line Number'
                 FROM RDR1 T0 
    INNER JOIN ORDR T1 ON T0.DocEntry = T1.DocEntry
    WHERE T0.ItemCode = $[$38.1.0]  AND T0.LineStatus != 'C' AND T1.DocNum > 1000000
    UNION
    SELECT (SELECT MIN(DocEntry) FROM RDR1), NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL
    ORDER BY ShipDate

  • Committed Quantity in Production Order

    when we do the availability check in production order Transaction co02 we get a screen which shows Reqmts Quantity and Committed Quantity. I just need to know in which Table these quantities are getting stored

    Not sure you asking about, but give a try to look at OITW table...

  • Detail screen for row level locking

    Hi All ,
    I have developed row level locking for a table , Next requirment is to display the details of each row i another screen when the user click on each row .And if the row which is clicked for display is geyout in first screen then it should be grey in details screen also .If the row is editable in the first screen then it should be in change mode in details screen .
    I appreciate the help and support .
    please provide the answer as soon as possbile .....
    Thanks,
    NJ

    Yes, if a process holds many row level locks on a table, those locks by default can be escalated to partition locks, and, if necessary, table locks.  Unless you are getting and holding many locks on a given table, this will not happen.
    You say you are exporting data.  If all you are doing is selecting from the table (not updating, deleting or inserting data) and you are using the read committed transaction isolation level, you would only hold a lock on a row for the small fraction
    of a second when you are actually reading it.  So you will never have large numbers of locks at one time.  If you are doing large numbers of updates, inserts, or deletes in a singletransaction or if you are doing large numbers of selects in a single
    transaction with the isolation level set to repeatable read or serializable, then it is possible to get enough locks to cause SQL server to escalate to partition or table locks.  This is normally a good thing (that's the reason Microsoft made it the default). 
    To many locks eats up memory.
    However, if you determine this is causing you a problem and you do not want the locks on a particular table ever escalated, you can use the ALTER TABLE SET (LOCK_ESCALATION = DISABLE) command to prevent most cases of lock escalation on a table by table basis. 
    See BOL for a description of the ALTER TABLE command.  However, I would recommend you not use this unless you have determined that lock escalation is causing you problems.  It is very easy to make things worse, not better by doing this.
    Tom

  • Error after creating a new item in 'Case Worker'-- 'Agent Dashboard'-- 'Task Details' screen

    In 'Case Worker'-->'Agent Dashboard'--> 'Task Details' screen, I have created a item named 'YEARS' using 'Create Item' in 'Personalize Page' screen. It is not going to tasks page and giving error as "
    oracle.apps.fnd.framework.OAException: No entities found, entityMaps not defined for attachment item (YEARS)." How can I remove this field now..

    Please see the suggested solutions in the following docs.
    Entity Maps Not Defined For Attachment Error When Selecting A Deliverable (Doc ID 358385.1)
    Corrupt Personalization - No Entities Found Entitymaps Not Defined For Attachment Item (Doc ID 1085011.1)
    R12:Supplier Page Unexpected Error: 'No Entities Found EntityMaps not Defined for Attachment Item' (Doc ID 1361320.1
    Geography Hierarchy No Entities Found, EntityMaps Not Defined For Attachment Item (Doc ID 831088.1)
    Depot Repair Bulk Receiving Error: "No entities found, entityMaps not defined for attachment item" (Doc ID 1357977.1)
    Thanks,
    Hussein

  • How to prevent error message for material description in MDG material detail screen, when user click on check action

    Dear Experts,
    I have a requirement for making material description as non mandetory in change request view of mdg material screen.
    I have done that using field usage in get data method of feeder classes, but still message is displaying.
    This message 'Material description is mandatory is displaying with check action only, but not with save or submit after i anhance field property as not mandetory.
    How to prevent error message for material description in MDG material detail screen, when user click on check action.
    Thanks
    Sukumar

    Hello Sukumar
    In IMG activity "Configure Properties of Change Request Step", you can completely deactivate the reuse area checks (but will then loose all other checks of the backend business logic as well).
    You can also set the error severity of the checks from Error to Warning (per CR type, not per check).
    Or you provide a default value for the material description, e.g. by implementing the BAdI USMD_RULE_SERVICE.
    Regards, Ingo Bruß

Maybe you are looking for