Reputation: 551
I have script essbase calc from hyperion like this
"ACTUAL" = ("ACTUAL" + ("ACTUAL"->"Labor_Hours"->"NA_CE"->"NA_CC"->"NA_ENTITY" * "ACTUAL"->"NA_PRODUCT"));
i have no idea what that code means,
because my cube result alwasy zero 0
Upvotes: 0
Views: 163
Reputation: 11
To answer that, you have to identify the values for each of the following:
"ACTUAL"->"Labor_Hours"->"NA_CE"->"NA_CC"->"NA_ENTITY"
for each product "ACTUAL"->"NA_PRODUCT"
where we can assume in the FIX section you have the members CE_1, CC_1, ENTITY_1
then look for the following
"ACTUAL"->"NA_PRODUCT"->CE_1->CC_1->ENTITY_1
"ACTUAL"->CE_1->CC_1->ENTITY_1
for each productIn this case, for sure, what can make you get a ZERO is that for 1 or 2 there's a ZERO or #Missing in you data.
Upvotes: 1