Any Standard Aging report for MM

Hello All,
I am looking a standard aging report for Materials on my storage location.
We are following batch.
Please help
Regards
Lal

Hi ,
I hope for your new requirement this might help you .
If you want to perform an analysis based on the key figure dead stock, proceed as follows:
From the Inventory Controlling menu, select Environment -> Document evaluations-> Dead stock.
1. The selection screen appears.
2. Specify the desired analysis criterion and selection parameters.
You can carry out the analysis for all plants, that is, for each material, data from all plants are grouped together or only for certain plants, that is, the analysis is created for every designated plant. Any period can be selected for the analysis. The system suggests 90 days as the period to analyze, the calculation starting from the current date.
The following functions can be used to process the material list.
Detailed Display
By using the function Detailed display, you can call up in a table or graph form detailed data for a material including the respective material document. You can analyze all material documents that are related to the evaluated stock of a material.
If you want to view detailed information for a certain material, proceed as follows:
Position the cursor on the desired material in the results list and select Edit ->Detailed display.
A dialog box appears in which you can choose either a graph or table display.
If you select the graphic, you can display the latest information on:
•     Cumulative receipts/issues
•     Warehouse issues
•     Warehouse receipts
•     Stock level
If you select the table, you can display the following information:
•     Stock movements
•     Cumulative stock movements
•     Current stock level
From the stock movement table you can drill down as far as the material document level to see detailed information. To display stock movements on a particular day, position the cursor on the relevant line and select the Choose function. A popup window appears which displays all the movements on the selected day. The individual movements for a selected date are displayed in a dialog box.
To display the document for a particular movement, position the cursor on the relevant line and select the Choose function. A popup window appears which displays the document.
Similarly you can try for the slow moving also .please let me know wether you were able to find what you were looking for .
source: SAP
cheers
KP

