Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 SQL Server 2005 Forums
 Analysis Server and Reporting Services (2005)
 URL Parameters being ignored

Author  Topic 

chasingvertigo
Starting Member

5 Posts

Posted - 2011-01-13 : 14:41:06
On my business's Reporting Services 2005 server I have a report which has one parameter, username (prompt and parameter name are the same). When I try to run the report from Reporting services, specifying the username parameter, it ignores it, and leaves me at the normal report view screen.

Here's the URL I'm running, I've tried a few variations, but nothing seems to make any difference:
http://reportsserver/Reports/Pages/Report.aspx?ItemPath=%2fTests%2fTestReport&rs:Command=Render&rs:Format=HTML4.0&rc:Parameters=false&username=chasingvertigo

Can anyone provide direction as to why the report URL parameters are being ignored?

visakh16
Very Important crosS Applying yaK Herder

52326 Posts

Posted - 2011-01-16 : 06:21:11
why are you passing rc:Parameters=false? This will prevent the parameters from being passed in the browser . remove it and try like

http://reportsserver/Reports/Pages/Report.aspx?ItemPath=%2fTests%2fTestReport&username=chasingvertigo&rs:Command=Render&rs:Format=HTML4.0

------------------------------------------------------------------------------------------------------
SQL Server MVP
http://visakhm.blogspot.com/

Go to Top of Page
   

- Advertisement -