CRM Dynamics 2015 “Error Uploading Report” caused by using Visual Studio 2015
When I was trying to upload a SSRS report to replace an existing report to CRM Dynamics 2015 solution, I got the error
Error Uploading Report
An error occurred while trying to add the report to Microsoft Dynamics CRM.
The error message does not say much.
I decided to use Visual Studio 2015 to edit the CRM report which has caused the issue.
I compared the code behind of the previous report and new report and found that there are new XML elements in the report generated by visual studio 2015 (SQL Server Data Tools for Visual Studio 2015). For example, “reportsections” xml tag has been inserted.
<ReportSections> <ReportSection> <Body> <ReportItems> <Tablix Name="Tablix4"> <TablixBody> <TablixColumns> <TablixColumn> <Width>3in</Width> </TablixColumn> <TablixColumn> <Width>1.5in</Width> </TablixColumn> <TablixColumn> <Width>1.5in</Width> </TablixColumn> <TablixColumn> <Width>1.5in</Width> </TablixColumn> <TablixColumn> <Width>2.0455in</Width> </TablixColumn> </TablixColumns> <TablixRows> <TablixRow>
The only option for me was to rework the report in Visual Studio 2013 (SQL Server Data Tools for Visual Studio 2013) before uploading the report to CRM dynamics solution successfully.
from reshmeeauckloo http://bit.ly/2g0X1Hv
|
You must be logged in to post a comment.