Negaative Stock Commitment in Item Master

Hi,
System is showing negative stock commitment in item maaster's inventory tab. I am unable to identify how it becomes negative. Is there any answer to this?
Thanks.
Siddiq

Hi Muhammad Siddiq
If you block negative inventory in document, system will allow the negative stock,for example
item xx having two warehouse 01 and 02
now 01 having 10 qty
02 no-stock
now system will allow to issue the stock in 02 warehouse up to 10qty
after issue system will shown the report like this
01 Instock (0)
02 Instock (-10)
Total 0--->(System will not allow negative quantity for Total only)
*Solution for solve this *
Enable
Block Negative Inventory
Manage Inventory by Warehouse

Similar Messages

  • Commitment Item Master

    Hi
    1)What is the implication of Financial transaction in the Commitment item master?
    Kindly explain in details regarding various financial transactions like
    30  Post revenues, expenses, fixed assets, inventories
    40  Post Goods receipts and Goods issues
    50  Clearing
    60  Post receivables & Payables
    70  Post customer clearing
    80  Post bank clearing and BG
    90  Post cash holding
    Explain for which transactions and GL accounts these financial transactions must be used.
    2) What is Commitment Item caegory? When and for which transaction these item categories must be used like
    1) Balance
    2) Expenses
    3)Revenues.
    4)Clarification work list
    Cheers
    V.Krishnan
    (Your replies will be acknowledged with points)

    I've create commitment item master (FMCIA) without "Standard Variant" field flaging. When I display commitment item heirarchy (FMCIE) the commitment item is under my Standard Hierarchy.
    I reviewed in table "FMCI" and found that field Standard Variant (STVAR) is flagged "X". Is this mean all Commitment Item Master Data will be automatically flaged the Standard Variant field?
    From my experience, all Commitment Item should be flagged to be position under the standard variant. I tried create Commitment Item Master in the client that the Standard Variant indicator filed appeard by un flag that field. There is the error Message no. F6160 (You can only maintain postable cmmt items in standard var. xxx).
    Are there any case that the standard variant field in Commitment Item master should not be flagged, and let that commitment item out from Standard Variant ?
    Is this related to the configuration that I set for Year Independent Master Data?
    Ton

  • Some commited figure is showing in Item master data

    Hi,
    why  some commited figure is showing in Item master data in Inventory TAB . Its showing only Raw materials and Finish Goods items.
    Others inventory items are okay.
    Regards,
    Mzian

    Hello Manvendra Singh
    Thanks for your kind cooperation. Now i can understand this.
    Regards
    Mizan

  • Stock Posting List from Item Master Data

    Hi,
    We just encounter a strange problem. In SAP we could go to an Item record and right click to choose Stock Posting List which will bring out the stock posting report that list all the in and out records for this particular item. The report can be generated shortly.
    Over the weekend we enter into a new fiscal year and suddenly the Stock Posting List from item master does not contain any entries from previous fiscal year and it takes very long to show the list.
    We could however run the Stock Posting List as normal from Stock Reports which will show all the records.
    The problem if the Stocking Posting List from the item master only shows entries in the current fiscal year why suddenly the performance degraded when there is actually less data to be displayed.
    Any one encountered such situation as well?
    We are on PL44
    BR,
    Jimmy

    Hi Jimmy,
    This is the System behaviour in SAP 2007 A. Due to the changes in posting period functionality, it is not possible to choose posting period. That is the reason why if you right click on an Item Master Data, Inventory posting list only for the current year appears. If user wish to see transaction for the other years, he needs to open Inventory Posting List report and set dates in the Selection criteria window.
    Regards,
    Varun
    SAP Business One Forum Team
    Edited by: Varun Kumar on Mar 3, 2009 9:36 PM

  • Item Master "Ordered" Stock but no Purchase Orders.

    I'm a bit stuck with a problem in my Item Master Data. There is a quantity of 30 in the "Ordered" column under Inventory Data. But I can't seem to find the purchase orders linked to this Quantity. What am I missing?

    Hi,
    Check is there any open production order for this item.
    Or
    Right click the item and -> Inventory Status
    Double click the row -> Now you can see the split up of the Quantity. Refer the below image
    Above method is not working then try below,
    Help -> Support Desk->Restore->Restore Item Balance
    Select the appropriate item in From and TO then click OK
    Now check the order quantity.

  • Free goods - No stock for main item , GI happens for Free goods

    Hello gurus,
    While creating sales order, main item is entered. The free goods gets created as sub item. Now even though there is no stock of main item, during creation of delivery, system brings the free goods in the delivery without getting the main item. It allows to do a GI and billing.
    The delivery setting in the free good condition record is maintained as ('B' Delivery only if main item is fully delivered). due to this setting system should not allow to carry out delivery for both the items.
    Has any one encountered this problem and how it was resolved.
    Valuable inputs will help me to resolve on of our production issue.
    thanks and regards in advance.
    Casimer.

    Hi
    The only other way i see to stop is to tick / activate complete delivery indicator in Sales Order and use incompletion procedure or make this field as mandatory in customer master but in the second case it will be applicable for all orders for customer .
    Regards
    Rohit

  • How to add a column in Item Master form with chooselist

    Hi Experts
    I add a column in Item Master Form in Stock Data Tab. In this column I want to add Choose list. For this I use AfterFormLoad event. It gives Error "Matrix Line Exist" . My code is given below
    If pVal.FormType = "150" Then
                    form = B1Connections.theAppl.Forms.GetForm(150, pVal.FormTypeCount)
                    form.PaneLevel = 3
                    oItem = form.Items.Item("28")
                    oMatrix = oItem.Specific
                    Dim chooseObj As ChooseListClass
                    chooseObj = New ChooseListClass
                    chooseObj.AddChooseFromListBinCode(form.UniqueID)
                    oColumns = oMatrix.Columns
                    oColumn = oColumns.Add("BINCODE", BoFormItemTypes.it_EDIT)
                    oColumn.Width = 100
                    oColumn.DataBind.SetBound(True, "OITW", "U_BINCODE")
                    oColumn.TitleObject.Caption = "Def BinCode"
                    oColumn.Editable = True
                    oColumn.ChooseFromListUID = "CFL5"
                    oColumn.ChooseFromListAlias = "U_BinCode"
                    oColumn = oColumns.Item("U_BINCODE")
                    oColumn.Visible = False
                End If
    please give your suggestion
    Regards
    Jitender

    Hi Noor
    Thanks for reply
    I tried your suggestion but problem still there. I am using after form load event. Here matrix has 9 lines (all warehouse). If remove the line then how can I reload warehouse data. Can you suggest in more detail.
    my code is given below
    form = B1Connections.theAppl.Forms.GetForm(150, pVal.FormTypeCount)
                    form.PaneLevel = 3
                    oItem = form.Items.Item("28")
                    oMatrix = oItem.Specific
                    MsgBox(oMatrix.RowCount)
                    oMatrix.DeleteRow(1)
                    Dim chooseObj As ChooseListClass
                    chooseObj = New ChooseListClass
                    chooseObj.AddChooseFromListBinCode(form.UniqueID)
                    oColumns = oMatrix.Columns
                    oColumn = oColumns.Add("BINCODE", BoFormItemTypes.it_EDIT)
                    oColumn.Width = 100
                    oColumn.DataBind.SetBound(True, "OITW", "U_BINCODE")
                    oColumn.TitleObject.Caption = "Def BinCode"
                    oColumn.Editable = True
                    oColumn.ChooseFromListUID = "CFL5"
                    oColumn.ChooseFromListAlias = "U_BinCode"
                    oColumn = oColumns.Item("U_BINCODE")
                    oColumn.Visible = False
                    oMatrix.AddRow(1)
    Thanks
    Waiting for reply
    Regards
    Jitender

  • Commitment Line Item report - BE and Settlement Unit issue

    Dear experts,
    Request your kind help.
    This is with respect to viewing the commitment line item report in ECC 6 for RE-FX master data objects. There are two scenarios.
    Scenario 1
    Purchase requisition (PR) is created with a business entity (BE) as an Account Assignment object. After the PR is released the same is used to create a Purchase Order (PO). After the PO has been successfully created, I am running the Commitment Line Item report (REISCOLIBD) giving the BE number as a search parameter. The report shows perfectly the PO and the amount of commitment.
    Scenario 2
    Purchase requisition (PR) is created with a BE as a Account Assignment object. Further to that under the Settlement section, inside the RE Obj box I am also specifying the Service Charge Key, the Settlement Unit and the Ref Date. After the PR is released the same is used to create a Purchase Order (PO). After the PO has been successfully created, I am running the Commitment Line Item report (REISCOLIBD), again by mentioning only the BE number as the input parameter. This time the report does not show the PO at all under commitment line items and instead gives the message "no line items were selected". But here is the catch. When I am running the transaction KSB2 and I am clickng on 'further selection criteria' and then 'Ref Doc num' and then typing the PO number and then running the report, it shows the result perfectly.
    Can someone please tell me why in the second scenario, the transaction REISCOLIBD is failing to capture the data related to commitment line items?
    Please refer to Note 1271310 to see how to adapt the transaction REISCOLIBD to suit the needs for Commitment Line Item report.
    Regards,
    Suvarghya Dutta

    Hello all,
    I have been able to find the answer. As of now Commitment Line Item report for any master data for service charge settlement does not exist and and as such wont be available.
    Kind regards,
    Suvarghya Dutta

  • PO stock transport order -  item change - field Customer in tab shipping

    Dear all,
    because of an existing modification it is necessary that I have to update the field customer at shipping tab of an stock transport order item when item's storage location was changed within TAC ME22N or ME21N.
    Unfortunately SAP has not implemented this functionality within BAPIs or Userexits.
    Does anyone has an idea where we have to place this modification?
    Until the installation of the last support package, the modification changed the customer within include MM06EFPV_PTV_FUELLEN, form ptv_fuellen before calling function SD_TRANSFERDATA_DETERMINE and it worked.
    Best regards and thank you for your replay!
    Michael Schleis
    PS: We are using SAP R/3 Enterprise Release 4.7 and the following Support Package
    SAP_APPL     470     0029     SAPKH47029     Logistics and Accounting
    Edited by: Michael Schleis on Mar 5, 2008 5:35 PM

    Piotr,
    You can default the shipping point in your STO based on the combination of shipping conditon (maintained in customer master), loading group (maintained in material master) and the plant in SPRO->Logistics Execution->Shipping->Basic Shipping Functions->Shipping Point and Goods Receiving Point Determination->Assign Shipping Points.
    If you don't use any of the entries (for instance if you don't use the loading group), then just leave the entry blank in config.
    Hope this helps.
    H Narayan

  • Factors in Item Master Data

    Hi all,
    Can any one Please let me know,what is the Usage of Factor-1,2,3,4 Fields in Item Master Data   (Purchasing  and Sales Tabs).
    I just want to know in which scenarios we can use them?
    If anyone could explain the same with practical example,it would be helpful.
    Thanks & Regards,
    Ravi Patil

    Dear ,
    Factor 1, Factor 2, Factor 3 and Factor 4 Fields for Purchase and Sales
    The quantities of certain items must be calculated by multiplying
    several factors. In the factor fields, you enter the multiplication
    variables. For example, a 1.20 m high fence, which is sold in meters, is
    in stock. The price for the sold quantity is, however, based on square
    meters. To calculate the quantity (that is, the surface area) on which
    the price is based, the system must multiply the sold length by the
    height of the fence.
    In this case, the length of the fence is determined with factor 1 and
    the height (in the example here: 1.20 m) with factor 2.
    The system automatically sets all the factors to 1. You can enter any
    number of factors, or none at all. The entries you make here are copied
    to the business transaction documents in Purchasing and Sales. You can
    overwrite the factors in the row information.
    Note: If you use the factors for a large number of your items, you can
    use the settings for the transactions in Purchasing or Sales to display
    the fields directly when you enter the document. In this case, you do
    not need to call up the row information to change the factors.
    You could also find some information from online help.
    Regards
    Apple

  • Itemcost column table at warehouse level in item master

    I have an issues regarding the item cost in Item master --> Inventory Data tab when we select Valuation method either Standard or Moving average we can see the itemcost (Column) value at warehouse level but for FIFO method we cant see the itemcost column.
    Can any one tell me in which table the itemcost value is stored for FIFO method.? I can see the itemcost of a FIFO valuation method only when i do issue for production there i will get item cost but i want to know the itemcost value at production order level only for FIFO method because based upon the itemcost only my process cost is calculated.

    Dear Pavan,
    The Item Cost column is not shown in the Item Master Data for items using FIFO Valuation Method. This is because a FIFO cost layer is created as Items are received to stock. Hence, it is possible that for one warehouse, several FIFO layers exist (depending on the different FIFO cost).
    You can also see this information in the Stock Posting List.
    I hope the above helps.
    Regards,
    Lorna

  • Required inventory level in Item Master

    Hi,
                        In the item master data in Inventory tab we have minimum inventory,maximum inventory and also required level.What is the function of that field.Because it is not filled automatically even after the stock level goes below minimum inventory level.Can somebody explain?
                                                                                    Regards,
                                                                                    Sekar

    Hi Sekar,
    The required inventory level in Item Master with the following function:
    In the Required (Purchase UoM) field, the system displays the quantity to keep the stock at the minimum level.
    If you select Release Stock Below Minimum Level in the Document Settings, the system issues alerts when the quantity goes below the minimum. The system does not let you enter stock documents when the stock reaches its maximum quantity.
    Thanks,
    Gordon

  • Changing Item Master Type

    Hi..
    there are some raw materials we are purchasing but soon we will be manufacturing at our plant.
    is it possible to change its type later on (currently i have defined it as  'Purchased Item' by ticking 'Purchased Item' check box on Item Master screen')
    Thanks
    arti

    Hi.......
    Then you can do one thing. You have to create new alternate items for such item master in which you need changes and you have to do necessary changes as per you item master requirement for manufacturing firm.
    Once you created you can raise special Production Orders in order to convert existing Items into newly created items so that its stock will be transferred to new one and you can use these new items in place of old Items and Old items would then be canceled either by manually or by DTW.........
    Hope this will help you out......
    Regards,
    Rahul

  • Negative order in item master

    Dear Experts...
    In my Item Master Data one of item is showing negative order (-10) hence that item does not have any purchase order in system.
    Plz explain this.
    Thanks in advance.
    Regards..
    Ravi

    Hi Ravi ,
    This is not Possible according to me , that without any purchase order , in the Ordered field - there exists any Value.
    Probably be done by the Back End .
    Can you please check and provide the other quantity (Instock / Committed) ?
    Thanks
    Ashish

  • Required (Purchasing UoM) in Item Master

    What is u2018Required (Purchasing UoM)u2019 in the Planning tab of Item Master? What is the purpose of setting this value?  There is a validation that this value must be between the MIn and Max value. Why?

    The following is the Help by SAP for these Fields:
    Enter the minimum, maximum, and required inventory levels for this warehouse.
    In the Required (Purchase UoM) field, the system displays the quantity needed to keep the stock at the minimum level.
    The system:
    ●     Issues alerts when the quantity goes below the minimum (Release Stock Below Minimum Level in Document Settings must be selected)
    ●     Does not let you enter stock documents when stock reaches maximum quantity

Maybe you are looking for