Hi,
We have a cube having snap shot period, Document period and Value.
Sanp Shot Period | Document Period | Value |
---|---|---|
004/2015 | 003/2015 | 10 |
004/2015 | 006/2015 | 20 |
004/2015 | 002/2015 | 30 |
004/2015 | 001/2015 | 40 |
004/2015 | 005/2015 | 50 |
004/2015 | 006/2015 | 60 |
004/2015 | 004/2015 | 70 |
004/2015 | 006/2015 | 80 |
004/2015 | 005/2015 | 90 |
My requirement is to show only the values where snap shot period GE document period.
Expected output is as below.
Sanp Shot Period | Document Period | Value |
---|---|---|
004/2015 | 003/2015 | 10 |
004/2015 | 002/2015 | 30 |
004/2015 | 001/2015 | 40 |
004/2015 | 004/2015 | 70 |
I have created formulae variable with replacement path on snap shot and document period.
Used these formulae variable in a CKF where snap shot period GE planning period to get the values.
The issue is I am getting the records which are satisfies the conditions and the records which are not satisfies also.
The Values for the records which are not satisfies the conditions coming as 0.
Output coming as below.
Sanp Shot Period | Document Period | Value |
---|---|---|
004/2015 | 003/2015 | 10 |
004/2015 | 006/2015 | 0 |
004/2015 | 002/2015 | 30 |
004/2015 | 001/2015 | 40 |
004/2015 | 005/2015 | 0 |
004/2015 | 006/2015 | 0 |
004/2015 | 004/2015 | 70 |
004/2015 | 006/2015 | 0 |
004/2015 | 005/2015 | 0 |
I know through conditions we can avoid this. But we are going to use this in BO,where conditions cannot work.
How can we totally avoid the records which are not meeting the conditions to avoid the data volume.
Regards,
Sai