Dear All,
I have created a HANA View based on left outer join between 2 tables.
On BW we have a virtual cube based on the HANA view.
On Top of this virtual cube - we have a query created with exception aggregation KF weight ( ExcepAgg : Mat ) and KF Price ( ExcepAgg : Plant )
We notice that the exception of aggregation does not work, in a relation 1 - N, the weight is multiple by N
Did you already face this issue?
Do you know how we could solve it ?
Exemple
Table Contents in red the key field
Mat | Weight |
---|---|
M1 | 5 |
Plant | Mat | Price |
---|---|---|
P1 | M1 | 5 |
P2 | M1 | 7 |
P3 | M1 | 9 |
Query Result - in red the expected result
Plant | Mat | Weight | Price |
---|---|---|---|
P1 | M1 | 5 | 5 |
P2 | M1 | 5 | 7 |
P3 | M1 | 5 | 9 |
M1 | Weight | Price |
---|---|---|
M1 | 15 ( excepted result is 5 ) | X |