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