Table: Stock for material

Dear All ,
which table can i find the entry whether the material stock exist or not which we see in the MMBE .
Regards

hi,
check table A501 - plant/material...
MARC - plant data for material
MARD - storage loc data for material
Or check report : MB52..
Hope it helps..
Regards
Priyanka.P
Edited by: Priyanka Paltanwale on Oct 13, 2008 9:48 AM

Similar Messages

  • Tables/FM for opening/closing stock for material on given posting date

    Hi All,
    I had requirement of find the opening/closing stock for material on given posting date. The values we can find out using TCode - MB5B.
    But I cannt use MB5B to extract data because I need to find detials for thousands of material.
    Can you please adivce if their is any FM or tables through which i can find this detial on any given date apart from current date.
    Thanks & Regards,

    Hi,
    [https://forums.sdn.sap.com/click.jspa?searchID=19631709&messageID=6593903]
    [https://forums.sdn.sap.com/click.jspa?searchID=19631709&messageID=6630975]

  • Table name for material master change

    What is the table name for material master change, so that I can get the old values and new values at plant level.
    More specific:
    I want to check the old values for Re order point and Safety stock in MRP1 and MRP2 fields in material master for many materials. Please help.

    Use CDPOS and CDHDR table to get the values which were changed.
    CDPOS>use fields Change doc. object give in as MATERIAL and in the Table name>MARC

  • Tables used for material ledger

    What are the standard tables used for material ledger

    Hi,
    All req. configuration i have defined in last thread...
    The following tables contain data that can appear in the material ledger documents:
    ·        MLHD      Material Ledger Document: Header
    ·        MLIT  Material Ledger Document: Items
    ·        MLPP      Material Ledger Document: Posting Periods and Quantities
    ·        MLPPF    Material Ledger Document: Field Groups (Posting Periods and Quantities)
    ·        MLCR      Material Ledger Document: Currencies and Values
    ·        MLCRF    Material Ledger Document: Field Groups (Currencies and Values)
    ·        MLCRP    Material Ledger Document: Price Change (Currencies, Prices)
    ·        MLMST    Material Ledger Document: Costing Run Header Data
    The following types of material ledger documents are available, differing by transaction type:
    ·        CL     Material Ledger Closing Entries
    ·        UP    Material Ledger Update
    ·        PC    Price Changes
    ·        ST     Single-Level Price Determination
    ·        MS    Multilevel Price Determination
    ·        RE    Material Ledger Data Repairs
    USE :
    Material ledger documents are data that is recorded during each business transaction that is relevant to valuation. You can archive documents for closed periods when they are no longer needed for material price determination or reporting purposes. Archiving the documents deletes them from the database.
    Regards,
    Priyanka.P
    PLS AWARD IF HELPFULL
    Edited by: Priyanka Paltanwale on Aug 7, 2008 9:34 AM

  • Minimum & maximum stock for Material

    Hi Team,
    Here my client required to keep his stock in the form of Minimum & maximum stock for Material.
    Let me explain with an example.
    Material =Pen
    In Stock it should be always 5 & maximum 10, when it falls below 4 it should generate PR & should not cross maximum limit 10.
    if in stock 3 pens r there it should generate PR for 7 , If 4 then PR for 6
    Please help me for it ASAP.
    Regards
    Mahantesh

    Hi Mahantesh,
    For this you need to maintain below settings in material master for your material.
    In MRP1 view,
    Define MRP Type: V1
    Define Reorder Point: 5
    Define MRP Controller:
    Lot Size: HB (Replenish to max. stock)
    Define Maximum stock level: 10
    After this material master settings in MRP 1 view, test the results by running MRP for the material.
    Keep the stock at different levels like 3, 4 and 6 for the material before MRP run.
    You will get the results as per your business requirements.
    Regards,
    Naresh

  • Table names for Material Characteristic againgst production order

    Hi Guys,
    Actually I have a problem in finding the table name for material characteristic against production order such as Individual length, factor, color, etc. I really spend more than a day to find this. But I cudn't make it. Finally I found the flow some how, but is working only for few cases. Here is the flow.
    AFKO(RSNUM) --> RESB(OBJNR) --> INOB(CUOBJ) --> AUSP(OBJEK).
    T-code: CO02 / Fast Entry tab / Change Configuration(Item Level) / Change Characteristic values.
    Anybody knows about this. Please help me out on this. And please note that, it is not the material characteristic from MM01, it is against production order from CO02.
    Thanks
    Yasin.

    Hi Yasin,
    The best way to know Table Names in SAP is to use a Transaction Code Called : SQL Trace. Tcode : ST05. This will tell you about all the database tables that have been accessed while the Transaction was executed. And then you do a complete analysis of it, what are all the Tables that have been accessed, the fields and the data transfered. So, it's a complete trace of the SQL Query but you can use the information as needed.
    Have a look at the following Links:
    http://help.sap.com/saphelp_nw04/Helpdata/EN/17/358df9c9fee2469105731e10756921/content.htm
    http://help.sap.com/saphelp_47x200/helpdata/en/d1/801f89454211d189710000e8322d00/content.htm
    The best things is that you can use it across any SAP Transaction as it is available in SAP NetWeaver .
    Hope this helps.
    Thanks,
    Samantak.

  • Table link for material and characterstics values

    Hi all,
    I want link between the material and characteristic values .
    please help me regarding this.
    Regards,
    T srinivas.

    Hi,
    "use this function moduel...
    *Retrieve Batch class , characteristic name and values for Material
      CALL FUNCTION 'CLAF_CLASSIFICATION_OF_OBJECTS'
        EXPORTING
          classtype          =  '023'
          features           = 'X'
          language           = 'E'
          object             = w_l_object      "pass material number with leading zeros..
          objecttable        = 'MCH1'   "enter table name MARA, MARC ,MCH!
        TABLES
          t_class            = t_lclass
          t_objectdata       = t_objectdata
        EXCEPTIONS
          no_classification  = 1
          no_classtypes      = 2
          invalid_class_type = 3
          OTHERS             = 4.
      IF sy-subrc = 0.
    ENDIF.
    "or fololow the below code
    AUSP,CABN , CAWN, CAWNT..
    select * from AUSP in to table t_ausp where OBJEK = matnr .  "Pass materia number with leading zeros
    SELECT SINGLE * FROM cabn
              WHERE atnam = t_ausp -atnam.    "characteristic name stores in this table
    if sy-subrc = 0.
            SELECT SINGLE * FROM cawn WHERE atinn = cabn-atinn
                                       AND adzhl  = cabn-adzhl.  " "characteristic Values stores in this table
    endif.
    Prabhudas

  • Upload stock for material in storage type ??

    hii
    How to increase stock for particular material in LS26??
    Stock for ware house and storage type ??
    Thanks

    Hi,
    you need to create some stock in the bin for whatever the operation you are doing. Here are the steps.
    first check if you have stock of same material in any of the other bins using LS24. If so, create TO using LT01 (mov type 999) for source and destination bin (bin of your interest) and confirm the TO. Do your operation, it should work.
    If its a test system, you can try upload stock in IM using MIGO-501 mov type or MB1B-561 mov type. Crate TO for material document using LT06 (TO may get automatically generated based on your system settings). Confirm the TO (note the destination bin). If the destination bin is not same as the bin of your interest, use first option to transfer stock to bin of your interest.
    Thanks,
    Ram

  • FM for Opening And Closing Stock for Material

    Dear All,
        I need to Calculate the opening and closing stock of the material. If there is any FM for the same just let me know and if not kindly let me know the way out.
    Regards
    Amit

    Hi!
    The closing stock can be found in the MARD table.
    And the opening stock should be always zero.
    I think you wanted to know the yearly/monthly closing/opening stocks, then you have to gather all material documents from MKPF, MSEG tables, and calculate the stock, using the actual stock and subtract/add (depends on the movement type) the material document's quantity, until the given date.
    I don't know any FMs for this, maybe someone could tell you one...
    Regards
    Tamá

  • Table relation for material and characteristics value

    Hi,
    I am looking for the tables which contain the material and characteristics values. e.g. For a particular material what are the characteristics available and what are their uniq values. It will be great if you could provide me the tables name along with the link key (foreign key) between the material no and it's characteristics. Even though I have tried ausp & other tables but I could not find the uniq for a particular material. All answers are appreciable.
    Thanks in advance..
    Pradeep

    Hi Pradeep,
    You can check these tables
      INOB, KSSK, KLAH, CABN, CAWN and AUSP.
    Cheers
    VJ
    If it helps dont forget to mark points

  • Single table/report for material codes by valuation class

    Hi Gurus,
    One of our customers insists on a basic way to find easiest way to list "material codes" by some "valuation class" values. I know it can be done by cross referencing with different tables but i wonder are there any single transaction that shows material list?
    Thank you all
    Btw, i am newbie here, this is my first message:)
    Regards,
    Mustafa

    Hi
    have you tried MM60
    try it,give plant and material type and execute
    and welcome on SDN
    search before you have any basic questions
    Regards
    kailas ugale
    Edited by: kailasugale on Nov 11, 2011 3:30 PM

  • Material opening and closing stock for a given day- Tables or FM

    Dear Friends
             i have to make a report  , related to Material opening and closing stock for a given day  , i check the T-Code- MB5B ,
    it is not giving correct date . is any functional module is available  ? . i checked some table like mbew , mard . it is also not giving correct requirement . Please help

    Hi
    Goto transaction MC.9, Give your Material and,Plant and the date which you need to know the closing stock. Do make sure that in the high and low values you are giving the same date there. I guess no such FM are available for this. You can refer the  [Link|https://wiki.sdn.sap.com/wiki/pages/viewpage.action?pageId=15856]  for some help.
    Regards
    Vinodh
    Edited by: Vinodh_AN on Dec 15, 2010 9:19 AM
    Edited by: Vinodh_AN on Dec 15, 2010 9:25 AM

  • Table for field unrestricted stock for a material

    Hi,
    Which table holds the value of unrestricted stock for a material?
    Thanks in advance.
    Phani.

    Hi,
    Thanks for your replies...
    Does the fields suggested by you store the values of warehouse stock?
    Regards,
    Phani.

  • Creating Z report for material stock (plant maintenance module)

    hello,
    we are implemented Plant maintenance module (SAP PM)  in our organization.
    our requirement is to create a stock report which will incldue
    followings:-
    1)material number
    2)plant number
    3) storage location
    4) material type
    5)valuation type
    6)Opening Stock 
    7) OpValue 
    8)Received Stock  
    9)   ReceiptValue      
    10)   Issue Stock          
    11)  IssueValue        
    12)  Closing Stock      
    13)  Closing Value
    we want above details in ALV grid format.
    to gert all the details for perticular material, we calcute closing stock and closing value in following manner:-
    opening stock + received  stock - issue stock = closing stock
    opening value + recipt value - issue value = closing value
    we are unable to find table name for  accessing  opening stock,  received  stock , issue stock  & opening value ,recipt value , issue value from system. please suggest table name information for getting above details  for creating Z report

    Dear friend,
    Before to make a decision to bulid a custom report make sure you have checked out the following standard transactions:
    MB5T Stock in Transit
    MMBE Stock Overview
    MD04 Stock/Reqs list
    MB53 Plant Stock Availability
    MB52 Warehouse Stock
    MB5M Expiration Date list
    MB5B Stock for Posting Date
    MB5T Stock in Transit
    MBBS Valuated Special Stock
    MBLB Stock with Subcontractor
    The possible tables are:
    MARA, MARD, MARC, VBEP, VBAK(VBAP), EKKO(EKPO), EKBE, EBAN, EBEW, MSEG, MKPF,...
    Good luck!

  • Get the Stock for a given Material no

    Hi,
         I'm an ABAP consultant, new to MM.
         I have a requirement - For a given Production Order I have to find the Material and respective BOM Explosion. Once that is done I have to get the Stock for those Materials [Child Materials].
    I have used AUFK and AFPO to get the material from the Production Order and Used MAST table to get the other details and passed it to FM - 'CS_BOM_EXPL_MAT_V2' - This gives me the Child materials.
    Now I want to know how can I find the Stock for a given Material. I want to get the Overall Unrestricted stock. Which Table do I have to use. Is there any standard Function Module [FM] or BAPI to get it.
    Please help.
    Thanks & Regards,
    Ashish

    I have gone through  the MARD table. I want to confirm - for a Material no there are more than 1 plant and for each plant there are more than storage location. So I have to add the Unrestricted Stock of all those to get the Full Unrestricted Stock.
    Please refer Transaction MMBE - I have to use that output.

Maybe you are looking for