Rolling 12 month report using FR

Hi All,
Could you all advice me on how I can create a 12 month rolling report using Financial Reports? Basically what we need is a report where we would be able to see across years, so for example if I were in March and running this report, I'd be able to see my forecasts from March this year up to Feb of the next year.
Thanks for all answers!

Hi,
I have 25 months listed - 12 for current year with months hardcoded and year as a sub variable, 12 for prior year with months hardcoded and year as a sub variable, and one for current month and current year and current month, both as sub variables. I have a custom formula in the column Y , cell [Y,2] which has curent month/current year:
IfThen([Y]=[A],1,IfThen([Y]=,2,IfThen([Y]=[C],3,IfThen([Y]=[D],4,IfThen([Y]=[E],5,IfThen([Y]=[F],6,IfThen([Y]=[G],7,IfThen([Y]=[H],8,IfThen([Y]=,9,IfThen([Y]=[J],10,IfThen([Y]=[K],11,12)))))))))))
Then I use conditional suppression by column. Our year starts in October, so in the column "A" I have Oct current year, in "B" - Nov current year etc. Suppression for Dec current year looks like that:
Suppress column if value in cell Y,2 < Value 3
Suppression for Dec prior year looks like that:
Suppress column if value in cell Y,2 >= Value 3
This approach has huge assumption that two months will not have exactly the same numbers. It's pretty safe, but not perfect. I came here looking for a better solution.