Similar Messages

  • Standard Aging report for FI

    Hi,
      Can anyone give me the Standard Aging report or tcodes for FI..Its very urgent..
    Thanks

    Hi,
    Look at the Below link which will have a Custome Report
    http://sap.ittoolbox.com/code/archives.asp?d=2424&a=s&i=10

  • Any Standard BC report for MB5B tcode report??

    Guys,
    Let me knw if you have any report which is almost near to the report in r/3 which has a TCODE = MB5B. report name is  Stock on Posting date.

    hi venkat,
      Check with these queries should fullfill ur requirement..
    0IC_C03_Q0013 Stock Overview
    0IC_C03_Q0015 Stock Overview
    hope this helps,
    partha

  • Is there any Standard SAP Report?for displaying Billing block/Status-Order

    Hi,
    Am a ABAP Developer. I heard that there is SAP Query/ABAP Query/Standard SAP report for the below functionality/requirement. SO, pls. let me know if there is any SAP Query/ABAP Query/Standard SAP report?
    "This report is suppose to display Credit and Debit memo documents which are blocked and yet has a status of APRV; the other display is for Return Documents which are blocked and yet has a status RCVD."
    thanq

    Hi,
    Use t-code
    V23 - Blocked sales document for billing
    VA14L - Sales document blocked for delivery
    VFX3 - For blocked billing documents.
    Kapil
    Edited by: Kapildev Farakte on Jan 8, 2010 4:15 AM

  • Is there any standard REconciliation report in SAP for Bank

    Hi All,
    Is there any standard REconciliation report in SAP for Bank....?
    Thanks in advance
    Regards
    Amit Mistry

    Hi Ashok ,
    This report RFEBKA00 imports account statements into the SAP System and
    then creates batch input sessions for updating in G/L accounting and *
    in the subsidiary ledger. It does not print any report - as far as I can see.
    Cheers
    Kartik

  • Can using query create aging report for GL Account

    Hi all expert,
    I have a challenge scenario which customer request print out aging report for the following GL Account.
    This is not a business partner account. However, customer want display like aging report.
    30 days aging report for the following GL accounts by projects:-
         i)     WIP (Work In Progress) account
         ii)     Accrued Revenue account
         iii)     Accrued Cost account
    Examples:
                            Current Balance       30 day   60 day  90 day   120 day
    Account  WIP         10000               2000        3000      5000     0
    Any idea or example given? If yes, can you provide a query here?
    Regards,
    Eric Tan

    Hi Eric
    In standard SAP Business One this is difficult as the reports are 2 dimensional. To achieve this you will need to write multiple select statements into a temporary table and then select the final result from the temp table. Here is a sample for you to test:
    USE [*DATABASE_NAME*]
    GO
    /****** Object:  StoredProcedure [dbo].[REPORT_NAME]    Script Date: 04/24/2009 13:17:21 ******/
    SET ANSI_NULLS ON
    GO
    SET QUOTED_IDENTIFIER ON
    GO
    CREATE proc [dbo].[*REPORT_NAME*]
    as
    set nocount on
    begin
    DECLARE @Day_no varchar(2)
    DECLARE @Month_no varchar(2)
    DECLARE @Year_no varchar(4)
    DECLARE @Start_Date Datetime
    SET @Day_no = DAY(GetDate())
    SET @Month_no = MONTH(GetDate())
    SET @Year_no = YEAR(GetDate())
    SET @Start_Date = @Year_No + '/' + @Month_no + '/' + @Day_no --  + '/' + @Year_No
    IF OBJECT_ID(N'tempdb..#CRDAGEING', N'U') IS NOT NULL
    drop table #CRDAGEING
    SELECT T0.[CardCode] AS [CardCode], T0.[CardName] AS [CardName], -T0.[Balance] AS [Balance], CAST(0 AS MONEY) AS [Current], CAST(0 AS MONEY) AS [1Week], CAST(0 AS MONEY) AS [2Weeks], CAST(0 AS MONEY) AS [3Weeks], CAST(0 AS MONEY) AS [4Weeks], CAST(0 AS MONEY) AS [5Weeks], CAST(0 AS MONEY) AS [6Weeks], CAST(0 AS MONEY) AS [Over6Weeks], CAST(0 AS MONEY) AS [Avg3Months], CAST (0 AS MONEY) AS [Onhand] INTO #CRDAGEING FROM OCRD T0 WHERE T0.[CardType] = 'S' -- and T0.[CardCode] <> '' --and T0.[DocDate] >= @FromDate AND T0.[DocDate] <= @ToDate
    INSERT dbo.#CRDAGEING SELECT T1.[ShortName], NULL, 0, -SUM(T1.[BalDueDeb] - T1.[BalDueCred]), 0, 0, 0, 0, 0, 0, 0, 0, 0 FROM JDT1 T1, OCRD T2 WHERE T2.[CardType] = 'S' and T2.[CardCode] = T1.[ShortName] and T1.[DueDate] <= @Start_Date GROUP BY T1.[ShortName]
    INSERT dbo.#CRDAGEING SELECT T1.[ShortName], NULL, 0, 0, -SUM(T1.[BalDueDeb] - T1.[BalDueCred]), 0, 0, 0, 0, 0, 0, 0, 0 FROM JDT1 T1, OCRD T2 WHERE T2.[CardType] = 'S' and T2.[CardCode] = T1.[ShortName] and T1.[DueDate] >= DATEADD(DAY,1,@Start_Date) and T1.[DueDate] <= DATEADD(DAY,8,@Start_Date) GROUP BY T1.[ShortName]
    INSERT dbo.#CRDAGEING SELECT T1.[ShortName], NULL, 0, 0, 0, -SUM(T1.[BalDueDeb] - T1.[BalDueCred]), 0, 0, 0, 0, 0, 0, 0 FROM JDT1 T1, OCRD T2 WHERE T2.[CardType] = 'S' and T2.[CardCode] = T1.[ShortName] and T1.[DueDate] > DATEADD(DAY,8,@Start_Date) and T1.[DueDate] <= DATEADD(DAY,15,@Start_Date) GROUP BY T1.[ShortName]
    INSERT dbo.#CRDAGEING SELECT T1.[ShortName], NULL, 0, 0, 0, 0, -SUM(T1.[BalDueDeb] - T1.[BalDueCred]), 0, 0, 0, 0, 0, 0 FROM JDT1 T1, OCRD T2 WHERE T2.[CardType] = 'S' and T2.[CardCode] = T1.[ShortName] and T1.[DueDate] > DATEADD(DAY,15,@Start_Date) and T1.[DueDate] <= DATEADD(DAY,22,@Start_Date) GROUP BY T1.[ShortName]
    INSERT dbo.#CRDAGEING SELECT T1.[ShortName], NULL, 0, 0, 0, 0, 0, -SUM(T1.[BalDueDeb] - T1.[BalDueCred]), 0, 0, 0, 0, 0 FROM JDT1 T1, OCRD T2 WHERE T2.[CardType] = 'S' and T2.[CardCode] = T1.[ShortName] and T1.[DueDate] > DATEADD(DAY,22,@Start_Date) and T1.[DueDate] <= DATEADD(DAY,29,@Start_Date) GROUP BY T1.[ShortName]
    INSERT dbo.#CRDAGEING SELECT T1.[ShortName], NULL, 0, 0, 0, 0, 0, 0, -SUM(T1.[BalDueDeb] - T1.[BalDueCred]), 0, 0, 0, 0 FROM JDT1 T1, OCRD T2 WHERE T2.[CardType] = 'S' and T2.[CardCode] = T1.[ShortName] and T1.[DueDate] > DATEADD(DAY,29,@Start_Date) and T1.[DueDate] <= DATEADD(DAY,36,@Start_Date) GROUP BY T1.[ShortName]
    INSERT dbo.#CRDAGEING SELECT T1.[ShortName], NULL, 0, 0, 0, 0, 0, 0, 0, -SUM(T1.[BalDueDeb] - T1.[BalDueCred]), 0, 0, 0 FROM JDT1 T1, OCRD T2 WHERE T2.[CardType] = 'S' and T2.[CardCode] = T1.[ShortName] and T1.[DueDate] > DATEADD(DAY,36,@Start_Date) and T1.[DueDate] <= DATEADD(DAY,43,@Start_Date) GROUP BY T1.[ShortName]
    INSERT dbo.#CRDAGEING SELECT T1.[ShortName], NULL, 0, 0, 0, 0, 0, 0, 0, 0, -SUM(T1.[BalDueDeb] - T1.[BalDueCred]), 0, 0 FROM JDT1 T1, OCRD T2 WHERE T2.[CardType] = 'S' and T2.[CardCode] = T1.[ShortName] and T1.[DueDate] > DATEADD(DAY,43,@Start_Date)  GROUP BY T1.[ShortName]
    SELECT SR.[CardCode], MAX(SR.[CardName]), SUM(SR.[Balance]) AS [BalanceOwing], SUM(SR.[Current]) AS [Current], SUM(SR.[1Week]) AS [1Week], SUM(SR.[2Weeks]) AS [2Weeks], SUM(SR.[3Weeks]) AS [3Weeks], SUM(SR.[4Weeks]) AS [4Weeks], SUM(SR.[5Weeks]) AS [5Weeks], SUM(SR.[6Weeks]) AS [6Weeks], SUM(SR.[Over6Weeks]) AS [Over6Weeks] FROM dbo.#CRDAGEING SR GROUP BY SR.[CardCode] ORDER BY SR.[CardCode]
    END
    Go to Microsoft SQL Studio manager and select your company database. Then expand the list and select Programmability > Stored Procedures. Right click on Stored Procedures and select New Stored Procedure. Copy the above code over the code in the edit window and change the database name as well as report name. Then select Execute to create the stored procedure. If you make changes, remember to change the word CREATE to ALTER (with other words CREATE for the first execute, and ALTER thereafter). Then in SAP Business One create a new query and leave everything blank. Click on execute and select the pencil to change to edit mode. Remove the words SELECT and type in EXEC REPORT_NAME (change the REPORT_NAME to the name you used in SQL). Then execute again and the results will be displayed in SAP Business One.
    Let me know if you get stuck. Remember the above is an example and will need to be changed to use your tables and fields as required. The basic idea is to move across by one column with each select statement. So for example the first select statement does the CURRENT column, the second one the 30DAYS column, and so on.
    Kind regards
    Peter Juby

  • Inventory ageing report for batches

    Hi Experts,
    I am looking for a ageing report for batches. MC46 and MC50 is not displaying the batches which is my main requirement. I learnt that its not available in standard SAP. I am planning to develop a Zreport which is a copy/reference of MC46 and MC50.
    If you ever come across this situation before, which approach you followed? I appreciate if you throw some thoughts on builiding a query or Zreport or any logics.
    Regards,
    R.S

    Hi Shiva,
    Thanks for the information. We are not using SLED for the batches and BMBC is just a **** pit where you can use it as work list when you try to change mass batches. I dont know how BMBC helps in fetching a report for ageing.
    Regards,
    R.S

  • AP Invoice Aging Report for past date

    hi guys,
    I am running R12.
    my requirement is to run AP invoice aging report for past dates (same like AP Trial Balance Report), but the seeded invoice aging report has no option to do so.
    would appreciate some help
    thanks in advance
    Ravi

    Hi Senthil,
    I am running R12.
    my requirement is to run AP invoice aging report for past dates (same like AP Trial Balance Report
    if u have any solution to this , please suggest me how to resolve this requierement.
    thanks in advance
    Ravi
    mail:[email protected]

  • Inventory aging report for vehicle parts

    Hello Guys,
    I need to prepare an inventory aging report for Vehicle parts.
    We already have new vehice ad used vehicle's inventory aging reports created by somebody else.
    I am very new to sap-bi.
    I am very confused about designing same cz i checked with the fields ad they are a ittle different from the fields which are there in above two reports.
    I have downloaded 0ic_c03 from business content but do not know how to prepare its datasource......
    Please tell me how should i go about it.
    Thanks & Regards,
    Dolly

    Hi Dolly,
    What is your question? It's almost impossible to provide an answer without any information.
    Perhaps you should try to ask in your company for some help.
    Cheers

  • Aging Report for A/p

    I mean is there anyway to user decode for showing sum(amount) for different period of dates
    is there any idea to make faster ageing report for accounts payable module.
    Thanks AHON
    Edited by: [email protected] on Nov 22, 2009 7:09 AM

    plz write more clear requirements...... ur table structures and report output ....
    i have few aging reports and all working without any problem.....it depends on ur table structure also.

  • Is there any standard SAP report to see all active,inactive, retiree employ

    SAP experts
    Is there any standard SAP report where I can look all the employees whose employment specific status is 0 (terminated), 1(employee with the company but inactive), 2(retiree), 3(active).
    please help
    regards
    renu

    Hi Experts,
    I had a similar requirement and I used S_PH9_46000223 Report for my need as suggested.
    I observed one thing.
    "If I give Selection Date as "Today" then the entry date column is 00.00.0000"
    Can anyone clarify my doubt? it is happening in same way for other similar standard reports as well.
    Doubts
    1) Why this is happening
    2) Is it happening as it should? Whats the reason
    3) is there any functional/technical way to correct or modify
    Regards

  • Is there any standard Atrition Report Available

    Hi Experts,
    Is there any standard Atrition Report Available.
    Regards,
    IFF

    Hi,
    Std report has EE entry and left and Staff changes. If these helps for ur req use it else create a new report for attrition. Mostly std report will not covers the orgn attrition report..
    http://help.sap.com/saphelp_47x200/helpdata/en/48/35d4ad4abf11d18a0f0000e816ae6e/frameset.htm

  • Are there any standard SAP reports to filter all BP(in SAP ISU)?

    Hi All,
    1.Do we have any standard SAP reports to filter all BP(in SAP IU)?I am aware that we can view all the Business Partners in Change/Display mode in the selection screen, but do we have any standard SAP reports to view all the created BP?
    2.Do we have any standard report to filter BP(in SAP ISU)? based on certain fields like Authorisation Group?
    Look forward to any responses.
    Regards
    Amitav Otta

    Hi Amitav
    Every industry has its own set of information for each kind of industry.There are certain data which is common to all Business Partner through out all industry. Most of that you can find in BUT000 and using SE16 you can generate a report directly through the Table access. But if you are looking for Standard Report than SAP has not provided standard Report for All Industry. If you look to the SAP Menu->Information System->General Report Selection, you will find that industries like Real State Management have reports for their Business Partner. To my knowledge there is no standard consolidated report to list down business partner based on filter for all industry.
    Regards
    Mithlesh

  • Standard BW reports for SAP HCM Performance Management

    Hi all,
    I'm preparing a blueprint workshop for SAP HCM Performance Management and the customer wants to see the reporting in BW. Does anyone have experience with standard BW reports for this HCM solution and could someone please provide me with screenshots of these reports?
    Thanks!
    Marijn van Amelsfort
    SAP NL

    Hi,
    Did you get the solution?
    I also have the same requirement but did not find any solution.I have posted a similar question on SDN.
    Re: Require links for ESS , MSS and TMS
    please reply if you have answer.
    Thanks,
    Ravi

  • Standard hr reports for health plans

    Hi Experts,
      Can any one please tell me the standard hr reports for health plans for infotype 0167.
    Thank you.
    Regards,
    Admir.
    Points will be rewarded.

    Follow this path from the main SAP menu:
    Human resources -> Information System -> Reports -> Personnel management -> Benefits.  Then you can select from reports under the topics of Participation, Cost and contributions, or Statistics.  I hope this helps.
    - April King

