I have districts with areas. and i'm trying to fetch data from my cube. the problem is:
- i add new area to district in database.
- the data in cube is recalculated only once a day. so rigth after i have added new area it will be not present in my cube.
- and when i try to get info from cube i get the error 'MDX object '[ATD].[Area].&[6007d9a7-a137-4bba-9d72-0020ee5d2db0]' not found in cube' after the cube is recalculated everything is ok.
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.