Just when I thought I've seen all the problems that could happen.... Crystal Reports Visual Studio 2013. A launcher program (vb.net) creates the database tables used in the Report (rpt). I select customer ! and get the report. I select another customer, get customer 1. It doesn't matter what I select, the report is the same. The database (Views) is correct. So I moved the application to another computer. I get the report from customer 1, even though that customer data is not on that computer. Is something building the results of the report into the code? Has anyone seen anything like that?
Program Flow:
* delete Report Title view file if exists.
- create Report Title view
* delete Base data view file if exists.
- create Base data view
* delete Details view file if exists.
- create Details view from information in Base data view
I'm suspecting that the application is instructing SQL Server to perform the Delete and Create tasks serially, however SQL Server is not processing them in serial but in multi-task mode. My other reports which are more simple in creating Views, are working fine.
Let me know if you need additional information. Thanks