To Hide Data Feed icon in Report Manager for Reporting services 2008 R2

Hi ,
This is a Strange Requirement which my client asked me whether its achievable to Hide the Data feed icon shown in the ReportManager..As directed by my PM I said i will check it out and let you know..No commitments to client JLT is an advise to me by my PM .

Here is how you can achieve this.

1. Navigate to
:\Program Files\Microsoft SQL Server\MSRS10_50.\Reporting Services\Report Server\Styles

2. Copy the “HtmlViewer.css” file and paste in the same folder.

Rename the copy to “MyHtmlViewer.css”.

3. Open “MyHtmlViewer.css”, find the section

.ToolbarAtomDataFeed

{

display: inline;

}

Change it to

.ToolbarAtomDataFeed

{

display: none;

}

Save the file.

4. Navigate to

:\Program Files\Microsoft SQL Server\MSRS10_50.\Reporting Services\ReportServer

5. Backup and then open the file “RSReportServer.config”

6. Insert the following XML below under the node

MyHtmlViewer

Save the file.

On the same lines we can also Hide Export, Print and Refresh Buttons from the SSRS Toolbar.