Skip to content

Commit

Permalink
MONDRIAN: Improve navigation and fix regression bugs in adhoc.jsp
Browse files Browse the repository at this point in the history
[git-p4: depot-paths = "//open/mondrian/": change = 3870]
  • Loading branch information
Sherman Wood committed Jul 24, 2005
1 parent 901f8e1 commit 3f7ee68
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 2 additions & 2 deletions webapp/adhoc.jsp
Expand Up @@ -91,7 +91,7 @@
" '[Store].CurrentMember.Properties(\"Store Type\")'," + nl +
" SOLVE_ORDER = 2" + nl +
" MEMBER [Measures].[ProfitPct] AS " + nl +
" 'Val((Measures.[Store Sales] - Measures.[Store Cost]) / Measures.[Store Sales])'," + nl +
" '(Measures.[Store Sales] - Measures.[Store Cost]) / Measures.[Store Sales]'," + nl +
" SOLVE_ORDER = 1, FORMAT_STRING = 'Percent'" + nl +
"SELECT" + nl +
" { [Store].[Store Name].Members} ON COLUMNS," + nl +
Expand All @@ -111,7 +111,7 @@
// #12
"WITH" + nl +
" MEMBER [Measures].[ProfitPct] AS " + nl +
" 'Val((Measures.[Store Sales] - Measures.[Store Cost]) / Measures.[Store Sales])'," + nl +
" '([Measures].[Store Sales] - [Measures].[Store Cost]) / [Measures].[Store Sales]'," + nl +
" SOLVE_ORDER = 1, FORMAT_STRING = 'Percent'" + nl +
" MEMBER [Measures].[ProfitValue] AS " + nl +
" '[Measures].[Store Sales] * [Measures].[ProfitPct]'," + nl +
Expand Down
4 changes: 4 additions & 0 deletions webapp/xmlaTest.jsp
Expand Up @@ -70,6 +70,8 @@ text-align:right;
</head>
<body>

<a href="index.jsp">back to index</a><p/>

<%
String[] requestKeys = (String[]) requestMap.keySet().toArray(new String[0]);
Arrays.sort(requestKeys);
Expand Down Expand Up @@ -160,5 +162,7 @@ text-align:right;
</table>
</form>

<a href="index.jsp">back to index</a><p/>

</body>
</html>

0 comments on commit 3f7ee68

Please sign in to comment.