I am using Report Builder 3.0 to create some reports for the application. I use the report builder because I would like the client to be able to customize reports as needed in the future. Now when I edit the report in Visual Studio (which uses Business Intelligence Development Studio), I can set the properties for the report. Thus, I can set the language for the report, which is important to ensure that all date / date formats are displayed correctly, since my client is in France and they are fussy about this kind of thing. Setting the language adds an element to the xml report as follows:
</ReportParameters>
<Language>=User!Language</Language>
<rd:ReportUnitType>Mm</rd:ReportUnitType>
<rd:ReportServerUrl>http://localhost/reportserver_sql2008r2</rd:ReportServerUrl>
<rd:ReportID>24c58c7f-2a6a-4f68-878d-d26d97bb16e8</rd:ReportID>
</Report>
How to access report properties and, in particular, report language in the report builder?
Thank,
Patrick Collins
source
share