I've two cubes;
Employee
-Scenario
-Period
-Measure
-Employee
Result
-Scenario
-Period
-Account
And with the next mapping table between Measures and Accounts
Measure1 > Account1
Measure2 > Account2
Measure3 > Account3
I want to get the values for the account with a rule;
You could do this in a few ways
1
Make a rule and a feeder for each account and measure combination. In my opinion this is not a good solution because for each new combination you have to update your rules
2
Make an attribute in the Account dimension named 'Source', you will get the next rule in the result cube;
Code: Select all
[]=DB('Employee', !Scenario, !Period, ATTRS('Account', !Account, 'Source'), 'All employees');
I think this isn't the ideal solution yet.
3
Make an attribute(Alias) in the measure dimension called 'TargetAccount' you will get the next rule;
I guess, this will not work unless you do I with a TI process.
any other suggestions? Like look-up cubes, subsets, consolidations or others
Thanks in advance