Similar Messages

  • 12 month rolling forecast report using FR

    Hi All,
    Could you all advice me on how I can create a 12 month rolling report using Financial Reports? Basically what we need is a report where we would be able to see across years, so for example if I were in March and running this report, I'd be able to see my forecasts from March this year up to Feb of the next year.
    Thanks for all answers!

    try to read this link. i hope this one will help you:
    http://www.oracle.com/technology/obe/hyp_fr/fr_rolling_forecast/obe_rollingforecast.htm
    Cheers,
    LYN

  • 5 months rolling monthly report by fetching data from cache & Database

    Scenario: One monthly report would be created each month end which contains one summary tab and other details tabs. Summary tabs will contain the data of all the months summary data (current month and previous months)
    Problem:
    Current month data have to come directly from database and previous months data come form cache and whole thing will be cached this time so that when we run next month report the data till this month will also come from cache.
    Any one please help me ASAP.

    What's wrong with F_GET_COMPANY_CODE ?  Below is similar code - try running this and seeing what you get:
    report zlocal_jc_t001w.
    tables:
      t001k,     "Valuation area
      t001w.     "Plants/Branches
    parameters:
      p_bukrs          like t001k-bukrs default '1000'.
    select-options:
      s_werks          for t001w-werks.
    start-of-selection.
      perform get_data.
    *&      Form  get_data
    form get_data.
      data:
        begin of gt_t001k occurs 10,
          bukrs             like t001k-bukrs,
          bwkey             like t001k-bwkey,
          werks             like t001w-werks,
        end of gt_t001k.
      select
        t001k~bukrs
        t001k~bwkey
        t001w~werks
        into corresponding fields of table gt_t001k
        from t001k as t001k
        inner join t001w as t001w on t001w~bwkey = t001k~bwkey
        where t001k~bukrs = p_bukrs
        and   t001w~werks in s_werks.
      loop at gt_t001k.
        write: /
          gt_t001k-bukrs,
          gt_t001k-bwkey,
          gt_t001k-werks.
      endloop.
    endform.                    "get_data
    As for links to locally defined database tables, that will depend on what the keys defined in SE11 are e.g. there will be a primary key plus relationships to other tables (for example "WERKS LIKE YSDA_EXP_PRTLOG-YY_PLANT" indicates YY_PLANT relates to T001W).
    Jonathan

  • Rolling month for webi report using Univ based on BEX Query

    Dear Experts,
    I'm new to OLAP universes.
    We have a requirements of having last 12 months rolling  for given measure(Key figure) in webi report using Univ based on Bex Query.
    We require a calmonth (time dimension) object  (restricted for last 12 months) where user can drag and drop on column section of cross-tab table.  User should drag more than one Key figure ( for ex. sales rev and & qty sold) for each month
    Could you please provide me the solution to do this?
    Thanks
    Akshara

    Hi Henry,
    Thank  you for your response.
    BEx query has not been created yet. we need to create accordingly and require your help in creating the same.
    Regarding reporting requirements,  User wants to have adhoc reporting  with rolling months ( 12 months or 6 months) functionality. Users want to link any KF to this rolling months dimension.
    If we can't have this, what is the alternative that we can propose to user.
    Thanks
    Akshara.

  • Rolling 18months report based on the month prompt.

    Hi All,
    In one of the requirements in OBIEE, I have to create a report of rolling 18months. Now the challenge is that I will not be taking sysdate in here to calculate the rolling 18 months. I need to take the value of a month prompt on dashboard for calculation and fetch the 18 months rolling data in the report.
    E.g: If the user selects Dec-2009 in the month prompt on dashboard, I need to fetch data from July-2008(which is 18 months from Dec-2009) to Dec-2009.
    I will be passing the value of the month prompt in a presentation variable in the report, but can I calculate the 18 months prior month on the fly to put in the filter to fetch data? If yes, then how?
    I have also created a calculated logical column in the rpd that calculates 18 month earlier date for each date. Now the question arises, how to use filter on this column so that it selects only the month which will be 18 months prior to the selected month prompt on the dashboard so that the data gets fetched for the report?
    Thanks in advance,
    Sumita

    Hi,
    Please check out the following blog :
    http://shivabizint.wordpress.com/2008/09/19/rolling-months-data-for-year-month-prompt-in-obiee/
    Another way I have done it is follows,
    On my time dimension, which is at day level, for each given row (day) I derived the rolling period start date and the rolling period end date (which was always previous friday for a given day).
    I created a simple report with the following :
    Day, Rolling 6mth Start Day, Rolling 12mth Start Day, Rolling 18thmth start day, Rolling End Date.
    With day 'is prompted'
    In the dashboard reports, you use complex filters to say the day range you are interested in is between 'Rolling X Start date' (6, 12 or 18mth) and Rolling Period End date on the filter query created in the step above.
    When the dashboard prompt Go is selected, OBIEE runs the filter query to determine the start and end ranges and these are passed to the dashboard requests to achieve rolling period ranges from a Date prompt. - Im pretty sure you could use a similar method but using a month selector prompt, rather than my day prompt - The theory is the same.
    Good luck !
    Alastair

  • Rolling month at repot level

    Is it possible to adding rolling 12 month at the report level? Does a formula need to be added or is there is an example I can see. I saw an example where the rolling months can be entered by the user but in this case th the # of monts need to be 12.
    Thank you

    suser,
    In the report add the below filter condition
    u can replace 6 with 12 incase of 12 months
    if u want to use max date available in database instead of current_Date ,create a rep variable which ll give u max(report_Date) use that in formula
    timestampdiff(slq...... , -12, valueof(rep_Var) and valueof(rep_var)
    http://img4.imageshack.us/img4/8607/filtersh.jpg

  • Query on generating report using XMLP based on a search spec

    Hi,
    We are using XMLP reporting tool to generate reports for our application. Our requirement is to generate reports based on a search spec. Should I send this search spec as a input parameter to the FO processor? In other words, what is the exact procedure to generate reports based on a search spec? This search spec is provided at runtime.
    Thanks,
    Sudha.

    Hi Henry,
    Thank  you for your response.
    BEx query has not been created yet. we need to create accordingly and require your help in creating the same.
    Regarding reporting requirements,  User wants to have adhoc reporting  with rolling months ( 12 months or 6 months) functionality. Users want to link any KF to this rolling months dimension.
    If we can't have this, what is the alternative that we can propose to user.
    Thanks
    Akshara.

  • Rolling months in HFR ---- Really Urgent

    Hi All,
    We are using HRF to generate Reports connecting to and Essbase Database 11.1.2 Versions,
    in HFR we need 12 rolling months as per user request,
    User will select one Period and he need previous 11 months information...
    I tried to Period -1 to Period -11 function period is changing fine but problem is with Year Dim.. how Year will change
    Here user may select DEC of current Year and he need information of previous 11 months which falls in previous year...
    How the Year will change this is Big Challenge we are facing ......
    It would be grate help..... we have to present to client by today EOD........
    Regards
    Vijay
    Edited by: SVK on Sep 6, 2010 2:02 PM

    one way to do this is to use point of view with the range function, using conditional suppression:
    so that you have:
    - prior year with month (from POV to Dec) hiding POV
    - current year with month (from Jan to POV)
    (assuming you run a Jan to Dec year in your month outline/financial calendar)

  • Dynamically rolling months forward in Analyzer with HFM data source

    I'm building a dashboard in Analyzer 7.0. I want the reports to dynamically update each month so a user does not have to go in and change the month on each report. Normally I would use a sub variable (i.e. cur_month) however, the datasource is not Essbase, it's HFM.Anyone else using HFM as a data source and found a feesible way to roll months forward in Analyzer after the close? I looked at Personal variables, but that still leaves me with the same problem of someone having to go in and update each users personal variables.Suggestions are appreciated as well.Thanks,Gary CrisciSenior ConsultantPinnacle Group, [email protected]

    I came up with a working solution. Analyzer allows you to retreive member lists from HFM. I created a member list called 'Current Month' and assigned a single member to it. I then pull the report using the member list and get the current month view. Now the admin only has to update the meber list once a month when the close is finished and all reports will "Dynamically" roll forward.Regards,

  • Report using SOP

    dear
    can i configre a report using SOP and not run mrp only for running report and these are the fields which i require
    These are the parameters required in that report
    1. sales forecast(this is done annually with the monthly break up)
    2. sales forecast value
    3. actual sales
    4 . diff between actual sales and forecasted
    5.opening stock
    6.purchanse ordering quantity per month
    7.goods received
    8.closing stock
    9.stock index
    sales forecast and purchanse ordering quantity are the forecast values which will be feed at the starting of the year
    and stock index there is formula to calculate so is for that is there any user exit to calculate that is there any std report for this or using sop 2 get this report
    can u pls help me in solving this issue
    thanks in advance

    1.Hi when you create a infostrucutre as mentioned above you will have 2 tables generated by the infostructure
    Ex: you create a Infostructure called s999
    2. In such case 2 set of tables will be generated s999 and s999e
    3. You will have the values generated through the plannigtype in the tabels999
    3.Using the s999 table you will be able to generate the report that are required.
    4.When you have created your own info structure you can also use the standard Tcode MC9C - Reporting  to get few reports
    Kindly let us know if you need more details
    Reg
    Dsk

  • Report using Tabular Model and Measures based on Distinct Counts

    Hello,
    I am creating a report that should present something like this:
    YEAR-1 | MONTH-1 | MONTH-2 | MONTH-3... | YEAR | MONTH-1 | MONTH-2 | MONTH-3...
    My problem is that when designing the dataset to support this layout I drag the Year, Month and Distinct count Measure, but on the report when I want the value for the YEAR level I don't have it and I cannot sum the months value...
    What is the best aproach to solve this? Do I really have to go to advanced mode and customize my MDX or DAX? Can't basic users do something like this that seems so trivial and needed?
    Thank you
    Luis Simões

    Hi Luis,
    According to your description, you create a Reporting Services report using Analysis Service Tabular Model as the datasource, now what you want is sum the months value on year level, right?
    In your scenario, you can add the Month field to column group, add a parent group using Year Field and then add a Total on Month group. In this case, Reporting Services will sum the months value on Year level. I have tested it on my local environment, the
    screenshot below is for you reference.
    Reference:Lesson 6: Adding Grouping and Totals (Reporting Services)
    If this is not what you want, please describe your dataset structure, so that we can make further analysis.
    Regards,
    Charlie Liao
    TechNet Community Support

  • Sales Analysis Report - Monthly report shows blank output

    Hi,
    When i run the Sales Analysis Report - Customer (Annual) report for a data set it shows the correct data - large number of invoices
    However, there is no output available (blank output) when i use the the Monthly version of the same report using the same parameters. Even when i am taking the widest possible range of data sets ( large date range; no properties; All customers) i am not getting any output.  I am using Individual display.
    Please help out.
    Regards.
    Edited by: Manish Chaturvedi on Jul 14, 2009 11:56 AM

    hello
    In sales analysis report have u given posting date for a particular month if not give and select client /customer in group and run the report u will get exactly if not then u do have any postings for a particular month and definr due date that means posting period also
    regards
    jenny

  • Omit the final SUM row in a report using breaks

    We have a report using breaking whereby it is broken for current day, week to date and month to date. We want to use the column SUM feature so that we have a count of all records for the day, week to date and month to date.
    This works fine, however we also get a final sum row on the bottom of the report which is a sum of the month, week and day count. This is meaningless as the month includes the week which in turn includes the day - all it gives is a useless large number! :)
    Is there a way to stop this final column being displayed?
    Thanks in advance

    I have managed to remove the last row in a table using the following code:
    <script type="text/javascript">
    $(document).ready(function() {
       $("#JK_TEST .t7standard tr:last").remove();
    </script>However, the report uses a bottom border implemented using a <TR> so I actually need to remove the second to last row. I have tried to work out how to do this but am still trying!!! Any suggestions?
    EDIT::
    DONE IT!!! :D:D :D
    Cheers for the help!
    <script type="text/javascript">
    $(document).ready(function() {
       $("#JK_TEST .t7standard tr:last").prev($('<TR>')).remove();
    </script>Cheers!
    Edited by: /dev/null on Mar 24, 2009 4:49 PM

  • Performance Report using OEM-11g

    Hi All,
    Is there any way to get the Monthly Database performance report using OEM Grid Control... I am able to grab only one week data in Historical option....
    Thanks In advance

    I have the same problem in OEM 11g, the calendar on the Performance tab - Historical selection - only shows "January 0" and can not be changed...a bug?
    Oracle 11.2.0.2.0 database on AIX.
    Using OEM Cloud 12c on some test instances again 11.2 on AIX and it works fine there.
    Any updates?

  • Creating a Report Using a SharePoint List

    I am using a SharePoint List that Named as 'Service Requests'. It has some fields with Date, Time, Status. The Date & Time will be entered. The Status as three values & those will be selected using a Drop Down List Box. The Statuses are 'In Progress,
    Completed, In completed'.
    I want to create a Report using this SharePoint List that include status with other fields in monthly basis. As an example I want the report about the Service Requests within the December month.
    I also need to know how am I able to link this report to a Web Menu that in the SharePoint Site. Because there is a web menu in that SharePoint Site. I have not developed this site so I don't know the type of the web menu of this site.
    I think someone can help me to solve these problems.
    Regards,
    Chiranthaka

    Hi Chiranthaka,
    According to your description, my understanding is that you want to create a report based on a SharePoint list.
    I agree with Trevor’s and Mohammad’s suggestion to use SQL Server Reporting Service to create the report for SharePoint list.
    You need to configure Reporting Services for SharePoint 2010 and then use it to create reports.
    Here are two links with the detailed steps to create report using SSRS with SharePoint for you to refer:
    http://aaclage.blogspot.in/2011/11/create-reports-with-sharepoint-2010-and.html
    http://nikpatel.net/2010/06/11/step-by-step-consuming-sharepoint-2010-lists-data-in-the-ssrs-2008-r2-reports/
    Best regards.
    Thanks
    Victoria Xia
    TechNet Community Support

Maybe you are looking for