Stock report Bin location wise

Dear expert,
i want "stock report Bin location wise" in crystal report, anybody can provide sql query.
thanks

Hi,
Take a look at procurement and inventory  content provided by SAP.They should help you.
http://help.sap.com/saphelp_nw70/helpdata/EN/58/f6383fdb800804e10000000a114084/frameset.htm
Regards.

Similar Messages

  • STOCK STATEMENT STORAGE LOCATION WISE

    Dear All,
    Ca we able to take Stock Value on storage location wise for the particular date.
    Thank You,
    Warm Regards
    Mani.

    Hi,
    Stock statement storage location wise can be get, by using T-Code MB5B.
    But Quantity can be gettable on storage location basis. However value can be gettable on Plant level.
    First you have to take the plant stock on any particular date in which you can get Plant Qty and Plant Value. Please divide Plant value by Plant Qty, you can get Rate of each material. After that take storage location wise stock and multiply with Rate.
    Please note that in SAP prices are maintained on Plant level basis. Hence, it is a small workaround.
    Secondly you get Monthend Stock of any month at storage location level with value using T-code mc.9
    Hope this will help you.
    Please reward if useful.
    Ishu

  • Please any one provide crystal report for  Location wise sales report with GP

    Please any one provide crystal report for  Location wise sales report with GP.Please its urgent

    A report writer tool like Crystal reports is not available due to the cost involved in its licenses.Do you think that Oracle Reports is free then? It's $$$$.
    You can download and test it for free, but if you want to use it in production you have to buy a license.

  • Asset Report by Location wise with address & other details

    Hi,
    Can any one guide me any reports are available for Asset Report by location wise, address and
    other details.
    Thanks in advance.
    Regards,
    GB

    Hi Govind,
    I have solution for your requirement.
    Go to Tcode OAVI
    Create new entries.
    Difine a name for the sort version and enter description for the same.
    Choose fields for display in standard SAP asset reports.
    For your case enter table name ANLAV field names MENGE, STORT, and KOSTL. etc
    Here you can choose various other fields also.
    Then use this sort version while runnnig the SAP standard asset reports.
    By using this sort version you can able to to see the quantity, location and cost center fields available during any any asset balances report. So take a printout of the asset balances report S_ALR_87011964 - Asset Balances by Asset Class along with the above fields and go for physical verification
    Note: This development you can directly do it in your production system
    This will defenetely fix your requirement.
    Add Point*s, if problem resolved.
    Thanks,
    Srinu

  • How to get item stock from bin location with serial numbers?

    Dear experts
    I want to write query for getting item stock from bin location with serial numbers..
    Thank you
    Santosh Dhere.

    Hi Santosh,
    Try this:
    SELECT T0.[ItemCode], T5.[DistNumber], T5.[MnfSerial], T5.[LotNumber], T3.[OnHandQty]
      , T1.[BinCode], T1.[WhsCode]
    FROM  [dbo].[OIBQ] T0
      INNER  JOIN [dbo].[OBIN] T1  ON  T0.[BinAbs] = T1.[AbsEntry]  AND  T0.[OnHandQty] <> 0
      LEFT OUTER JOIN [dbo].[OBBQ] T2  ON  T0.[BinAbs] = T2.[BinAbs]  AND  T0.[ItemCode] = T2.[ItemCode]  AND  T2.[OnHandQty] <> 0
      LEFT OUTER  JOIN [dbo].[OSBQ] T3  ON  T0.[BinAbs] = T3.[BinAbs]  AND  T0.[ItemCode] = T3.[ItemCode]  AND  T3.[OnHandQty] <> 0
      LEFT OUTER  JOIN [dbo].[OBTN] T4  ON  T2.[SnBMDAbs] = T4.[AbsEntry]  AND  T2.[ItemCode] = T4.[ItemCode]
      LEFT OUTER  JOIN [dbo].[OSRN] T5  ON  T3.[SnBMDAbs] = T5.[AbsEntry]  AND  T3.[ItemCode] = T5.[ItemCode]
    WHERE T1.[AbsEntry] >= (0)  AND  (T3.[AbsEntry] IS NOT NULL)
    UNION ALL
    SELECT T0.[ItemCode], T5.[DistNumber], T5.[MnfSerial], T5.[LotNumber], T0.[OnHandQty]
      , T1.[BinCode], T1.[WhsCode]
    FROM  [dbo].[OIBQ] T0
      INNER  JOIN [dbo].[OBIN] T1  ON  T0.[BinAbs] = T1.[AbsEntry]  AND  T0.[OnHandQty] <> 0
      LEFT OUTER  JOIN [dbo].[OBBQ] T2  ON  T0.[BinAbs] = T2.[BinAbs]  AND  T0.[ItemCode] = T2.[ItemCode]  AND  T2.[OnHandQty] <> 0
      LEFT OUTER  JOIN [dbo].[OSBQ] T3  ON  T0.[BinAbs] = T3.[BinAbs]  AND  T0.[ItemCode] = T3.[ItemCode]  AND  T3.[OnHandQty] <> 0
      LEFT OUTER  JOIN [dbo].[OBTN] T4  ON  T2.[SnBMDAbs] = T4.[AbsEntry]  AND  T2.[ItemCode] = T4.[ItemCode]
      LEFT OUTER  JOIN [dbo].[OSRN] T5  ON  T3.[SnBMDAbs] = T5.[AbsEntry]  AND  T3.[ItemCode] = T5.[ItemCode]
    WHERE T1.[AbsEntry] >= (0)  AND  (T2.[AbsEntry] IS NULL   AND  T3.[AbsEntry] IS NULL)
    UNION ALL
    SELECT T0.[ItemCode], T0.[SRNDistNumber], T0.[SRNMnfSerial], T0.[SRNLotNumber], T0.[IBQOnhandQty] - T0.[OnHandQty]
      , T0.[BinCode], T0.[WhsCode]
    FROM  (
      SELECT T0.[BinAbs], T0.[ItemCode], MAX(T0.[OnHandQty]) AS 'IBQOnhandQty', SUM(T2.[OnHandQty]) AS 'OnHandQty', N'' AS 'BTNDistNumber', N'' AS 'BTNMnfSerial'
      , N'' AS 'BTNLotNumber', N'' AS 'SRNDistNumber', N'' AS 'SRNMnfSerial', N'' AS 'SRNLotNumber', MIN(T5.[AbsEntry]) AS 'AbsEntry', MIN(T1.[BinCode]) AS 'BinCode'
      , 10000044 AS 'SnbType', MIN(T5.[AbsEntry]) AS 'BTNAbsEntry', MIN(T5.[AbsEntry]) AS 'SRNAbsEntry', MIN(T1.[WhsCode]) AS 'WhsCode', MIN(T1.[SL1Code]) AS 'SL1Code'
      , MIN(T1.[SL2Code]) AS 'SL2Code', MIN(T1.[SL3Code]) AS 'SL3Code', MIN(T1.[SL4Code]) AS 'SL4Code', MIN(T1.[SL1Abs]) AS 'SL1Abs'
      , MIN(T1.[SL2Abs]) AS 'SL2Abs', MIN(T1.[SL3Abs]) AS 'SL3Abs', MIN(T1.[SL4Abs]) AS 'SL4Abs'
      FROM  [dbo].[OIBQ] T0
      INNER  JOIN [dbo].[OBIN] T1  ON  T0.[BinAbs] = T1.[AbsEntry]  AND  T0.[OnHandQty] <> 0
      LEFT OUTER  JOIN [dbo].[OBBQ] T2  ON  T0.[BinAbs] = T2.[BinAbs]  AND  T0.[ItemCode] = T2.[ItemCode]  AND  T2.[OnHandQty] <> 0
      LEFT OUTER  JOIN [dbo].[OSBQ] T3  ON  T0.[BinAbs] = T3.[BinAbs]  AND  T0.[ItemCode] = T3.[ItemCode]  AND  T3.[OnHandQty] <> 0
      LEFT OUTER  JOIN [dbo].[OBTN] T4  ON  T2.[SnBMDAbs] = T4.[AbsEntry]  AND  T2.[ItemCode] = T4.[ItemCode]
      LEFT OUTER  JOIN [dbo].[OSRN] T5  ON  T3.[SnBMDAbs] = T5.[AbsEntry]  AND  T3.[ItemCode] = T5.[ItemCode]
      WHERE T1.[AbsEntry] >= (0 )  AND  (T2.[AbsEntry] IS NOT NULL)
      GROUP BY T0.[BinAbs], T0.[ItemCode]
      UNION ALL
      SELECT T0.[BinAbs], T0.[ItemCode], MAX(T0.[OnHandQty]) AS 'IBQOnhandQty', SUM(T3.[OnHandQty]) AS 'OnHandQty', N'' AS 'BTNDistNumber', N'' AS 'BTNMnfSerial'
      , N'' AS 'BTNLotNumber', N'' AS 'SRNDistNumber', N'' AS 'SRNMnfSerial', N'' AS 'SRNLotNumber', MIN(T4.[AbsEntry]) AS 'AbsEntry', MIN(T1.[BinCode]) AS 'BinCode'
      , 10000045 AS 'SnbType', MIN(T4.[AbsEntry]) AS 'BTNAbsEntry', MIN(T4.[AbsEntry]) AS 'SRNAbsEntry', MIN(T1.[WhsCode]) AS 'WhsCode', MIN(T1.[SL1Code]) AS 'SL1Code'
      , MIN(T1.[SL2Code]) AS 'SL2Code', MIN(T1.[SL3Code]) AS 'SL3Code', MIN(T1.[SL4Code]) AS 'SL4Code', MIN(T1.[SL1Abs]) AS 'SL1Abs'
      , MIN(T1.[SL2Abs]) AS 'SL2Abs', MIN(T1.[SL3Abs]) AS 'SL3Abs', MIN(T1.[SL4Abs]) AS 'SL4Abs'
      FROM  [dbo].[OIBQ] T0
      INNER  JOIN [dbo].[OBIN] T1  ON  T0.[BinAbs] = T1.[AbsEntry]  AND  T0.[OnHandQty] <> 0
      LEFT OUTER  JOIN [dbo].[OBBQ] T2  ON  T0.[BinAbs] = T2.[BinAbs]  AND  T0.[ItemCode] = T2.[ItemCode]  AND  T2.[OnHandQty] <> 0
      LEFT OUTER  JOIN [dbo].[OSBQ] T3  ON  T0.[BinAbs] = T3.[BinAbs]  AND  T0.[ItemCode] = T3.[ItemCode]  AND  T3.[OnHandQty] <> 0
      LEFT OUTER  JOIN [dbo].[OBTN] T4  ON  T2.[SnBMDAbs] = T4.[AbsEntry]  AND  T2.[ItemCode] = T4.[ItemCode]
      LEFT OUTER  JOIN [dbo].[OSRN] T5  ON  T3.[SnBMDAbs] = T5.[AbsEntry]  AND  T3.[ItemCode] = T5.[ItemCode]
      WHERE T1.[AbsEntry] >= (0 )  AND  (T3.[AbsEntry] IS NOT NULL)
      GROUP BY T0.[BinAbs], T0.[ItemCode]
      ) T0
    WHERE T0.[IBQOnhandQty] > T0.[OnHandQty]
    Regards,
    JC.

  • Project stock valuation storage location wise

    Hi all,
        I am developing a report for storage location wise as well as WBS element wise project stock valuation. I got a suitable table for project stock as per my requirement i.e. MSPR. Is there any table or any function module updating the value of the project stock for each storage location and WBS element.
    Please help.

    You may look at Trx CNMM by giving project number and then select all wbs elements in the next screen. Then click on stock tab. You can see the wbs stock by storage location.
    You can check this program for getting the logic.
    Thanks,
    Manohar

  • Raw  material stock report with vendor wise

    Dear all ,
    Can any one tell me , How do I get stock report only on " VENDOR " wise .
    The purpose is , I've multiple souces for one Material , I need analyse the available inventory with vendor wise.
    Pl.s help
    Thanks in Advance
    Sekhar

    Hi,
    1. Once you receive the mateiral inside the plant the identity of vendor is lost.
    2. All the stock will get as Plant / Sloc Stock only.
    3. Incase if you need vendor wise stock then you need to activate batch management, with Classification view and one characteristics as vendor.
    4. And during each GR  you need to enter the vendor value
    Else you will not be able to seggregate the available stock vendor wise.
    reg
    dsk

  • Return stock to bin location

    Dear All
    I would like to know what transection code is that using reverse all materials from storage type 916 to particular bin because I want to cancel D/O but D/O has already posted GI. So I want to return all materials of this D/O to particular bin which I can not use LT0G due to D/O has been posted GI, then the system is not allow. How to do this and what T-Code is to use in this case?
    Please help.
    Thank you

    Hi,
    As the delivery is PGI'd it wont allow to use LT0G. To resolve this you need to reverse the goods movement created during delivery post goods issue. This can be done thru' trasaction VL09. After successfuly done you can reverse the WM postings thru' LT0G.
    Best regards,
    Sudhir

  • Reports:- Stock,Priod Wise Report, Stock value, Storage Location, WBS Repor

    Dear All,
    Needed some of the Reports in MM Material Mangment
    1. Stock Report  Value Wise
    2. Stock Report  Period Wise
    3. Stock Report Storage Location wise
    4. Stock Report  WBS wise
    5 . Stock Value
    Can I get all my requirement in One Report; or Individually also is fine. Please Do

    Check MC.9
    It will be helpful. you an drill down the report as per your need.
    Regards,
    S Anand

  • Valuation wise stock report

    Hi Friends,
    Is there any report where we can see stock report valuation type wise.
    E.g. i created two valuation types Domestic and Import. Also i created two storage location separately for both valuation type. I am able to see report based on storage location but not on basis of valuation type.
    Seeking your guidance how can we withdraw report based on valuation type
    Regards
    Vivek

    Hi,
    Use report MB5L
    Here in selection screen, enter valuation Type and execute the report.
    In output screen,
    Double click on the GL Account, it will show the report having current details of material with stock qty, Base UoM, Stock Value and Valuation Price with Price Control and valuation type.
    Do layout setting as per requirement.

  • Date Wise and Storage Location Wise Stock Qty & Value Report......

    Hi Experts,
    We want a report Date Wise(As on 31.03.2008) and Storage Location Wise Quantity & Value Report for only Finish Materials. Is there any report ?
    From Mb5b we canot get storage location wise report as we get only plant level qty and value.
    Pl. guide us.
    Regards,
    Yusuf

    Hi Yusuf,
        Try the Tcode: MC.9 there enter the site and article and executeYou will get details of the article
    stock, value. if you double click the article you will get the details of storage location.
    Hope it will be help for you
    Regards
    GK

  • Opening and closing Stock report at Storage location level- date wise

    Dear all
    Is there any standard report to view opening and closing stock at storage location level? ( we have MB5B which resets the entry screen if we enter SLOC details).
    Thanks
    Sam

    Do  I have the option of  selecting Storage Location wise opening and closing stock on a particular date or period, that is what I have requested? Is it possible, evenafter selecting storageloc/batch stock and entering all the SLOCs in the selection creen, the report output does not contain any SLOC, and using ctrl+F8 or display variant does not have SLOC as a field also.
    pls gudie
    sam

  • Storage location wise opening, closing stock...date wise...report

    Hi all Experts,
    I am at client site and hav to provide a report containing opening, and closing stock (and issue qty if possible) storage location wise and date option wise.pls help
    regards
    vikas chhabra

    Hi,
    Use MB51 for date wise report
    OR
    Use MCL1, MCL5, MCL9, MCLD (If Warehouse Management you are using)
    OR
    You have to develop an own ABAP report.
    Regards,
    Biju K

  • Report for Storage location wise Stock with value..?

    Hi guru's
    Can anybody explain me what is T.code i want to use to get a report for STORAGE LOCATION STOCK  with VALUE..?
    Urgent reply me  ..
    Thanks
    sap-mm

    Sorry Mr chetan,
    I want to see only the stock available in my company with Value and storage location wise..
    Please try to get report for this
    Thanks
    sap-mm

  • Storage Location wise stock report

    Can any one let me learn, How to get storage location wise & selected date wise stock report in standard SAP

    HI,
    Then you use T.code: MB51, where you will find the Date Range besides to Storage Location.
    Regards
    VG

