SSRS - I can't pass the parameter via URL to the report

  • Hello,

    My problem is to take the parameter from a URL and run the reporting services via a procedure

    I have the procedure setup, I have the dataset setup and when I run the dataset it ask for the

    parameter and work fine, but when I run it from the web page passing the parameter it won't take it

    my URL is like this:

    Response.Redirect("http://localhost/ReportServer?%Portfolio&rs:Command=Render&rs:parameters=" + @portfolio);

    it shows the correct parameter at the web browser but don't pass it to the procedure

    what I'm doing wrong??

    help please

    thanks

    Nelson

  • Is the parameter you're sending multi-select, and does its available values depend on another parameter? If so, set the default value of the parameter to non-queried, with a value of something that it could never be. If you have other cascading parameters, make sure you have default values set so that the browser knows what to send when it gets the command from your app.

    Hope this helps.

  • Is your report configured to use the incoming parameter? Is your data source configured to use the mapped report param?

  • yes and thanks I got it, it's working fine now

    thanks

Viewing 4 posts - 1 through 3 (of 3 total)

You must be logged in to reply to this topic. Login to reply