Feeding one cube from another | Feeding multiple cubes
Posted: Sun Oct 23, 2011 6:59 pm
Hi,
I am having an issue feeding from 1 cube to another:
Finance Cube
Finance cube Rule:
Finance Cube feeders:
Currency Cube
Currency Cube Rule:
Not applicable as rule sits in finance cube
Currency cube feeder:
The only 2 dimensions in common are Year and Month.
Finance Cube dimensions:
Year, Month , Version, Entity, Department, Office, Tier, Customer Segment, GLAccount, Finance_m
Currency Cube dimensions:
Year, Month, Currency, CurrencyConvertTo, Currency_m
By reducing what I feed drastically to a single GLAccount N element it does feed. This feeder (entered in the Currency Cube) does feed through to the Finance cube:
Any help would be greatly appreciated
I am having an issue feeding from 1 cube to another:
Finance Cube
Finance cube Rule:
Code: Select all
['Closing Rate USD'] = N: ['Amount'] * DB('Currency', !Year, !Month, ATTRS('Entity', !Entity, 'BaseCurrency'), ATTRS('Finance_m', !Finance_m, 'Currency'), 'Closing Rate');
Finance Cube feeders:
Code: Select all
['Amount'] => ['Closing Rate USD'];
Currency Cube Rule:
Not applicable as rule sits in finance cube
Currency cube feeder:
Code: Select all
['Closing Rate'] => DB('Finance', !Year, !Month, 'All Versions', 'All Entities', 'All Departments', 'All Offices', 'All Tiers', 'All Customer Segments', 'All GLAccounts', 'Closing Rate USD');
Finance Cube dimensions:
Year, Month , Version, Entity, Department, Office, Tier, Customer Segment, GLAccount, Finance_m
Currency Cube dimensions:
Year, Month, Currency, CurrencyConvertTo, Currency_m
By reducing what I feed drastically to a single GLAccount N element it does feed. This feeder (entered in the Currency Cube) does feed through to the Finance cube:
Code: Select all
[ '2004',Currency:'ZAR', CurrencyConvertTo: 'USD','Closing Rate']=> DB('Finance', !Year, !Month, 'Actual', 'AEM SA', 'All Departments', 'All Offices', 'All Tiers', 'All Customer Segments', '5200', 'Closing Rate USD');