The question came up today, “How do I write my report so that the current member of the Time dimension is the most recent member for which transactional data are loaded?”

It’s a good question, and comes up often. Let’s look at some ways that you could solve it.

Attempt #1: CurrentDateMember

One might think that ‘today’ would suffice (using Mondrian’s CurrentDateMember MDX function), but since many enterprises only run the ETL process overnight, it isn’t always the right answer. Some nights (gasp!) the ETL process fails, so even ‘yesterday’ may not be right answer.

Attempt #2: defaultMember

The default member of a hierarchy is its ‘all’ member, or if there is no ‘all’ member, the first member of the first level. Mondrian allows you to change the default member in the schema file using the defaultMember XML attribute. To do this for the Time hierarchy, you’d write the following:

<Dimension name="Time" type="TimeDimension">
  <Hierarchy defaultMember="[Time].[2010].[10].[07]" hasAll="false" primarykey="time_id">
    ...

You’d have to find some way to re-generate the schema XML file each time a load was successful (or use a DynamicSchemaProcessor to generate a schema on the fly, substituting a template schema that contains a token for the default member). But I wouldn’t recommend this approach. Default members of hierarchies don’t just affect what appears on the screen; they are the default context for all MDX calculations (where the calculation isn’t explicitly set in the formula), and so all calculations will change every time you reload your data warehouse. This probably isn’t what your users want.

Attempt #3: Parameter

Define each of your reports with a parameter that holds the initial member of the time hierarchy for that report. Use some kind of scripting (say a custom piece of JavaScript inside Pentaho’s CDF, or a Pentaho action sequence) to populate that parameter as the report is launched.

This approach is on the right track, but isn’t quite perfect. This will give the your users what they want, but you will have to maintain a piece of script for every report you define.

Attempt #4: Parameter with MDX expression as default value

This improves on attempt #3 by putting the expression to initialize the parameter inside the definition of the parameter. You don’t need to provide a value of the parameter when you launch the report (unless you want to), and that means you don’t need to write those pesky scripts.

Although the question called for “the most recent [Time] member for which transactional data are loaded”, I’m going to drive home the point with an example that qualifies on another dimension as well. This query will launch with the most recent month for which anyone in the town of Bellflower, California bought Good beer.

select [Measures].[Unit Sales] on 0,
  [Product].Children on 1<br/>from [Sales]
where Parameter("Time period of interest", [Time],
  Tail(
    {[Time],
      Filter([Time].[Month].Members,
        0 < ([Customers].[USA].[CA].[Bellflower],
           [Product].[Drink].[Alcoholic Beverages].[Beer and Wine].[Beer].[Good]))},
    1),
  "Time period of interest for current analysis. By default the most recent month for which transactions exist.")

Filter evaluates the sames of Good beer in Bellflower every month and throws out months where no Good beer was sold, and Tail chooses the last. The dummy first element {[Time], ... } is to ensure that if the residents of Bellflower have never bought Good beer, the report still launches with a valid member of the time dimension.

The results are as follows:

|                | Unit Sales |
+----------------+------------+
| Drink          |      2,344 |
| Food           |     18,278 |
| Non-Consumable |      4,648 |

and the member in the slicer is [Time].[1997].[11]. (Yes, it’s a long time since the unfortunate residents of Bellflower drank Good beer.) This report doesn’t contain a great deal of detail, but it can be used as a starting point for an series of slice, dice and pivot operations to interactively explore the data, and the same Time member will be carried forward until the user decides to switch to another time.

Attempt #5. Schema parameters

I stopped looking for a solution when I had written the above query in attempt #4, but schema parameters are potentially even better. Schema parameters are little-known Mondrian feature that allow you define a parameter once in a schema file, then reference it in any report written against that schema.

I haven’t tried it, but the solution would look something like the following. To define the parameter, include the following in your schema file:

<Parameter defaultvalue="Tail({ [Time], Filter([Time].[Month].Members, 0 &lt; ([Customers].[USA].[CA].[Bellflower], [Product].[Drink].[Alcoholic Beverages].[Beer and Wine].[Beer].[Good])) }, 1)"
    name="Time period of interest"
    type="Member"/>

and reference the parameter in an MDX query using ParamRef:

select [Measures].[Unit Sales] on 0,
  [Product].Children on 1
from [Sales]
where ParamRef("Time period of interest")

Other solutions?

As you can see there are many ways to attack a problem using Mondrian, Pentaho and MDX. Do you know other techniques to solve this problem? Let me know.