How to Hide Help Menu in SSRS 2017 - reporting-services

is there any way to hide Help ( ? ) menu in SSRS 2017 Report Manager. Please see the screenshot

Currently, there is no option to hide Help Menu is SSRS 2017 Report Manager.
Everyone – Please vote to this suggestion so that product team could consider this request in upcoming release of SSRS.
https://feedback.azure.com/forums/908035-sql-server/suggestions/38452366-hide-help-menu-in-ssrs-2017

Related

MHTML Links in SSRS report Subscription Do not work

I'm hoping someone can help me with this question. I'm using SQL Server 2019, SSRS 2019, developing reports in Visual Studio 2019.
I've created SSRS subscriptions using the MHTML format so I can have show a report in the body of the email. The report is a dashboard with charts that link to sub reports. When the emails are sent recipients can hover over the charts and see the link path, and instructions telling them to select link to open report. However, selecting any of the links only opens SSRS home page.
I don't know why this is not working. Can anyone offer some advice?
Per Alan Schofield below Adding URL
http://sedona/Reports?%2FMIS%2FCopy%20of%20QuickTest&acctnbr=654321&rs%3AParameterLanguage=&rc%3AParameters=Collapsed
So, the root cause of tis problem was the URLRoot setting in rsconfig did not match the web service url. Changing the URLRoot setting resolved the linking problem. Alan Schofield, thankyou for your help and suggestions. Your comments put us on the right path to resolution.
If it helps anyone, I referenced the following about URLRoot
Edit URL Link to Report Server within SSRS Subscription

SQL Server 2014 Reporting Services : hiding a menu

SSRS 2014, on the report portal website: how do I hide the menu bar circled in red on the attached screenshot? When I send a report URL to a user, I do not want to give them the ability to click on and navigate to any of the parent folders.
SSRS-Menu
The obvious solution would be to setup security on your reports so users cannot access the other reports, but in answer to your question, you can use the following format.
http://myservername/ReportServer/Pages/ReportViewer.aspx?%2fMYREPORTFOLDER%2fMYREPORTNAME&rs:Command=Render
notice that we use /ReportServer/ rather than the usual /Reports/

SSRS Show Toolbar on drill down sub report

I have a dashboard SSRS report in embedded in another web app.
In this report there are drill down reports(too many).
By default I set rc:stylesheet=hideToolbar for this main report. So the toolbar is hidden.
Now we want to show the Toolbar on specific drill down reports(not all of them).
Is there a way to do this?
I have tried to create a new stylesheet but as I'm not able to change rc:stylesheet parameter when I'm calling the drilldown report it doesn't work.
I understand what you are trying to do and know that this is achievable through custom stylesheets as well alternatively via a custom SSRS Toolbar UI (via old 2005/2010 mgmt and Execution SOAP SSRS APIs*).
But that may be way overkill for your situation.
My best suggestion with the current out-of-box behavior of SSRS as of MSSQL 2019 (applies to 2016 as well) would be to create a custom link or imageLink inside those subreports that you want to have an SSRS Toolbar for which then either pops up a small new browser window above the main report (or on a new tab) with the subreport- and per default SSRS behavior the toolbar will be there, or, if you want to be explicit you can add the SSRS qs param "&rc:Toolbar=true" to that link.
I have actually used both approaches on projects. It really depends on the requirements, priority and time ya know?
Let me know if I can try to further help in any way if anything I shared was useful.
*here is a similar solution to your kind of problem (the SSRS REST API v1 and v2 can do many things but not as much as the old SOAP APIs could): How to export SSRS 2017 report using REST API

How to bring the SSRS reports developed to EPICOR?

I'm new to EPICOR. I have developed a report in SQL Server Report Builder. How can I view this report in my EPICOR account? How does it link?
Thanks In advance
Niki
You can upload your report rdl file in Custom Reports folder.
And then create a menu in Epicor, select the Program Type as SSRS Custom Report link and give URL Path to your report.
Hope it helps!

Implementing a suggestion box in SSRS for a parameter

I have a dropdown in SSRS report which has more than 2000 values, but I want to have a suggestion box instead of dropdown. so when user enters something in that parameter box suggestions should come.
I believe you have to write custom report viewer application, as far as I know vanilla SSRS viewer does not allow suggestions.