I have created a ReportProject with Visual Studio data tools 2015. When I create a report.rdl file using the report wizard, the rdl file has schema for 2016. My reporting server is of version 12.0.4213.0.
How can I create a report.rdl which is compatible with my reporting server. I tried changing the TargetServerVersion by right clicking the project -> properties and changing the targetserverversion to "Sql server 2008 R2, 2012 or 2014". But this doesn't work either.
Replace the second row of report code that has 2016 in it, with below: HTML wouldn't post right, so < and > at the beginning and end need to be put back in.
Then locate the
ReportParametersLayout
section and remove it. Hit minus to show one line and right click and cut.The above fixed four reports converted from Crystal to version 16, when I should have selected version 10.
I wrote a simple PowerShell script that follows the ideas of the accepted answer.
Edit the first line to match your input file and the last line, save it as something.ps, run it and upload the new file.
Edit: The specific version of the report you set as the
TargetServerVersion
property gets created in the BIN (\debug or wherever you build to) folder as long as you are not using any 2016 features.I'm trying to find the same answer. You would think simply setting the solution's TargetServerVersion the way you did would cause it to use the right report definition (or optionally they could give you the option to add a pre-2016 report item)
Until then, if you right click the .rdl and "view code", you can change the following lines to make it work in SQL 2014 - just make a backup of your original .rdl in case you make a mistake:
1) Replace the report xmlns line with the following:
2) Remove the ReportSections and ReportSection lines, keeping the child tree structure body tag etc. below it). So remove these:
and these...
3) Remove the entire ReportParametersLayout section. So (e.g.) remove this:
Hit save, go back into the design and run the report. If you haven't modified the design it will work in SQL2014. The minute you change any fields it will revert to the 2016 schema.
If anyone sees a way to fix this behavior let us know. Thanks!
You can get reports in several different version formats from Visual Studio with the following steps:
TargetServerVersion
to the desired format (in this caseSQL Server 2008 R2, 2012 or 2014
)Build => OutputPath
)Try this step I found on this link and worked for me: Error while uploading a report