Anyway I can add a ssrs report description that displays in the report before execution? I Googled and most people said its not possible but there has to be a way to tweak it right?
相关问题
- sql execution latency when assign to a variable
- What is the best way to cache a table from a (SQL)
- php PDO::FETCH_ASSOC doesnt detect select after ba
- Bulk update SQL Server C#
- SQL to Parse a Key-Value String
相关文章
- Entity Framework 4.3.1 failing to create (/open) a
- Code for inserting data into SQL Server database u
- Delete Every Alternate Row in SQL
- Linux based PHP install connecting to MsSQL Server
- SQL Azure Reset autoincrement
- How do we alias a Sql Server instance name used in
- Is recursion good in SQL Server?
- How can I convert a OLE Automation Date value to a
Have you tried adding a description on the deployed report on the report server? Right click on the deployed report on the report server and click manage. In here there is a place to add a report description on how to run it and any text you want to enter
There is a way to look at Description before you "Deploy" or "Execute" your report. In your report builder/visual studio (whichever tool you're using), you should be able to
right click
your report andGo to Code
to see report description if you search for<Description>
tag.If you do not see it, you can simply insert one. Reason to set description here instead of Report Manager is re-deploying your report will not overwrite the description since it is already part of your report. Plus, you get to see it before deploying or executing your report.
What exactly do you mean? If you do not execute the report you will not see the reports, so you will not see anything at all.
But Reports have a DESCRIPTION property. This is some text that is part of the reports meta information and visible in the list of reports in the report manager.
For anyone who still needs to add a report description that users can read before executing the report, I have seen this feature in both SSRS versions I have used (2008 and 2016). The Report Properties has a Description field, which users can read when accessing the web portal in either view (Tiles or Details/List).
You administrate the Description field configuration from various locations-- web portal, Report Manager, or Visual Studio. I prefer Visual Studio for its version control abilities.
In visual studio... With the report open, click in the spaces outside of the report objects (header, tablix, ect). In the Report Properties window go to Description and enter the description. Deploy the report.
In report manager... https://msdn.microsoft.com/en-us/library/ms156032(v=sql.120).aspx
On the report portal... Simply go to the report, click manage, properties, description.
There are two things you can do to show the report description.
Add a
textbox
to yourReport header
and useexpression
to show text in that text box which gives some sort of description.Right Click your data region go to
tablix properties
and there useExpression in ToolTip
section to show report description. This will be shown when user hover mouse over report.The reason I have advised to use expressions in your textbox or tooltip is because if report has multiple parameters and you want the report description to be dynamic then you can use expressions to make it dynamic and it will change depending on the values of the parameters.
But if it is a static report which always show same type of data then you can simply use hard coded text in these two places to show the report description.
Also:
This will display the information as it will execute first parameter before whole report will be executed.