or
{
reportTable.DataSource = Data;
ReportProcessor
reportProcessor = new ReportProcessor();
return new MemoryStream(
reportProcessor.RenderReport(reportRequest.Format.ToString().ToUpper(),
this, new Hashtable())
.DocumentBytes);
}
""An error has occurred while processing Report 'Report':
Invalid URI: The format of the URI could not be determined.""
Also it is not firing reportTable_ItemDataBinding event.reportTable.ItemDataBinding +=
new EventHandler(reportTable_ItemDataBinding);
Please help. If you need specific more detail, please let me know.

[DataObjectMethod(DataObjectMethodType.Select)] public ReportOrderDetail GetReportOrderDetail(){.....Right now I have a working report with the data source set to a user object. However I would like to show this report multiple times inside one report with the datasource set to a dynamic collection of user objects. What would be the best solution for this?
Thanks
Chris