I am working with Report Server 2005 and am trying to create an http URL that will render in a PDF that will provide a link back to the report. I have been able to get the following to work without passing report parameters:
But what I really want is to be able to add a couple of parameters to it and get something like this to work:
This would be used as a "Jump to URL" in the "Action" property of a textbox.
Anybody got any ideas?
Code:
"[URL unfurl="true"]http://mcsql/Reports/Pages/Report.aspx?ItemPath=%2fRS+Reports%2fMonthly+MAT+Sales+by+REP"[/URL]
But what I really want is to be able to add a couple of parameters to it and get something like this to work:
Code:
="[URL unfurl="true"]http://mcsql/Reports/Pages/Report.aspx?ItemPath=%2fRS+Reports%2fMonthly+MAT+Sales+by+REP&Workdate="+Parameters!WorkDate.Value+"&ShowCOGS="+Parameters!ShowCOGS.Value[/URL]
This would be used as a "Jump to URL" in the "Action" property of a textbox.
Anybody got any ideas?