I have a cube with five measure groups. When I browse the cube and put a dimension on the y axis, it does NOT give me all the dimensional members. Just one: Actual.
When I use SQL Profiler, it shows the following MDX:
CREATE SESSION
SET [Profit].[{D37F0188-653F-4000-BF48-1276E0570F5C}Pivot6Axis1Set0] AS
'
{
{ [Scenario].[Scenario].[All] },
AddCalculatedMembers([Scenario].[Scenario].[Scenario].MEMBERS)
}
'
SELECT
NON EMPTY [{D37F0188-653F-4000-BF48-1276E0570F5C}Pivot6Axis1Set0]
DIMENSION PROPERTIES MEMBER_NAME, PARENT_UNIQUE_NAME ON COLUMNS
FROM [Profit]
CELL PROPERTIES VALUE, FORMATTED_VALUE, FORE_COLOR, BACK_COLOR
The results are:
All ActualPlan Reforecast_WIP
Lbs3.2 2.0.6
.6
In the query, I can see all the members of Scenario.
I don't know why the browser returns only one member but the query, which is using the default measure, is showing all members since there are results. Why would the query have different results to the browser?
HELP, please
Doug
Doug Hoogervorst