I'm trying to pass a parameter to an SSRS report via a URL. This is so I can extend the functionality of one of my other reports.
I've read many things on SO and forums but nothing has worked so far.
This is my URL http://servername/ReportServer/Pages/Report.aspx?ItemPath=%2fSSRS_New2%2fStatusHistory&enrolmentNumber=11111
When the URL is entered, the report page will show, however the parameter will not be populated.
I've tried:
setting the parameter to hidden, but it simply gives an error that there was no parameter entered
changing Report.aspx? to ReportViewer.aspx? but this only renders a 404 error.
changing from this
http://servername/ReportServer?/SSRS_New2/StatusHistory&enrolmentNumber=11111 which only results in sending me back to the root folder of my reports server
I'm purposefully only testing the URL at this stage and will implement into another report if I can get it working.
I'm now very confused as to what I can do. Can anyone please give any guidance on the correct way to write the URL?