I have districts with areas. and i'm trying to fetch data from my cube. the problem is:
how can i fight this error?
with member [Measures].[District]
member [Measures].[Area]
member [Measures].[AreaID]
select
{
[Measures].[District],
[Measures].[Area],
[Measures].[AreaID]
} on columns,
{
{{[MyDimension].[Area].&[6007d9a7-a137-4bba-9d72-0020ee5d2db0]}}
} on rows
from SomeCube
Thanks in advance.
You should set the ignoreInvalidMembers
property to true.
You can find more information on Mondrian's configuration page.