I'm trying to use a business objects as a my datasource for the report, setting the appropriate values using the regData method. Everything works fine, except that I can only get it to work on a single datasource.
I'm using the following pattern:
Code: Select all
report.Load(filename); // filename was set earlier
report.RegData("ListData", ListData); // List
report.RegData("GlobalInfo", GlobalInfo); Single BusinessObject
StiWebviewer1.Report = report;