I am having some trouble with a Birt report and I don't seem to be able to sort it out. To me it looks as if this might be a Birt limitation, so I'm asking here. If it is, I can stop breaking my head on this:
- I have a Data Set "A" that contains one column called "metadata" of type "Java Object"
- I have a second Data Set "B", which is a sub-query, that binds to the "metadata" column of Data Set "A". B itself again has a colum called "affected" of type "Java Object"
- In my third Data Set "C" I bind to the "affected" column of Data Set "B" and has a column named "family" of type "Java Object"
What I find particularly strange here, is that I can see the value for family being retrieved correctly in the debugger, but if I try to access it, it's always null. If I however set the type of the column to String, I get a non-null value. So is there any reason, why Birt is doing this?
Chris