I am modifying an existins custom SSRS report for Dynamics. The report gets its data from a temp table, which in turn gets its data from 2 AX queries. The report calls the temp table and the "populateData" method. I have modified the two queries to get the two new fields I need added to the report. I added the new fields to the temp table and modified the data methods to populate the two new fields to the temp table. Now the report runs but shows no data (no records returned). It all works perfectly while in Visual Studio and shows the results expected. once the report is deployed to AX the report returns no records. I have changed the Temporary property of the temp table so that I can see if the data is populating the table and it is populating. I back tracked the whole process to see where it breaks down and it seems that the actual filling of the two new fields in the temp table is where the issue arises. I can have the new fields in the queries and added to the temp table and as long as I do not call the method that populates the new fields with data, the report returns results. It is only when the data is actually populated to the temp table that the whole thing breaks down. Has anyone seen this before?
The part that really confuses me is that it works fine within Visual Studio but not once you deploy the report to AX.