Skip to main content

Variance Reporting - How to do it - Part II

In the last post here, we have talked about the basics of Variance Reporting. In this post, we will talk a bit detail about the variances scenarios that fall under two categories that we mentioned in the Part I of this series. 

Exert from the last post

You can categorize the Variance Reporting as
  1. Variance Reporting across Time Periods
  2. Variance Reporting across Scenarios (Actual, Plan, Forecast)
Variance Reporting across Time Periods

Most of the organizations often compare data across Time Periods to know where exactly their stand and how are they progressing.

For Example, a sales organization want to see 
  • How much their sales has increased from Last Quarter/Month
  • What is their revenue when compared to Last Quarter/Month
  • what are the companies expenses when compared to Last Quarter/Month
  • What is the profit margin when compared to Last Quarter/Month
When a company releases their Quarter Results, you might have heard that
  • Our company profits have increased to 19% when compared to Last Quarter
  • Our Sales have increased to 35% when compared to Last Quarter
  • YoY we have an increase of 12% in profits
So, how do we implement in Essbase?

Most of the Essbase/Planning Application will have Scenario Dimension and Scenario is a good candidate to create Variance Reporting Scenarios

So, in general if we want to have all these done in Oracle Essbase, below are the list of comparisons that you would do
  1. Current Month Vs Prior Month (Month On Month Variance)
  2. Current Quarter Vs Prior Quarter (Qtr On Qtr Variance)
  3. Current Year Vs Prior Year (Year On Year Variance)
These should be flexible enough to work at Q-T-D and Y-T-D level and they should also work on any Month/Qtr/Year for which you want to retrieve the data.
 At times, you might want to see just the variance of Current Year YTD with Previous Year Closing Balance mostly for Balance Sheet Accounts. 

Let's go a bit deep and see how your Formula would like for the Variance Scenarios
Make sure that you categorize your Hierarchies for better understanding. This is how my Scenario Dimension looks like

Scenario
    Actual Scenarios
    Plan Scenarios
    Variance Scenarios
        SCN_CM_Vs_PM (Curr Mth Vs Prior Mth) (~)
        SCN_CQ_Vs_PQ (Curr Qtr Vs Prior Qtr) (~)
        SCN_CY_Vs_PY (Curr Year Vs Prior Year) (~)

Current Month Vs Prior Month (Month On Month Variance)
Let's name the Scenario as SCN_CM_Vs_PM (Curr Mth Vs Prior Mth). This would be a Dynamic Calc member (In ASO, this member would fall under a Dynamic Hierarchy) with a Formula on it.

IF(@ISMBR("Jan"))
/* For Jan, You might want to take the last Year Dec as prior month */

      "Actual"->"Jan" - @PRIOR("Actual"->"Dec",1,"Years") 
ELSE
/* @LEVMBRS("Period",0) is an optional parameter. By Default, it will take level0 members of the Period Dimension (Dimension tagged as Time) */
      "Actual" - @PRIOR("Actual",1,@LEVMBRS("Period",0))
END

Current Quarter Vs Prior Quarter (Quarter On Quarter Variance)

Similar to "Month On Month Variance", you can write the similar formula for "Quarter On Quarter Variance"

Current Year Vs Prior Year (Year On Year Variance)

You may have lot of  years in your application but you may have data starting from some specific year / As a part of your archival strategy, you might archive your historical data to a separate application. In such cases, you can have a substitution variable that will take the first year of the application from where the data is available and below is how the formula would look like:
IF(@ISMBR(&FirstYear))
/* FirstYear is that year from which you have data in your application */
      "Actual"; 
ELSE
/* @LEVMBRS("Years",0) is an optional parameter. By Default, it will take level0 members of the Period Dimension (Dimension tagged as Time) */
      "Actual" - @PRIOR("Actual",1,@LEVMBRS("Years",0))
END

Note: Similar to the above variance Scenarios, you can also build Variance % Scenarios. 

Once you have all the scenarios in place, you can build a nice Smart View Retrieve template / Build an HFR Report and show it to your users. I hope they will love it.

We will talk about "Variance Reporting across Scenarios (Actual, Plan, Forecast)" in the next post. As an Add-on (At the END), we will also cover how these variance reporting scenarios will work in ASO.

Happy Learning!!! 

Comments

Popular posts from this blog

PBCS/EPBCS - ASO exclude shared & Dynamic

As you all are aware that Oracle releases patches to EPM cloud every month (EDMCS is released every 2 months) and the patches are applied on first-week of Friday in Dev and third-week of Friday in Prod I did a post long back about a challenge that I have faced in on-premise and how I have addressed that. New functions were released in Nov-2018 release of PBCS. Below is an excerpt from the readiness document. You can find the document here New Aggregate Storage Functions in Calculation Manager The following Aggregate Storage functions have been added to Calculation Manager. These functions filter the shared and dynamic members from the Point of View (POV). The functions can be used in the POV of an Aggregate Storage custom calculation or allocation. @FilterDynamic(Dimension Name, Member Name) removes all dynamic members from the list of members @FilterShared(Dimension Name, Member Name) removes all shared members from the list of members @FilterSharedAndDynamic(Dimensio

EPM Cloud Tips & Tricks - #1

The first EPM cloud product was released in 2014 and it's been six years till date. I was recently part of an FCCS implementation project. I know what you might be thinking. Coming from completely essbase and planning background and been working on it for almost 12 years and doing an FCCS project? Well, it turned out that way and it was a change for me too than being in my comfort zone and took it as a challenge.  I have been very busy for over the past one year and I didn't really had a chance or time to get back to my blogging and sharing my knowledge. The project finally went live and I am going to share my bit of learnings. Some of it you might alread know The first tip is going to be an easy one and those who have worked in FDMEE / Data Management in the cloud, you might already know it. But, this is very important when it comes to FCCS as zeroes are valid from Balance Sheet standpoint Data Management by default doesn't load zeroes. Below is a excerpt from the document

EPM Cloud (PBCS/EPBCS/FCCS) - Report Bursting & Reports scheduling

The first product of Oracle EPM cloud was launched in 2014 and it's been 5 years and over the course of these 5 years, Oracle has every EPM product in cloud to what is available in on-premise. With so many products under the EPM belt each with its own functionality, there is a real need to have a single unified reporting tool that can handle all your reporting requirements across all your EPM products at one place. EPRCS (Enterprise Performance Reporting Cloud Service) is the Oracle direction to address all the reporting needs for any organization of any size. If your team is responsible for the management, narrative and external reporting with the ability to author, collaborate and a solid approval process, you definitely have to consider implementing EPRCS at your organization EPRCS can connect to your EPM Cloud products, Essbase cloud and also to your Fusion Applications Essbase app. It addresses all your financial, management, narrative and disclosure reporting. I am not goi