In SQL Server 2012 Reporting Services, the default Word renderer is the version that renders to the native format of Microsoft Word 2007-2010. This is the Word option that the Export menus in Report Manager and SharePoint list. The earlier version, compatible only with Microsoft Word 2003, is now named Word 2003 and is listed on menus using that name. The Word 2003 menu option is not visible by default, but an administrator can make it visible by updating the RSReportServer configuration file. To export reports from SQL Server Data Tools (SSDT) using the Word 2003 renderer, you update the RSReportDesigner configuration file. However, making the Word 2003 renderer visible does not make it available in all scenarios. Because the RSReportServer configuration file resides on the report server, the tools or products from where you export reports must be connected to a report server to read the configuration file. If you use tools or products in disconnected or local mode, making the Word 2003 renderer visible has no effect. The Word 2003 menu option remains unavailable. If you make the Word 2003 renderer visible in the RSReportDesigner configuration file, the Word 2003 menu option is always available in SQL Server Data Tools (SSDT) report preview.
The Word 2003 menu option is never visible in the following scenarios:
If the Word 2003 renderer is configured to be visible, both the Word and Word 2003 menu options are available in the following scenarios:
-
Report Manager when Reporting Services is installed in native mode.
-
SharePoint site when Reporting Services is installed in SharePoint integrated mode.
-
SQL Server Data Tools (SSDT) and you preview reports.
-
Report Builder connected to a report server. This can be a ClickOnce or stand-alone version of Report Builder.
-
The Report Viewer Web Part in remote mode.
The following XML shows the elements for the two Word rendering extensions in the RSReportServer and RSReportDesigner configuration files:
<Extension Name="WORDOPENXML" Type="Microsoft.ReportingServices.Rendering.WordRenderer.WordOpenXmlRenderer.WordOpenXmlDocumentRenderer,Microsoft.ReportingServices.WordRendering"/>
<Extension Name="WORD" Type="Microsoft.ReportingServices.Rendering.WordRenderer.WordDocumentRenderer,Microsoft.ReportingServices.WordRendering" Visible="false"/>
The WORDOPENXML extension defines the Word renderer for Microsoft Word 2007-2010. The WORD extension defines the Microsoft Word 2003 version. Visible = “false” indicates the Word 2003 renderer is hidden. For more information, see RSReportServer Configuration File and RSReportDesigner Configuration File.
Back to Top