CubeProcessFeeders doesnt seem to process
Posted: Mon Aug 29, 2011 5:28 am
Hi, anyone have issues with CubeProcessFeeders(CubeName); Ti function.
I have a rule in a cube for Forecast Amount to retreive from Forecast consolidated element for the budget version
This works until I change the active budget version, then the feeders will only work if I change the feeder to
And then change back to
and it continues to work... the CubeProcessFeeders(CubeName); Ti function tested in proilog, metadata, data, epilog does not seem to initate the feeder. Does anyone know a possible reason why this is the case?
Thanks in advance
I have a rule in a cube for Forecast Amount to retreive from Forecast consolidated element for the budget version
Code: Select all
skipcheck;
['measure':'Forecast Amount'] =n: IF(ATTRS(Version,'Budget',Active) = Y, DB('cube',!year,!Branch,!GL,ELCOMP(Version,'Forecast',1),!Month,'Forecast Amount'), STET);
Feeders;
['Version': 'Forecast', 'measure':'Forecast Amount'] => ['measure':'Forecast Amount']
Code: Select all
['Version': 'Forecast', 'measure':'Forecast Amount'] => ['measure':'Forecast Amount', 'specific new active budget']
Code: Select all
['Version': 'Forecast', 'measure':'Forecast Amount'] => ['measure':'Forecast Amount']
and it continues to work... the CubeProcessFeeders(CubeName); Ti function tested in proilog, metadata, data, epilog does not seem to initate the feeder. Does anyone know a possible reason why this is the case?
Thanks in advance