Maybe you are looking for

  • Disable email notification of changes of events in iCal?

    I have a shared calendar that some of my colleagues subscribe to on iCal.  Whenever I make a time change to an event or add a new event on my shared iCal, one of my colleagues gets an email notification about it (sometimes he's getting 10 emails a da

  • Emdedding Flash in Crystal Report 2008 - does not upload to XI R2 Server

    Hello: There was an error while retrieving data from the server: Failed to read data from report file C:\WINDOWS\TEMP\SOD Dashboard_Xcelcius.rpt. Reason: Crystal Reports: Print Engine Error Flash is created from Xcelcius 2008. IIS has Local Account p

  • Is it possible to run 5.5 on windows 8.1??

    Is it possible to run Photoshop 5.5 on Windows 8.1? I have a CD which I tried to run but when I click on install nothing is happening. I have CS6 trial already running on the laptop, so my question is, is it because I need to uninstall CS6 (although

  • Graphite iBook, OS 10.3.9, can I video at all?

    And if no, why the heck not? I hooked up my iSight and it opened iChat, but then said video not available. I also can't find a built-in microphone to do talk. And last question, why can't I send video from my iMac, which apparently has it, to the iBo

  • Video file size

    I have recently bought an ipod touch, having downgraded (in memory size) from an 80 Gb 5th gen ipod video. I am having trouble getting my videos to be of a reasonable size, and most importantly of a reasonable quality. A friend of mine gave me a copy