Page 1 of 1

DataBand Sorting with BusinessObjects

Posted: Thu Aug 05, 2010 12:26 pm
by DavidP
I am trying to use the Sort property on a data band which is using BusinessObject as a data source. It doesn't seem to work. Can you help ?

I'm using the latest pre-release of Reports.Net (2010.08.02 R2010)

Many thanks,

Dave Prentice

DataBand Sorting with BusinessObjects

Posted: Fri Aug 06, 2010 7:14 am
by Jan
Hello Dave,

Sorry this property don't work for Business objects.

Thank you.

DataBand Sorting with BusinessObjects

Posted: Mon Aug 09, 2010 7:22 am
by vorauler
Hello Dave

I use businessobjects within all of my report's and if I sort it I use a expression like this
in the sort section of the databand:
(txtSortierung == "Name") ? Insurant.Nachname : Insurant.Versichertennummer
It work perfect for us, but maybe I have misunterstood your question.

Ralf

DataBand Sorting with BusinessObjects

Posted: Mon Aug 09, 2010 4:03 pm
by Jan
Hello Ralf,

Yes it correct if you use RegData method for business objects. In this case report engine convert objects to dataset on the fly. So we can use standard methods to sort data. In case of using RegBusinessObject report engine use business objects directly.

Thank you.