We recently upgraded BW from 7.02 to 7.3. After doing this some MDX coming from BPC stopped working. I investigated and found out about the MDXTEST transaction. I have experience writing MDX for the Microsoft Analysis Services platform.
It seems that I can't get any MDX to run that defines and uses a calculated member (with clause).
This will run:
SELECT [Measures].[/CPMB/SDATA] ON COLUMNS
,[/CPMB/K6DBJTB].Members ON ROWS
FROM [$/CPMB/K6IXB3O]
This also runs:
WITH MEMBER Measures.Test AS '([Measures].[/CPMB/SDATA])'
SELECT [Measures].[/CPMB/SDATA] ON COLUMNS
,[/CPMB/K6DBJTB].Members ON ROWS
FROM [$/CPMB/K6IXB3O]
This won't run:
WITH MEMBER Measures.Test AS '([Measures].[/CPMB/SDATA])'
SELECT [Measures].[/CPMB/SDATA],Measures.Test ON COLUMNS
,[/CPMB/K6DBJTB].Members ON ROWS
FROM [$/CPMB/K6IXB3O]
Why??