Hello experts,
the web application designer highlighted the cells which could not be disaggregated:
In Analysis these cells are not highlighted. Is it possible to enable this feature in Analysis for Office somehow?Kind regards
Daniel
Hello experts
We use a an input iarameter in a calculation view. If the input parameter is blank all values should be selected. I thought it should be easy. This is the implemented filter expression:
if('$$P_Input$$' = '',
match( "Char",'*'), ...
Hello experts,we are implementing BPC 10.1 embedded. The users are maintained by central user administration (CUA). I needed some extra authorization for creating authorization profiles for the DAP. The created profiles don't fit our naming conventi...
Hello Tammy,
thank you for your quick response. The link explains the disaggregation. The disaggregation is working fine. If there is no reference data the disaggregation cannot be made which is fine too. But the user should be able to see the cell...
Hello again,
I have found the solution. Following coding works:
match( "Char",
if('$$P_Input$$' = '',
'*',
'$$P_Input$$')
So the if statement has to be in the match statement. Not the other way around.
Match(IF(), THEN, ELSE)
...