Technology Blogs by Members
Explore a vibrant mix of technical expertise, industry insights, and tech buzz in member blogs covering SAP products, technology, and events. Get in the mix!
cancel
Showing results for 
Search instead for 
Did you mean: 
former_member182302
Active Contributor

Hi Folks,

This blog is intended to share my experiences on using "Dynamic Join" in "Join" node of a Calculation View (Graphical).

Note: i have done this on HANA Rev 68.

Problem Description:

We will have some scenario's in which we would want the "system" to have intelligence on whether to do a join or not before aggregation depending on the "Query" it receives from the UI ( Front end).

Example:

Let us take a sample table data i.e employee with the following DDL and data as shown below:


CREATE COLUMN TABLE "EMPLOYEE" ("EMP NO" INTEGER,
  "EMPLOYEE NAME" VARCHAR(200),
  "EMPLOYEE TYPE" INTEGER,
  "GENDER" VARCHAR(10),
  "AGE" INTEGER ,
  "REGION" VARCHAR(10),
  "COUNTRY" VARCHAR (20),
  "SALARY" DECIMAL(18, 0))


Load the data into the EMPLOYEE Table with the below mentioned insert statements:


   insert into "EMPLOYEE" values(1,'Sachin',1,'M',40,'APAC','IND',50000); 
    insert into "EMPLOYEE" values(2,'Ganguly',1,'M',42,'APAC','PAK',40000); 
    insert into "EMPLOYEE" values(3,'Dravid',1,'M',40,'AMER','US',40000); 
    insert into "EMPLOYEE" values(4,'Laxman',1,'M',43,'AMER','US',40000); 
    insert into "EMPLOYEE" values(5,'Dhoni',1,'M',35,'EMEA','GER',40000); 
    insert into "EMPLOYEE" values(6,'Sehwag',1,'M',36,'EMEA','GER',30000); 
    insert into "EMPLOYEE" values(7,'Kohli',1,'M',23,'EMEA','UK',20000); 
    insert into "EMPLOYEE" values(8,'Kumar',1,'M',22,'EMEA','GER',10000); 
    insert into "EMPLOYEE" values(1,'Law',2,'M',24,'APAC','IND',30000); 
    insert into "EMPLOYEE" values(2,'Eddie',2,'M',26,'EMEA','UK',150000); 
    insert into "EMPLOYEE" values(3,'Paul',2,'M',23,'APAC','IND',120000); 
    insert into "EMPLOYEE" values(4,'Howrang',2,'M',22,'AMER','US',60000); 
    insert into "EMPLOYEE" values(5,'Xiayou',2,'F',22,'AMER','US',8000); 
    insert into "EMPLOYEE" values(6,'Nina',2,'F',22,'AMER','CAN',70000); 
    insert into "EMPLOYEE" values(1,'Federer',3,'M',30,'APAC','IND',1150000); 
    insert into "EMPLOYEE" values(2,'Nadal',3,'M',29,'APAC','IND',5230000); 
    insert into "EMPLOYEE" values(3,'Djokovic',3,29,24,'APAC','IND',5045000); 
    insert into "EMPLOYEE" values(4,'Murray',3,'M',24,'APAC','CHN',55650000); 
    insert into "EMPLOYEE" values(5,'Sampras',3,'M',44,'AMER','CAN',5660000); 
    insert into "EMPLOYEE" values(6,'Agassi',3,'M',45,'AMER','US',5056000); 
    insert into "EMPLOYEE" values(7,'Venus',3,'F',28,'AMER','US',9500500); 
    insert into "EMPLOYEE" values(8,'Serena',3,'F',29,'AMER','US',9507000); 
    insert into "EMPLOYEE" values(1,'Messi',4,'M',24,'APAC','IND',510000); 
    insert into "EMPLOYEE" values(2,'Ronaldo',4,'M',28,'AMER','CAN',500); 
    insert into "EMPLOYEE" values(3,'Xavi',4,'M',30,'EMEA','UK',5002300); 
    insert into "EMPLOYEE" values(4,'Beckham',4,'M',40,'EMEA','UK',7850000);

Now Let us try to analyze the share of salaries earned by each "Employee Type" at "Region" level and "Country" level.

We would need to create a calculation view in which we shall use 2 "Aggregation" nodes of which one will not include "Employee Type" in the aggregation as shown below.

Let me name this Calculation view as "CV_DYNAMICJOIN_TRUE".

Aggregation 1:

Aggregation 2:

While adding "Salary" from this node , rename it as "Total_Salary".

Now let us join these "Aggregation nodes" with join between them as "Inner Join" and "Dynamic Join" set to "True"

as shown below:

Now we need to create a "Calculated Column" i.e "Share_Salary" which gives us the salary shared at "Region" or "Country" level in the "Projection Node" as shown below:

Now activate the view and let us analyze the results.

Now let us analyze the output:

Output:

You can see in the above result that we get "Salary" at Region and Employee Type level but the "Total Salary" is at "Region Level" and the "Share Salary" gives the share of salaries for each employee type at Region level.

Case 2:

I have created the similar calculation view keeping Dynamic Join as "False".

Let us see the output for similar query to analyze the salaries of Employee Type at Region level below:

You can see here , the Join is behaving like a "Static Join" at Region as well as Country level and gives the salaries at the same level. Which gives us the erroneous results and hence gives more records i.e 16 instead of 11.

Now let us analyze Viz plans to check how many records each aggregate node is giving for the above mentioned queries:

Case 1 ( Dynamic Join = 'True') :

As you can see above we are getting 3 records from the left node. i.e we have 3 regions and we are getting "Total Salaries" for those 3 regions at "Region" Level and similarly we are getting 11 records from the right node i.e Region and Employee Type level.

Case 2 ( Dynamic Join = 'False' ) :

As you can see above we are getting 7 records from the left node i.e Region and Country level. and similarly we are getting 16 records from the right node i.e Region,Country and Employee Type level.

So the above "Dynamic Join" helps to "intelligently" decide based on the query received from UI whether it has to join at Country level or not. Which makes our work as a modeller bit easier.

Hoping this blog helped you to understand the benefits of using "Dynamic Join". Please do let me know your feedback on this.

Your's

Krishna Tangudu :smile:

19 Comments
Labels in this area