OBIEE -Time Series in OBIEE.txt

download OBIEE -Time Series in OBIEE.txt

of 19

Transcript of OBIEE -Time Series in OBIEE.txt

*/Oracle Business Intelligence Application/*

* Home * DATAWAREHOUSE * ORACLE DATABASE * OBIEE o OBIEE 10G o OBIEE 11G * OBIA o OBIA IN WINDOWS o OBIA IN LINUX o OBIA IN UNIX * INFORMATICA * DAC * CONTACT * Home * Features o Shortcodes o Slideshow o Wallpaper Ad o Full Width Page o Archives Page o Homepage Blog o No Leaderboard o Typography * Business * Entertainment o Blogs o Columnists + Max Mag Staff * Sports o Blogs o Columnists * Fashion * Tech * Travel * Food All About Data Warehousing and Business Intelligence A blog where you can explore everything about Datawarehouse,Oracle,OBIA, OBIEE,Informatica,ODI,DAC and many more datawarehouse products and tools.... * Support Center Don't miss * Why Data warehouse Posted 13 days ago * OBIA 7.9.6.3 Installation Posted 125 days ago * What is OBIEE? Posted 1 days ago * OBIEE 11G Architecture Posted 10 days ago * * * * * * * *Tuesday, 27 August 2013 OBIEE -Time Series in OBIEE ------------------------------------------------------------------------*Kashif M* on 01:54------------------------------------------------------------------------Time Series in obieeTimeseries functions present the capability to evaluate and comparingbusiness performance by current period of time to previous time periods,allowing you to analyze data for multiple time periods.*/Comparison between 10g and 11g/*** Only two series functions like AGO, TO DATE In answer side we don't have the option to implement timeseries functions Only in RPD level have the function of time series in 10g Three time series functions like AGO, TO DATE, PERIOD ROLLING Here in answer side we have the function to implement timeseries functions Both RPD and Answer side have the functions of time series in 11gProcedures where same for AGO and TODATE function in 10g as well as 11g.** ** ** *1. Ago:***Ago time series function defines the sale or revenue of businessstatistics according to the period over months or year. It calculatesthe last year amount on the same date of present year.***Syntax:***Ago (, , ) ***Measure:*A measure column which you to make use in thisfunction * **Level:*** On which level you want to calculate thismeasure. This level is selected from the Time Dimension hierarchy ***Number of Period:*A numerical value which will go for howmany levels you want to go before from current time.*Description:***Ago is the function to calculate the revenue over the period, itrequires the measure column, level of hierarchy, and how many periods ofrevenue you need.Measureshould be summed up sum function in the logical column.Hierarchyis used here in ago function are time dimension hierarchy only.For example: time dimension hierarchy created likeYear Quarter Month DaySo according to the year if we need the sales or revenue means justassign the ago function like this Ago (Revenue, year, 1) thisdenotes the last year revenue value.*For Example Look Below screen shots:*******Look the vales for the year 2005**Look the values for the year 2006

Using ago function in logical columns, we have to show the fact valuefor 2005 in the year of 2006 with new column.

You can use this level of hierarchy as well as year also. Here I amgoing to calculate for the sale before 12 months from the present month.In the levels tab you must have the select the any column key asChronological Key .

Compile and save the rpd. Login to answer side and clear cache andmanage session and reload the server metadata.And see the report. We can see the 2005 year values in 2006 yearaccording to the month.

*/The same thing I'm doing in OBIEE 11g RPD side (Admin):/****OBIEE 11g** Answer side:*** *_ _**2.TO DATE:*TODATE function is used to calculate the revenue for 2 months or 3months from the beginning time of the year. A time series aggregationfunction that aggregates a measure attribute from the beginning of aspecified time period to the current time. For example, this functioncan calculate Year to Date sales.If we need to see the revenue up to now (Current Month) @ Year. Forexample we are in the month of august means it calculates the revenuefrom starting of the year January to august.*Syntax:*ToDate (, ) * Measure:*A measure column which you to make use in this function * Level:*On which level you want to calculate this measure. Thislevel is selected from the Time Dimension hierarchy*Description:***ToDate ("SH"."SALES"."AMOUNT_SOLD, "SH"."Time Dimension"."Year) With the above example 'Amount Sold' Column is the measure and'Year' is the level which will calculate the measure from the beginningof the year to a specified time.*Example:* Create a logical column and use the ToDate function tocalculate the revenue according to the month wise.

Just look and compare in answer side with actual value and To datecalculated value.