Maybe you are looking for

  • App-v 5.0 SP3 questions

    Hi, We have App-v 5.0 SP2 on terminal servers (with some APp-v 5.0 packages) and are about to do a rollout of App-v. I have my App-v 5.0 SP2 hotfix 3 package ready but there is a SP3 now. My questions: -major one: what's my biggest benefit for upgrad

  • Syncing video output to the specified lag time (ms) of your monitor

    Hey guys and lassies, I've got a question that I've been thinking about a lot, and I've looked around the web without finding a good answer, so hoping to get edumacated in the subject here! I do a lot of video work in Premiere Pro CS6 where I want to

  • Why can't I open captivate projects on different pcs?

    I I have created a project using Adobe Captivate 4 trial version on my home PC (Wondows XP) and published it as html, zip and pdf - all works fine on the home pc but won't open on my work pc,  which is also using Adobe Capt. 4, (full licenced version

  • I want to change my Photoshop CC (Windows) from Portuguese to English

    I'have acquired recently Photoshop CC (Windows). As I'm from Brazill, the program came in Portuguese but I want it in English. What can I do ?

  • Please select a valid InfoObject appears while refreshing a query

    One of the users is trying to refresh a query (showing a hierrachy). While refreshing the user gets the following message: "Please select a valid InfoObject". I just talked to the user and she is saying it appears from time to time. Does any of you h