You are developing a SQL Server 2008 Reporting Services (SSRS) instance for
Company.com.
In order to keep all reports render to Microsoft Excel only, you should compile the items,
which are contained in the <Extension> subelement of the <Render> element in the
RSReportServer.config file.
Which is the correct answer below?
A.
You should set the value of the Type attribute to render where the value of the Name
attribute is equal to EXCEL.
B.
You should set the value of the visible attribute to false where the value of the Name
attribute is not equal to EXCEL.
C.
You should set the value of the Type attribute to prevent where the value of the Name
attribute is not equal to EXCEL.
D.
You should add an OverrideNames subelement to the extension element where the value
of the Name attribute is not equal to EXCEL.
Explanation:
Example: Limiting the List of Report Rendering Options A common configuration
setting in RSReportServer.config is to limit the user choices for the report rendering. For
example,
if you wanted to exclude Microsoft Office Word as a choice for rendering reports, you would
look for the entries under the <Render> tag in the XML .config file to find the following line:
<Extension Name=”WORD”
Type=”Microsoft.ReportingServices.Rendering.WordRenderer.WordRenderer,
Microsoft.ReportingServices.WordRendering”/>
To turn off Word in the rendering options, you would add a Visible=”false” entry to the line,
like this:
<Extension Name=”WORD”
Type=”Microsoft.ReportingServices.Rendering.WordRenderer.WordRenderer,
Microsoft.ReportingServices.WordRendering” Visible=”false”/>