Server is not responding when I am writing a rule.
Posted: Thu Aug 04, 2011 2:46 am
I have a cube named: BV_Allocations which contains the following dimensions
Version (Actual, Budget,SuperFlash)
SF_InterlineFlag (NO,YES)
SF_BorneFlag (NO,YES)
SF_ContainerSize
SF_ContainerType
SF_Direction
SF_Account(ContainerCount)
SF_Service
SF_OriginRegion
SF_DestinationRegion
Period(201201,201202,...)
SF_Vyoge(BudgetedVoyage)
SF_Measure(TEU)
I have another cube named: BV_RegionTEUSplit which contains the following dimensions
Version(Budget)
SF_ContainerSize
SF_ContainerType
SF_Service
SF_OriginRegion
SF_DestinationRegion
Period
SF_tEUSplit_Measures(TEUSplit_Calc,TEUSplit_OverWrite,TEUSplit_Final)
My rule @ BV_RegionTEUSplit cube is as follows:
['Budget','TEUCount']=N:
DB('BV_Allocations','Budget','NO','YES',!SF_ContainerSize,!SF_ContainerType,!SF_Direction,'ContainerCount',!SF_Service,!SF_OriginRegion, !SF_DestinationRegion,!Period,'BudgetedVoyage','TEU');
and I would like to write external feeder for the above rule in BV_Allocations cube as:
1) ['Budget','ContainerCount','TEU']=>
DB('BV_RegTEUSplit','Budget',!SF_ContainerSize,!SF_ContainerType,!SF_Direction,!SF_Service,!SF_OriginRegion,!SF_DestinationRegion,!Period,'TEUCount');
Result: Giving me error as SF_Direction is not part of BV_RegTEUSplit cube.
2) ['Budget','ContainerCount','TEU']=>
DB('BV_RegTEUSplit','Budget',!SF_ContainerSize,!SF_ContainerType,!SF_Service,!SF_OriginRegion,!SF_DestinationRegion,!Period,'TEUCount');
Note: omitted using !SF_Direction, since it is not part of BV_RegTEUSplit cube.
Result: I can see the values with out using 'supress zero' feature. But when I use 'Supress Zero' feature I am unable to see the values
3) ['Budget','ContainerCount','TEU']=>
DB('BV_RegTEUSplit','Budget',!SF_ContainerSize,!SF_ContainerType,'EveryDirection',!SF_Service,!SF_OriginRegion,!SF_DestinationRegion,!Period,'TEUCount');
Note: I am using the consolidated element instead of omitting the dimension name.
Result: Now server is hanging.
Can any one help me in resolving this issue.
What should be considered when the dimension is not part of the cube while writing feeders/external feeders.
But I am getting error saying that syntax error on or before. Can anyone help me in correcting this? Should I enhance the rule part or feeder part?
Thanks in advance.
Version (Actual, Budget,SuperFlash)
SF_InterlineFlag (NO,YES)
SF_BorneFlag (NO,YES)
SF_ContainerSize
SF_ContainerType
SF_Direction
SF_Account(ContainerCount)
SF_Service
SF_OriginRegion
SF_DestinationRegion
Period(201201,201202,...)
SF_Vyoge(BudgetedVoyage)
SF_Measure(TEU)
I have another cube named: BV_RegionTEUSplit which contains the following dimensions
Version(Budget)
SF_ContainerSize
SF_ContainerType
SF_Service
SF_OriginRegion
SF_DestinationRegion
Period
SF_tEUSplit_Measures(TEUSplit_Calc,TEUSplit_OverWrite,TEUSplit_Final)
My rule @ BV_RegionTEUSplit cube is as follows:
['Budget','TEUCount']=N:
DB('BV_Allocations','Budget','NO','YES',!SF_ContainerSize,!SF_ContainerType,!SF_Direction,'ContainerCount',!SF_Service,!SF_OriginRegion, !SF_DestinationRegion,!Period,'BudgetedVoyage','TEU');
and I would like to write external feeder for the above rule in BV_Allocations cube as:
1) ['Budget','ContainerCount','TEU']=>
DB('BV_RegTEUSplit','Budget',!SF_ContainerSize,!SF_ContainerType,!SF_Direction,!SF_Service,!SF_OriginRegion,!SF_DestinationRegion,!Period,'TEUCount');
Result: Giving me error as SF_Direction is not part of BV_RegTEUSplit cube.
2) ['Budget','ContainerCount','TEU']=>
DB('BV_RegTEUSplit','Budget',!SF_ContainerSize,!SF_ContainerType,!SF_Service,!SF_OriginRegion,!SF_DestinationRegion,!Period,'TEUCount');
Note: omitted using !SF_Direction, since it is not part of BV_RegTEUSplit cube.
Result: I can see the values with out using 'supress zero' feature. But when I use 'Supress Zero' feature I am unable to see the values
3) ['Budget','ContainerCount','TEU']=>
DB('BV_RegTEUSplit','Budget',!SF_ContainerSize,!SF_ContainerType,'EveryDirection',!SF_Service,!SF_OriginRegion,!SF_DestinationRegion,!Period,'TEUCount');
Note: I am using the consolidated element instead of omitting the dimension name.
Result: Now server is hanging.
Can any one help me in resolving this issue.
What should be considered when the dimension is not part of the cube while writing feeders/external feeders.
But I am getting error saying that syntax error on or before. Can anyone help me in correcting this? Should I enhance the rule part or feeder part?
Thanks in advance.