Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Aura divider
summaryAura Divider
paramsJTdCJTIydHlwZSUyMiUzQSUyMmljb24lMjIlMkMlMjJzdHlsZSUyMiUzQSU3QiUyMmFsaWdubWVudCUyMiUzQSU3QiUyMmhvcml6b250YWwlMjIlM0ElMjJjZW50ZXIlMjIlN0QlMkMlMjJpY29uJTIyJTNBJTdCJTIybmFtZSUyMiUzQSUyMmJ1Zy1zbGFzaCUyMiUyQyUyMmNvbG9yJTIyJTNBJTdCJTIybGlnaHQlMjIlM0ElMjIlMjMzMzMlMjIlMkMlMjJkYXJrJTIyJTNBJTIyJTIzZGRkJTIyJTdEJTJDJTIyc2l6ZSUyMiUzQTE4JTdEJTJDJTIydGV4dCUyMiUzQSU3QiUyMmNvbG9yJTIyJTNBJTdCJTIybGlnaHQlMjIlM0ElMjIlMjMzMzMlMjIlMkMlMjJkYXJrJTIyJTNBJTIyJTIzZGRkJTIyJTdEJTJDJTIyZm9udFNpemUlMjIlM0ExNCUyQyUyMnRleHRBbGlnbiUyMiUzQSUyMmxlZnQlMjIlMkMlMjJmb250V2VpZ2h0JTIyJTNBJTIyYm9sZCUyMiUyQyUyMnRleHQlMjIlM0ElMjJBdXJhJTIwRGl2aWRlciUyMiU3RCUyQyUyMmJvcmRlciUyMiUzQSU3QiUyMnRvcCUyMiUzQWZhbHNlJTJDJTIycmlnaHQlMjIlM0FmYWxzZSUyQyUyMmJvdHRvbSUyMiUzQXRydWUlMkMlMjJsZWZ0JTIyJTNBZmFsc2UlMkMlMjJjb2xvciUyMiUzQSU3QiUyMmxpZ2h0JTIyJTNBJTIyJTIzMzMzJTIyJTJDJTIyZGFyayUyMiUzQSUyMiUyM2RkZCUyMiU3RCUyQyUyMnN0eWxlJTIyJTNBJTIyc29saWQlMjIlMkMlMjJ3aWR0aCUyMiUzQTElN0QlMkMlMjJzaXplJTIyJTNBJTdCJTdEJTdEJTdE
  1. #883: Trace Calculation Unreadable When Rules are "Large"

  2. #877: Drill on Member for Nested Rows does not Work

  3. #874: Filters periodically don't populate

  4. #873: Filterbar submit button does not work

  5. #867: Cannot save public view as DataAdmin in the cube viewer

  6. #853: Cannot input the sign = in a string cell

  7. #821: Can you remove Column sorting

  8. #814: Default Spreading Prefix: Repeat not working when spread from 0 consolidations

  9. #543: Search box not filtering properly w/ row span

  10. Cube Viewer: Correct value not saved in the mdx after subset update of the global filter

  11. Upload from excel doesn't work correctly with widget filters

  12. Empty view retrieved: issue with the mdx containing "undefined"

#877: Note on updated Syntax for stacking dimensions (with MDX)

As part of the recent bug fixes, a new syntax must be followed when stacking dimensions on rows/columns and defining elements using MDX. The syntax changes ensure that the app correctly handles expand and collapse actions. Here are the key points to consider:

Placeholders for Expand/Collapse Behavior:

  1. When using MDX to define elements and stack dimensions, you must wrap the element definition portion of the MDX within $<<start>> and $<<end>> placeholders. These placeholders tell the app where expand and collapse actions can occur.

  2. Any other MDX outside of the element definition (e.g., filters) can remain outside the placeholders.

Defining Elements Row by Row:

  1. If you are defining elements row by row (i.e., explicitly listing individual combinations of dimension members), in addition to wrapping the element definition with $<<start>> and $<<end>>, you must wrap the commas separating rows in $<<,>>. This is necessary to ensure that the app processes each row as a distinct combination of members.

Example:

Code Block
{$<<start>>
{[Year].[Year].[2015]} * {[Region].[Region].[World]}$<<,>>
{[Year].[Year].[2016]} * {[Region].[Region].[America]}$<<,>>
{[Year].[Year].[2017]} * {[Region].[Region].[EMEA]}
$<<end>>}