Regarding finding stock outs of material

Dear All,
I want to make a Z report of the number of days for which stock was Zero for a particular period.
I dont want to use Standard report MC.9 as there required to count stock out days manually.
Please guide me from which tables I can bring the required data.
Thanks All,
Rohan

Hi,
try report MB5B
or used following table
Stock tables: MARD, MSKA, MSPR, MSLB, MBEW /MBEWH
Historical stock tables- MARDH, MSPRH, MSKAH, MSLBH
MIGO TABLE: MKPF, MSEG
Regards
Kailas Ugale

Similar Messages

  • Regarding Constant Stock of a material

    Hi ,
    IF i want to maintain stock of a Material-"A" always as 1000. That means the stock of the material-"A" should never be less than 100. Please suggest what settings need to be maintained to make stock to be always as 1000.
    Thanks in advance

    Aditya,
    Put 1000 pieces into stock, and then block the material for any subsequent issues or receipts.  Since there are no issues or receipts, the stock will remain at 1000.
    You can block a material in MM02, MRP1 tab,  by entering the appropriate code in Plant-Specific Material Status.  You may have to configure a new code that blocks all movements.  OMS4
    Or, you could restate your question with the rest of your requirements.
    Best Regards,
    DB49

  • Table to find serial number for the stock of a material

    Dear All,
    I have a requirement in which i want to find the serial number for the stock of a material.
    in Equi i have serial number with material.
    But i want it with plant also.
    pl. suggest me in which table u have serial number,material , plant and storage location.
    Regards & thanks,
    Vidhya

    Thanks kesav.
    I checked EQSE table in that no entries are found.
    In EQBS table for that equnr u have plant and storage location.
    but the performace while selecting EQUI on the whole will be very slow.
    so i want a table with material,serial number,plant and storage location.
    kindly suggest.

  • How to find  stock category for a particular material in  inventory in r/3

    Hi All,
    I have found there is no update of some material category from r/3 to bw. when data is loading from ods to cube there is a routine for valued stock i.e., eg: stock category is 'U' then only update to cube other wise no update..  some stock category is missing in ods so those data is not updating to cube so  data is not matching from r/3 and bw.. could you any body please let me know where we can check stock category in r/3....
    just i want to check the postings in r/3 side for stock category which ever is not update to cube..
    I have tried in MB51, MB52, MB5B.. i couldnt find category for a material... if any body knows it please let me know..
    Thanks & Regards
    Sreekanth
    Edited by: sreekanthbulle on Sep 2, 2011 9:39 AM

    Hi
    Are you investigating Inventory as well..Can you pls share your design and how reconcile to match the data with SAP?
    Also how do I refresh data again from begining to do FULL REPAIR? pls help

  • Stock Out to Enable Split Valuation on Material

    We need to activate split valuation on a particular material on one specific plant, in order to do so we must stock out from all st. locations and cancel all opened documents.
    We did it !
    In Stock report it shows zero stocks in the following plants and Storage locations.
    we also checked MBEW and MARD Tables and the values are zero their.
    However it still display errors:
    Stocks already exist at plant level.
    Material                Plnt   SLoc
    236670030          D920 M920
    236670030          D920 M921
    We checked Plant stock and Storage Location in MM03:
    There it shows the Following:
    Plant Stock in previous Period:
    Unrestr.-use stock              45,836
    How can settle the above.
    Please advise!
    MASK

    Hi There
    Check in Stock in transit or Stock in transfer or Reservation for a material in a plant,,
    Once you confirmed everything Zero, again check the Stock and try
    Based on your below post, i am doubting of transfer or Transit or reservation open qty
    236670030 D920 M920
    236670030 D920 M921
    Hope it helps
    Thanks
    Senthil P

  • Stock of a material as on given date

    Hi all,
        Is there any function module or any BAPI to calculate the opening and closing stock of a material as on the given date, based on which a customizing report is to be developed.. There was a Transaction MB5B to know the as on date stock, but it's taking longer time to use it in customizing report.Please let me know if any BAPI or any F.module is there to find the stock of a material as on given date.
    Thanks in advance.
    Edited by: Jaya on Apr 23, 2009 9:15 AM

    Hi,
    Try to develop a report using the logic of MB5B report and minimize the selection criteria
    Regards,
    Vikas

  • Closing Stock of a Material

    If I know the Material Code and Plant then how can I determine the closing stock of that material for a particular date?
    I know that from the table MARD I can get the value of today's closing stock. But how can I know any other days closing stock.
    This is very urgent.
    Regards,
    Subhasish

    Hi
    Check this out.... <b>Though this is for Opening Stock</b>, you can have receipts and issues in that period for the material and then calculate the Closing Stock.
    *&      Form  GET_OPENING_STOCK
      ******* USE THIS LOGIC FOR GETTING OPENING STOCK OF A BATCH ******
      ********** THE WAY ITS DONE (TO SOME EXTENT) IN Trxn MB5B **********    
      **************** VERY USEFUL TO GET STOCK FASTER **************
    FORM GET_OPENING_STOCK .
      DATA: TOTAL TYPE P DECIMALS 3.
      CLEAR       OPTOT.
      REFRESH: IMARD, G_T_MSEG_LEAN.
      CLEAR:   IMARD, G_T_MSEG_LEAN.
    *- Select data from IMARD
      SELECT * FROM MARD INTO CORRESPONDING FIELDS OF TABLE IMARD
                                              WHERE WERKS = P_PLANT-LOW
                                              AND   MATNR = OPBAL-MATNR.
      IF SY-SUBRC = 0.
        READ TABLE IMARD INDEX 1.
        IF SY-SUBRC = 0.
          TOTAL = IMARD-LABST.
        ENDIF.
      ENDIF.
    *- Select data from MSEG and MKPF
      SELECT
                 MKPF~MBLNR
                 MKPF~MJAHR
                 MKPF~BLART
                 MKPF~BUDAT
                 MKPF~CPUDT
                 MSEG~MATNR
                 MSEG~WERKS
                 MSEG~LGORT
                 MSEG~CHARG
                 MSEG~SHKZG
                 MSEG~MENGE
               INTO CORRESPONDING FIELDS OF TABLE G_T_MSEG_LEAN
               FROM MKPF AS MKPF  JOIN MSEG AS MSEG
                        ON MKPFMANDT  =  MSEGMANDT  AND
                           MKPFMBLNR  =  MSEGMBLNR  AND
                           MKPFMJAHR  =  MSEGMJAHR
               WHERE MSEG~MATNR  =   OPBAL-MATNR
                 AND MSEG~WERKS  =   P_PLANT-LOW
                 AND MSEG~CHARG  =   OPBAL-BATCH
                 AND MKPF~BUDAT  GE  P_DATE-LOW.
      SORT  G_T_MSEG_LEAN    BY WERKS MATNR CHARG SHKZG DESCENDING.
      IF NOT G_T_MSEG_LEAN[] IS INITIAL.
        LOOP AT G_T_MSEG_LEAN.
          IF G_T_MSEG_LEAN-SHKZG = 'H'.
            TOTAL = TOTAL + G_T_MSEG_LEAN-MENGE.
          ELSE.
            TOTAL = TOTAL - G_T_MSEG_LEAN-MENGE.
          ENDIF.
        ENDLOOP.
    *- Assign Stock
        OPTOT = TOTAL.
      ENDIF.
    ENDFORM.                    " GET_OPENING_STOCK
    Regards,
    Raj

  • Cost of Stock Out

    Hi,
    Are there any standard reports in SAP by which one can evaluate cost of stock outs.If Not is there any workaround? Pls help.
    Regards
    Milind Nair

    Hi Milind
    YOu go in t code MB51 select the movement for which stock is done out e.g. 201 or 261.Enter your plant material or your criteria this will generate a report. Here you select  current display vairant or simply press CTRL+F8.Then click on position and search field for amount. Get this field on your left side section save it and come out there you can see the relative amount of the material too.
    Hope this would be great help for you
    Regards
    Vivek
    -- Reward for the effort

  • Calculation of consignment stock for a material ( ABAP/MM)

    HI,
    I need information to find out consignment stock as per requirement. I doubt the requirement is not complete enough but they dont agree. I am using following logic.Please provide me your inputs.( i was asked to follow standard program logic of 'RM07MLBD')
    1.I am retrieving material document no.s from MSEG with the movement types 631,632,633,634,701,702 and SOBKZ = 'W' for a particular reporting period for a material.
    2. I filter them by checking date BUDAT in MKPF.
    3. then i aggregate them taking SHKZG = 'S' or 'H' accordingly '+ ' or '-'.
    And finally i Aggregate them for customers belonging to same state (REGIO)
    but i am getting some negative values and incorrect entries.
    what i am not able to understand is whether my selection criterion is wrong or aggregation of materials is wrong or if i am missing any other selection criterion? Your inputs are highly appreciated.
    Thanks in Advance.
    Shrini

    Hi ,
           Follow sample program RM07MKBS OR MB54 which display consignment stock for  am material.
    Please reward if useful.

  • Delayed in print out of Material Document

    Hi Everyone,
    Can you help me with my problem, what are the reasons why the print out of material document is delayed. Can you help me find the ways where can I check, why this is happening.
    hope you can help me with this.
    Ato Corpuz

    Hi
    1. You can print material document using transaction MB90.
    You have to create service PO for lab testing.
    2. You can print PO using transaction ME9F.
    regards
    Srinivas

  • To find purchasing organisation for material

    Hi Experts,
    Sounds quite a trivial query but i really could not find the way out to link material with purchasing organisation.
    Please note that we do not want to use Puchasing Info record tables. This is so because requirement itself says automating the PIR creation process through ME11. and for that we need to filter out materials which have a specified Purchasing Organisation.
    Now you may ask a question as to how Purchasing org is maintained on the very first place. This has been created via provision in ISR webform for creating material.
    I hope i have made my query clear enough. Seeking your expert advise on the same.
    Thanks,
    Shreya

    Hi,
    I think  you can not find Purchase organization for a material as one maerial may come from multiple purchase organizations
    (However it depends on the Buisness process) but you can find purchase ogranization with material and plant combination.
    Regards
    Bikas

  • Adding stock to the material?

    I created a material, it is showing zero stock. How do I add stock to the material?
    Thanks,
    Manohar

    Hi Manohar,
    You can do an intial entry of goods as mentioned by Manish using movement type 561. You can also create a Purchase order(ME21N)  for the material and then perform goods receipt (MIGO) for that PO to recieve the goods. Once u recieve the material u can see the stock in MMBE
    Hope this helps.
    Reward if u find it useful
    regards
    Anand.C

  • Transfer material stock into another material

    hi
    I want to transfer the stock of one material into a new material,
    Is it possible? if yes then how? and is there any financial effect.
    thanks
    Pankaj Garg

    Hi Garg ,
    Transfer posting is done through MB1B T.Code which requires the necessary movement tyep
    Transferring the material stock into another Material uses the mvt type 309
    The quantity is posted from unrestricted-use stock of the issuing material into unrestricted-use stock in the receiving material
    Prerequisite: both materials have the same stockkeeping unit.
    Possible special stock indicators: E, O, Q, V, W 
    Hope this helps you out
    If found useful award accordingly
    Thanks & Regards
    Pavan

  • Stock of configurable material

    Hi,
    Is it possible to have stock of configurable material....?
    If yes how ,...?
    Regards
    SK

    Hi SK,
    You cant keep configurable material in stock.
    But you can create material varient of configurable material and can stock them.
    Go to SAP help , you will find lots of information about it.
    and come with a specific question if you need further help on that.
    also check below links ,
    Re: How to put configurable material in finished stock???
    Re: Variant configuration u2013 availability check for Configurable material
    Hope it helps you.
    Regards
    Ritesh

  • HOW TO FIND MAINTANANCE STATUS OF MATERIAL

    Hi
    I want to find the materials from the system whose BOM is not yet created & whose routing is also not yet created & the finish material to which KMAT material is not assigned. how can i find this as my user want to no this things for maintain the BOM,ROUTING,& KMAT TO THE MATERIAL.

    Hi!,
    1. For materials w/out BOM: Please download the list of all materials and pass that to the table mast in se16 alongwith plant. You will find a list of materials which are having BOM. Just download that list in excel. Now using V-Lookup function of excel, compare the two lists and find out the odd ones (i. e. w/out BOM materials).
    2. For materials w/out Routing: Same process can be repeated with table MAPL to get materials w/out routing.
    3. For materials w/out assigned with KMAT material: Go to se11. Put MARC table and click display. Click CtrlShiftF10.
    Go to settings>Field for selection in menu. Find field "STDPD" (Configurable Material) and check it. Click ok. You will find that field on the selection screen. Now maintain selection option for the field STDPD as "not equal to", keep width of output list and max. number of hits as blank, enter the plant in the the field "werks" and execute. You will find the list of materials for which configurable materials are not maintained.
    You can also use above said logic to develop a small report for your requirement with the help of an developer.
    Regards,
    Uday

Maybe you are looking for

  • Can I sync two iPhones to the same MacBook Pro?

    My wife needs to save all of her photos from her iPhone.  My iPhone has been the only one synced to the MacBook Pro. Can I sync her phone as well???

  • An MM functional question

    Hi all, I have a question like Report has to extract the details related to invoices and payments to Vendors for the list of Purchase Orders for goods and services procured which are selected in the input screen. The report should calculate the time

  • Classes in added jar on classpath not found

    Hi there, The javafx compiler seems to have trouble finding classes from a jar that was added to the lib directory of a javafx project. I experience this trouble when working with the Netbeans 6.5.1 IDE and javafx version 1.2. When trying to import a

  • 1 apple id, 2 people, and 3 devices

    My boyfriend and I each have an iphone, and he has an iPad as well. All 3 devices are using the same apple id. What is the best way to switch to 2 apple id's, without losing anything if possible, music, apps, etc. Thanks.

  • AIA Instal failing on Cluster AIAReadJMSNotificationProcess not found

    Hi, I am installing AIA on SOA 11.1.1.5 during installation I am running into below error. I am trying to install AIA on a cluster environment on HP-UX box. Need help in resolving the below I see the below in the log. Here is the command that I ran t