Apr 26 2012

ASUG Call For Speakers Extended to May 11

Categories: Conferences Dave Rathbun @ 3:29 pm

This year is really tough, with our conference being earlier in the year than previously. But with ASUG Annual Conference / SAPPHIRE in ramp-up mode, it seems that the number of abstracts coming in is running behind the schedule that was expected. As a result, the deadline for submissions has been extended to May 11th. One of the tracks that has the fewest submissions so far is the Semantic Layer! (Oh, wait, I have not submitted any ideas of my own yet… :oops:) Mobile is another area that should be very popular but needs more submissions, so if you have a fun / interesting / frustrating / enlightening story to share in either of these areas, please consider submitting an abstract.


Apr 11 2012

ASUG Call For Speakers Goes Live

Categories: Conferences Dave Rathbun @ 11:42 am

The call for speakers for the 2012 fall Business Objects conference in Orlando is live now. The window for submitting abstract ideas is smaller than in previous years, primarily because the conference is in September this year. The process of getting, reviewing, and selecting the final sessions will also be done on a tighter time frame. Remember that speakers get a free pass to the event, so even if it takes ten hours or so to create your presentation that’s still like earning $150 an hour. 😉

ASUG Call for Presentations, 2012 Fall Business Objects (SBOUC) conference


Apr 10 2012

And Now For Something Completely Different

Categories: General Dave Rathbun @ 11:01 pm

Just a random image from one of my favorite online comics:

I think I’m going to try this in my next presentation. 😎


Apr 03 2012

Projection Function Automatic Update Process Irritation

Categories: Universe Design Dave Rathbun @ 10:23 am

I have known for years that using the “Tables” button on a universe object can be problematic. The technique is designed to allow a developer to include extra tables in an object definition without directly referencing them in the select statement. This could be done for a number of reasons, and it’s one of the reasons I designed the time-sliced solution the way I did, just to avoid this table update issue.

Recently I discovered the same “feature” is present in the measure projection function assignment logic as well. I wrote about how important it is to properly coordinate the SQL aggregate and the projection function some time back. I have also talked about how the database delegated projection function works. This week I had the need to create a whole set of database delegated measures, which went fine. Then later I had to update the SQL statement for these measures to correct for a divide by zero issue. After publishing I went back and checked, and every single one of these measures (about 90 of them) were reset back to a Sum projection function. 😡

It seems that the projection function works the same way that the tables button does. Every time I touch this object, I will have to remember to reset the projection function. To avoid that, I used the @Select() function for all of the time sliced objects and had them reference the base measure object, which was itself using the @Select() function to reference a measure “bit” object. I wasn’t sure I could nest one @Select() inside of another, and I was actually fairly certain I had tried that before. But apparently in 3.1 it works now.

My time-sliced objects generally have this formula:
Base Object: Sum(@Select(Measure Bit))
Time Slice Object: Sum(@Select(Measure Bit)) * @Select(Time Slice Bit)

Now I’ve done this:
Base Object: Sum(Select(Measure Bit))
Time Slice Object: Select(Base Object) * @Select(Time Slice Bit)

Notice that in the second case there is no Sum() function on the time slice object? That’s because there already is one in the base object, and I cannot nest aggregate functions. But nesting @Select() seems to work okay.

The bottom line is that there are certain automatic features of the universe designer software that I wish I could turn off. Most of the time they’re fine, but when they keep resetting important items on object definitions, and do so without notifying me that they’re doing it, that’s irritating.