#ERROR# The expression contains object 'BankEmployeeName_A' that is not defined in the current context.
Why doesn't it find the field? I set a breakpoint in the ItemDataBinding event handler and the report's datasource property does in fact contain this field within the targeted datamember (datatable). Am I missing something?
I am only using the typed dataset for design-time--I will be returning the exact same result set from an Oracle stored procedure and I don't want to use typed datasets for this purpose. Theoretically, this scenario should work perfectly, and in fact, is the way in which we were binding all of our Crystal Reports report objects previously.
Any ideas on why this isn't working??
Thanks,
Larkin
TR.BS_TrackingDataSet1TableAdapters.
Subpoena_OrdersTableAdapter s = new TR.BS_TrackingDataSet1TableAdapters.Subpoena_OrdersTableAdapter();
TR.
BS_TrackingDataSet1.Subpoena_OrdersDataTable t = new TR.BS_TrackingDataSet1.Subpoena_OrdersDataTable();
t = s._Get(4);
TR.
Report3 r = new TR.Report3();
r.DataSource = t;
rvFTBReport.Report = r;
rvFTBReport.DataBind();

'WriteToFile(Server.MapPath("~\temp\" & fileName), reportBytes)
Perhaps this is what I am looking for, but I don't understand how to implement it.
Regards,
Andy.