How to remove shared member in calculation rule?
Hi everyone,
I'm working on an Oracle EPM Cloud (Hybrid BSO) calculation and have a question regarding member selection.
My Account dimension has two top-level hierarchies:
- GL
AccountLEGAL_FINANCIAL_STATEMENT(primary/stored hierarchy)
LONGFORM_FINANCIAL_STATEMENTM_NET_SALES(alternate hierarchy with shared members from LEGAL_FINANCIAL_STATEMENT)
My calculation currently looks like this:
FIX(@RELATIVE(LEGAL_FINANCIAL_STATEMENT,0)) ...ENDFIX
I want to exclude all descendants of M_NET_SALES from the FIX because they require different calculation logic.
I have already tried:
FIX(@REMOVE ( @RELATIVE (LEGAL_FINANCIAL_STATEMENT,0),@IDESCENDANTS (M_NET_SALES) ))
and
FIX( @REMOVE (@RELATIVE (LEGAL_FINANCIAL_STATEMENT,0), @SHARE(@RELATIVE (M_NET_SALES,0))))
0