the above picture you can see 2 columns one is Actual sum and actual _YTD.For January the Actual sum is -1162298.2 and actual_YTD is-1162298.2For February the Actual sum is -1325146.4 and actual_YTD is calculatedby Jan+Feb = -3572256.2 and same for all the other months. So it calculated by month + month. *Period rolling a new feature present in OBIEE 11g:*Period rolling is the time series function which is used to calculatethe revenue over the period for months and year from starting year ormonth and ending period or month. Interval of calculation of the measure.This function allows us to create a aggregated measure across aspecified set of query grain period, rather than within a fixed timeseries grain. The common use of this function is to create a RollingAverage such '10-Week Rolling Average'***Syntax:****Period Rolling (, , )** Measure: *represents the logical measure column from which youwant to derive* Starting Period Offset: *identify the first period used in therolling aggregation* Ending Period Offset: *Identify the last period used in the rollingaggregation* For e.g.: *Period Rolling ( "SH"."SALES"."AMOUNT_SOLD", -2, 0) With the above example I'm creating three months rolling sum ofcolumn 'Amount Sold. It includes past two months with the current month.The numerical value '-2' in the offset indicates the month Jan-12,Feb-12 if our current month is 'Mar-12'.The numerical value '0' in theoffset indicates the Current Month*Note:*Period Rolling( ) function which will not the calculate the Average sumof three months for the measure. Average (AVEG ( ) function in OBIEE)computes the average of the database rows accessed at the storage grain.So If you want to calculate the 3-Month sales average for the aboveexplained Period Rolling *example *we have to write the syntax like below:3-Month Sales Average =(Period Rolling (SH"."SALES"."AMOUNT_SOLD", -2, 0))/3*Example:*We have the measure columns Actual _sum, using this column I used periodrolling for 2 months before from the current month. So it shouldcalculate the current month by summing of previous 2 months. Forreference I created the period rolling function in answer side andcalculated see the below pictures.*Period rolling (ADSS.Actual_sum,-2, 0)*

See in the result tab:

Check here, the period rolling values should add the 2 months values +current month.January Actual sum -1162298.2 period rolling -1162298.2February Actual sum -1084811.6 period rolling (AddedJan+Feb)=-2247109.8March Actual sum -1325146.4 period rolling (summedJan+Feb+March)=-3572256.2April Actual sum -1203334.7 Period rolling (SummedFeb+March+April)=-3613292.OBIEE 11G

* * * * 1 *Kashif*Kashif: _OBIEE -Time Series in OBIEE_Review : Kashif | < http://www.mkashu.blogspot.com >Update: 01:54 | Rating: 4.5

Newer Post

Older Post

1 comments: 1. Amit Sahoo 30 June 2014 at 08:08 how to purge cache in perticular table in dashboard,not go to rpd side? Reply Delete Add comment

Load more...

Links to this postCreate a Link Blog Archive * 2015 (18) o July (5) o June (1) o May (6) o April (3) o March (3) * 2014 (188) o November (42) o August (13) o June (41) o May (17) o March (1) o February (55) o January (19) * 2013 (247) o December (3) o November (22) o October (21) o September (92) o August (43) + OBIEE Event Tables + OBIEE - Replace Column or Table in Logical Table S... + Admin Tool Utilities in OBIEE 10G & OBIEE 11G + OBIEE -Hardware Sizing Questionnaire OF OBIEE 11G + OBIEE -Time Series in OBIEE + OBIEE - Oracle Enterprise Manager (OEM) and Consol... + OBIEE - Oracle Business Intelligence Delivers + Informatica - Post Load Processing (PLP) + Informatica - Source Independent Load (SIL) + Informatica - Source Dependent Extract (SDE) + OBIEE - Overview of Agent in OBIEE + DAC - Siebel Unicode DB + Informatica - use of PMCMD command in Informatica + OBIEE - Types of views in OBIEE Analysis + OverrideMpltVarWithMapVar in Informatica + Oracle EPM System + OBIEE Products and Components + WHAT IS OBIEE ? + DAC - EXECUTION PLAN IN DAC + Difference between OBIEE 10g and OBIEE 11g + DAC - Import and Export in DAC + OBIEE 11G ARCHITECTURE + OBIEE - Graph View In OBIEE + OBIEE - INSTALLATION OF OBIEE IN LINUX + OBIEE- Title View in OBIEE + OBIEE - Pivot Table View in OBIEE + OBIEE - Table View in OBIEE + Install Sun Java JDK + OBIA - Setting Environment Variables + OBIA - Pre-installation Tasks for Oracle Business ... + OBIA -Create ODBC Database Connections + OBIEE - DISPLAY LOGO IN REPORT HEADER + Oracle APPS R12 Installation + DAC - Source System Parameters in DAC + DAC - Assmeble in Datawarehouse Administrator Cons... + Lookup file in OBIA + Source file in OBIA + export schema without data in oracle + dac error code 36331 + How to Decrypt Oracle Apps Password + Change default language in oracle database + How to insert multiple language in oracle + how to insert arabic data in oracle o July (66) * 2012 (1) o August (1)

Labels1z0-482 Dumps (2)1Z0-525 Dumps (1)BI Publisher Interview Questions

(1)DATA WAREHOUSE ADMINISTRATOR CONSOLE

(18)Data Warehousing (31)E-BIZ R12 (1)E-BIZ R12 INSTALLATION (1)Essbase (1)hmailserver (1)Hyperion (1)Hyperion Essbase (2)Hyperion Essbase Interview Questions

(1)Hyperion financial management

(1)Informatica (141)Informatica Interview Question

(36)Informatica Online Training

(1)Informatica Training (1)Informatica Training Chennai (1)JAVA (1)linux (1)Normalization in Oracle (1)OBIA 11.1.1.7.1 (1)OBIA 7.9.6.3 (3)OBIA Installation (33)OBIEE 10G (8)OBIEE 11G (128)OBIEE 11g dumps (2)OBIEE 11g Interview Questions

(1)OBIEE certification (2)OBIEE Interview Question (1)OBIEE Publisher Interview Questions

(1)OBIEE TRAINING CHENNAI (1)OBIEE TRAINING ONLINE (1)ODI (Oracle data integrator)

(2)odi 11g certification (1)ODI dumps (2)Oracle Administrator (19)Oracle Business Intelligence Application

(3)Oracle Data Integrator (2)Oracle Data Integrator Interview questions for experience

(1)Oracle Database Installation in Linux 6

(2)Oracle E-Business R 12.3 (1)Oracle Hyperion Planning and Budgeting Questionnaire

(2)oracle Joins (1)scorecard in obiee 11g (1)SQL Interview Questions (1)sql server 2008 (2)Sql server installation (1)WinSCP (1)

Informatica Transformation * Union Transformation * Stored Procedure Transformations * Source Qualifier Transformation * Sorter Transformation * Sequence Generator Transformation * Router Transformation * Normalizer Transformation * Rank Transformation * Look-up (Un-connected) Transformation * Look-up (connected) Transformation * Filter Transformation * Expression Transformation * Aggregator Transformation

Contact FormNameEmail *Message *

Popular Posts * Top 100 Informatica Interview Questions I have attended Informatica interview last week in wipro and couple of other companies, Question below I faced in those companies. 1... * Top 130 SQL Interview Questions And Answers 1. Display the dept information from department table. Select * from dept; 2. Display the details of all employees ... * OBIEE 11G ARCHITECTURE WITH EXPLANATION Below diagram describes the standard logical architecture of Oracle business intelligence 11g system The entire system architecture is c... * Normalization in SQL ((1NF, 2NF, 3NF, BCNF, 4NF, 5NF) Normalization: Normalization is step-by-step process of reducing complexity of an entity by distributing the attributes to differen... * OBIEE -Time Series in OBIEE Time Series in obiee Time series functions present the capability to evaluate and comparing business performance by curre... * Download Informatica 9.5 software I seen many peoples searching to download informatica software. Just go to https://edelivery.oracle.com/EPD/Download/get_form?egroup_aru... * OBIEE - Pivot Table View in OBIEE Pivot table Pivot table view to take row, column, section headings and swap them around to obtain different perspectives. You can ...

Powered by Blogger .

Primary Cluster Controller Error in OBIEE 11g

By Kashif M - 0 comment

LOGIN FAILED WHILE OPENING RPD IN ONLINE MODE IN OBIEE 11G

By Kashif M - 0 comment

dynamically change column name in obiee

By Kashif M - 0 comment

Informatica 9.5.1 server installation

By Kashif M - 0 comment

What is Connection Pool in OBIEE 11g

By Kashif M - 0 comment

Shared Log On option in OBIEE 11g

By Kashif M - 0 comment

How do you create a DSN in OBIEE 11g

By Kashif M - 0 comment

Difference between RPD UserID and Password and Connection Pool user IDPassword in OBIEE 11G

By Kashif M - 0 commentGet this widget

EXPRESSION TRANSFORMATION IN INFORMATICA

By Kashif M - 0 comment

UPDATE STRATEGY EXPRESSION IN INFORMATICA

By Kashif M - 0 comment

MAPPING VARIABLES IN INFORMATICA

By Kashif M - 0 comment

Improving Performance in Informatica

By Kashif M - 2 comments

REPOSITORY MANAGER IN INFORMATICA

By Kashif M - 0 comment

Batch in Informatica

By Kashif M - 0 comment

What is a Session in Informatica

By Kashif M - 0 comment

What is a Mapping In Informatica

By Kashif M - 0 commentGet this widget

* About Me My Photo Kashif M I'm Kashif, Certified OBIEE Consultant working with 7stl in Chennai. I am here to share my experience, ideas, thoughts and issues while working with Oracle and in Data warehousing products. View my complete profile * * Followers * Home * About * Support Center Copyright 2014 Mkashu. Designed by Templateism