Retrieve Entity currency in Essbase Rules
Summary
We need to obtain the entity currency of the current entity being processed to compare that against a list of currencies.Content
In HFM you could extract the currency or value layer of the current entity by using either
HS.Value.Currency() or HS.Entity.defCurrency("").
This value could then be compared against a set of currencies to then do specific actions on certain currencies, or this could then be combined with a prefix to sue a member in one of the custom dimensions if you had a list of currencies for disclosure purposes.
E.G HS.Exp "A#Disc Account.C1#IFRS7_Curr_" & HS.Entity.defCurrency("") = 500.
0