What's wrong with my rule (part2) :(
Posted: Tue Aug 28, 2012 1:08 am
Ok, I had another post on this but thought I'd start afresh... in a nutshell, I am trying to have:
[APRA Calc] = [Proportion] x [Signage] x [Balance]
--[Proportion] - is % fed via rules from an external cube
--[Signage] - is account mappings fed via rules from an external cube
--[Balance] - are $ in the internal cube
The main rule is:
This works ok (on an unsuppress zeroes test), however, the problem is with the feeders. I am attempting to feed the $ balances, but the only feeder I have gotten to work is:
...however UK is only 1 of 100s of domiciles. Attempting to feed to All domiciles causes the server to hang:
Have attached a screenshot of what the view looks like - but at this stage am looking for creative ways of circumventing the issue if anyone has any ideas 
Thanks!
Matt
[APRA Calc] = [Proportion] x [Signage] x [Balance]
--[Proportion] - is % fed via rules from an external cube
--[Signage] - is account mappings fed via rules from an external cube
--[Balance] - are $ in the internal cube
The main rule is:
Code: Select all
['APRA Actual',Measures:'LCYE'] = N:
DB('Biz_Client','APRA Actual',!SectionA,!SectionB,!SectionC,'No Product',!ProductProcessor,'No ResponsibilityCentre','Total Client',!Period,'Proportion') *
DB('Fin_Mapping','APRA GLMAP','NA','NA',!Company,!Affiliate,!ProductProcessor,'No ResponsibilityCentre',!Account,!Period,'Signage') *
DB('Fin_GL','Actual','NA','NA','NA',!Company,!Affiliate,!FunctionalCell,!Product,!ProductProcessor,!ResponsibilityCentre,
SUBST(!Account,1,10),!BalanceType,!Period,!Measures)
;
Code: Select all
['Actual',SectionA:'NA']=>['APRA Actual',SectionA:'UK'] ;
Code: Select all
['Actual',SectionA:'NA']=>['APRA Actual',SectionA:'Total Domicile'] ;

Thanks!
Matt