sql server reporting services:
Use Jump to URL instead of jump to report. You have full control over the
URL which includes collapsing or not the parameter area. Read up on URL
integration on Books Online. One option for this is that you can if you want
open up a new window. Then they can just shut down the window when they are
done. Some examples for you of Jump to URL
Jump to URL gives you more control than jump to report.
For the first two examples be careful with the single and double quotes.
Here is an example of a Jump to URL link I use. This causes Excel to come up
with the data in a separate window:
="javascript:void(window.open('" & Globals!ReportServerUrl &
"?/SomeFolder/SomeReport&ParamName=" & Parameters!ParamName.Value &
"&rs:Format=Excel','_blank'))"
This comes up as html (default format) in a separate window
="javascript:void(window.open('" & Globals!ReportServerUrl &
"?/SomeFolder/SomeReport&ParamName=" &
Parameters!ParamName.Value','_blank'))"
If you don't want to have it appear in a new window then do this in jump to
URL:
=Globals!ReportServerUrl & "?/SomeFolder/SomeReport&ParamName=" &
Parameters!ParamName.Value
As far as not using the IE back button? Not sure why that is a requirement.
Pretty much everyone know how to do that and if they don't you would have to
train them for an alternative method so train them about the back button.
--
Bruce Loehle-Conger
MVP SQL Server Reporting Services
[quoted text, click to view] <trevor.howe@engenoil.com> wrote in message
news:1191587402.088348.21130@r29g2000hsg.googlegroups.com...
> Hi
>
> I am using a jump through report action to call a sub report. The main
> report has the paramters displayed but for the sub report the section
> where the parameters are displayed is collapsed. Is there a way to
> change this behaviour for the second report, my users will want to
> know where the parameters are.
>
> A second question, how to you go back to the first report without
> coding another jump to report action. In the development environment
> (visual studio) there is a nice blue button that you can use to go
> back. Once again my users will not want to use the back button on
> internet explorer.
>
> I am using SQL 2005 RS with service pack 2 and am displaying the
> reports via report viewer control.
>
> Thanks
>