Free SQL Server Learning - Get a six month training plan for the Accidental DBA
solving sql server problems for millions of dbas and developers since 2006


SQL Server DBA Tips SQL Server Developer Tips SQL Server Business Intelligence Tips SQL Server Career Tips SQL Server Tip Categories SQL Server Tutorials SQL Server Webcasts SQL Server Whitepapers SQL Server Tools SQL Server Questions and Answers MSSQLTips Authors About MSSQLTips SQL Server User Groups SQL Server Events I am MSSQLTips MSSQLTips Advertising Options

MSSQLTips Facebook Page MSSQLTips LinkedIn Page MSSQLTips RSS Feed MSSQLTips Pinterest Page MSSQLTips Twitter Page MSSQLTips Google+ Page




































SQL Product Highlight

Idera - SQL safe backup

SQL Server backup compression with network fault tolerance and zero impact encryption

  • Fast, compressed & encrypted SQL backup and restore
  • SQL Server backup compression of 95%
  • At least 50% faster than native SQL backups
  • Learn more!











Pass parameters and options with a URL in SQL Reporting Services

By:   |   Read Comments (13)   |   Related Tips: > Reporting Services Parameters
Problem
Reporting Services has many great built in features, but accessing them externally can be tricky. Suppose you wanted to pass a variable directly within a URL? Wouldn't it be great if you could provide a URL from a website or email that renders a report directly in Excel? Do you need to display a report (perhaps a chart) while hiding the reporting toolbar?  Let's take a look at these items as well as a few others and how you can use parameters in your URL to change the report behavior.

Solution
Follow these steps to discover various solutions to these and other issues.

Solution setup:

For this demo we will be using the same sample database I used in my tip on drill down techniques,  (Follow the instructions in the "Sample Data"  box.)


Create a new report using the VISIBILITY_EXAMPLE_TABLE as a datasource. Use the following SQL statement as the report's first dataset:

SELECT ProductCode, ProductName, ProductColor, QuantityAvailable, SupplierName, SupplierRegion
FROM VISIBILITY_EXAMPLE_TABLE





From the Layout tab, add the six fields to a new data table.



Add a second dataset to the report and call it AvailableColors.



Enter this for the SQL statement of the new dataset:

SELECT DISTINCT ProductColor
FROM VISIBILITY_EXAMPLE_TABLE
ORDER BY ProductColor

Return to the first dataset and add the following line:

WHERE ProductColor=@ProdColor

The entered dataset should look like:

SELECT ProductCode, ProductName, ProductColor, QuantityAvailable, SupplierName, SupplierRegion
FROM VISIBILITY_EXAMPLE_TABLE
WHERE ProductColor=@ProdColor


From the Report menu, select Report Parameters. In Available values, select From query, and change the Dataset to AvailableColors, and select ProductColor in both the Value and Label fieldsLeave the Default to Null. The entire Report Parameter screen should like this below:



Now save and publish the report to your Reporting Services web server. Access your report from the web server using the Report Server (not the Report Manager).

Your browser screen should look like this before clicking the report. (The name of my server is Zorro. Henceforth, replace "Zorro" with the machine name of your SQL server.) The name of my report is called "zPass_Params_with_HTML". You can name your report whatever you like.



When you first run the report, you should be prompted for a parameter:



Just to try it out, select a parameter and run the report.

As long as everything works we're ready to have some fun....

Passing the parameter entirely through HTML

Start over with your browser at the ProdColor prompt. Instead of choosing the color from the dropdown, add the following at the end of the URL:

&ProdColor=Green.

It should look like this:



DO NOT click the View Report button, but instead, click the go button in the browser. You should get the same results as if you used the dropdown within the report. This should give you the idea that you can programmatically pass parameters from another program or web site.



Controlling Report Options

So you want to hide the parameter bar by default, try adding this to the end of the URL:

&rc:Parameters=false

The full URL should look like this:

http://zorro/ReportServer/?%2fEdgewoodLab%2fzPass_Params_with_HTML&rs:Command=Render&ProdColor=Green&rc:Parameters=false

How about hiding the toolbar? Add this to the end of the URL:

&rc:Toolbar=false


Controlling Report Format (Opening Excel or Acrobat by default)

If you haven't already done it, let's roll back to the original URL.

http://zorro/ReportServer/?%2fEdgewoodLab%2fzPass_Params_with_HTML&rs:Command=Render
(Remember to replace "Zorro" with the name of your server and use whatever you named your report.)

Now add the following on the end of the URL:

&rs:Format=Excel

Try this at the end:

&rs:Format=PDF

As you can see, there are many different options for presenting your report directly from a URL. This introduction should give you a foundation to read further on this topic. There is extensive documentation in Books Online.



Next Steps
  • Try combining the &rc:Toolbar=false tip with a series of charts that you can put together in a dashboard on a web site. This can be done from a series of iframes on a standard website or from Sharepoint in Page Viewer web parts.
  • Check Books Online or Microsoft for more detailed documentation on passing parameters in a URL and other report options.
  • Take a look at these other Reporting Services tips.


Last Update: 9/24/2007

About the author

Rob has worked with SQL Server since version 6.5 as a dba, developer, report writer and data warehouse designer.

View all my tips
We Recommend


Print  
Become a paid author


Comments and Feedback:

Thursday, July 03, 2008 - 7:13:59 PM - satshivam Read The Tip

Hi This article is good and going to help me but please let me know how to pass paarameter by Querystring.... if I am using Stored procedure


Monday, October 24, 2011 - 6:21:21 AM - Noor Read The Tip

Hi ,

 

Thanks for the post.

I have one question here.

have a report and am passing parameter values in URL and able to get the result successfully in development environement but in production am not.

This is because on the Prod environment when we go into any report it asks for user credentials (At this step the link parameters get lost).

Any inputs?
Thanks in advance.

 

 


Tuesday, March 06, 2012 - 7:08:12 PM - Eliana Read The Tip

 

hi Thanks for the post, It was very helpfully for me, but what happen when one of my parameter have and & sign?

I have the parameter

CompanyName="H&P company"

How can I write my URL to represent the & sign

Thanks a lots

Eliana


Wednesday, March 14, 2012 - 5:54:31 AM - Ron Prowse Read The Tip

Eliana, try html encoding the string


Monday, March 19, 2012 - 7:23:48 PM - Sri Read The Tip

Hi,

I am still not able to get succeed, I spent already 3 hours. Is there anything I am missing to set any of the properties.

I am using VisualStiod 2008 and SQL R2.

 

Thanks,

Sri.

 


Monday, March 19, 2012 - 7:44:46 PM - Sri Read The Tip

Hi

Found out the issue, I was using Report Manager instead of ReportServer.

Thanks,

Sri.


Monday, May 21, 2012 - 8:10:32 AM - Andrew Read The Tip

Hi I am passing the following string (URL) of parameters:

http://localhost/ReportServer/Pages/ReportViewer.aspx?/praxima/rptZZ-FullPayDetails&rc:Parameters=True&rs:Command=Render&ClientName=ZZZZ&CostCentFrom=&CostCentTo=ZZZZZZZZ&EmpNameFrom=&EmpNameTo=ZZZZZZZZ&EmpNumFrom=&EmpNumTo=ZZZZZZZZ&EndDateString=31-May-2012&EntireYear=&GiveBlankOutput=&Level2From=&Level2To=ZZZZZZZZ&Level3From=&Level3To=ZZZZZZZZ&Level4From=&Level4To=ZZZZZZZZ&Level5From=&Level5To=ZZZZZZZZ&OutputSeq=Cost%20Centre/Name&ResourceTagString=Cost%20Centre/Name&StartDateString=01-May2012&StartYearString=2011&sUserId=andrewm 

But it dowesnt seem to get all the values across. i.e - if I enable the Parameters (=TRUE) I can see the values have not been carried through. This is USUALLY when I am passing to a multiselect parameters (i.e. dropdown) type (in the report.

Any ideas?

 

Thanks

 

MAC

 


Monday, May 21, 2012 - 8:16:59 AM - Andrew Read The Tip

Okay, now I am getting:

 

  • An error has occurred during report processing. (rsProcessingAborted)
    • Query execution failed for data set 'spZZR_FullPayDetailsReport'. (rsErrorExecutingCommand)
      • Conversion failed when converting the nvarchar value 'Name' to data type int.

I sent:

http://localhost/ReportServer/Pages/ReportViewer.aspx?/praxima/rptZZ-FullPayDetails&rc:Parameters=False&rs:Command=Render&ClientName=ZZZZ&CostCentFrom=&CostCentTo=ZZZZZZZZ&EmpNameFrom=&EmpNameTo=ZZZZZZZZ&EmpNumFrom=&EmpNumTo=ZZZZZZZZ&EndDateString=31-May-2012&EntireYear=No&GiveBlankOutput=Yes&Level2From=&Level2To=ZZZZZZZZ&Level3From=&Level3To=ZZZZZZZZ&Level4From=&Level4To=ZZZZZZZZ&Level5From=&Level5To=ZZZZZZZZ&OutputSeq=Name&ResourceTagString=Name&StartDateString=01-May-2012&StartYearString=01-Mar-2012&sUserId=andrewm 

 

and the 'nvarchar' it is referring to is the VALUE contained in a dropdown list that populates OutputSeq=Name !!!

 

Any ideas. It seems to be inconsistent, these errors.

 

Mac


Wednesday, August 08, 2012 - 5:27:41 PM - umut Read The Tip

Thanks for your helps.But i wanna ask something if u still alive in this subject :)...i did my report successfully.But when i open my report in android or iphone aplication wiith url mode i didnt see my report on full screen.Please help me for this..how ican i resolve this...


Thursday, October 25, 2012 - 8:13:09 AM - abhijeet Read The Tip

Thanks it worked for me....

Really helps


Monday, February 11, 2013 - 6:02:22 PM - quasar_phoenicis Read The Tip

Hi,

I have the same thing as well, pretty simple report with 4 parameters. I used the link above and filled in the value for this parameters and it works fine in dev. However, when the report is moved to prod, the last parameter value is not being passed (blank). The only difference between dev and prod is that in dev, the access is windows authentication already and in prod, user must enter credentials.

any help please?


Wednesday, February 13, 2013 - 12:31:30 PM - Lawrence Read The Tip

Hi. I setup SSRS 2005 and it's running beautifully. However, I want to change the authentication type to custom since my environment is somewhat unusual. My app uses Windows Authentication via a user account on my web server coupled with Anonymous Access. This can't change because users are being authenticated in different ways depending how they arrive at the site. I'm considering creating a web page from which to redirect authenticated users to a link to my reports and programmatically passing NetworkCredentials to the report server. Would you possibly have an example of something similar? All suggestions are welcome . Thanks in advance.


Friday, April 05, 2013 - 7:42:24 PM - Saul Read The Tip

Hi!! I know this a very old post, but I need help!! I'm traying to use RS in an ASP aplication. I undarstand all you say here but, i don't know how to acces de Server (the report server) using credentials. I mean this server is not in my localhost and obviously, I can't let the user know this credentials.


I know this is the double hop problem but i don't know how to solve it in ASP (I am a .NET programmer). 


Thnks!!!



Post a Comment or Question

Keep it clean and stay on the subject or we may delete your comment.
Your email address is not published. Required fields are marked with an asterisk (*)

*Name   *Email Notify for updates

Signup for our newsletter


Comments
*Enter Code refresh code


 
Sponsor Information
SQL Server having some performance issues? Idera SQL check. FREE SQL Server enhancement.

NEW! Top 5 hard-earned lessons of a DBA from Grant Fritchey & the DBA Team. Read it now

What grade do you think your SQL Servers get? Find out with Edgewood's Health Check consulting services.

The COMPLETE Performance Solution for SQL Server - SQL Sentry

Demystify TempDB Performance and Manageability


Copyright (c) 2006-2013 Edgewood Solutions, LLC All rights reserved
privacy | disclaimer | copyright | advertise | about
authors | contribute | feedback | giveaways | user groups
Some names and products listed are the registered trademarks of their respective owners.


Edgewood Solutions LLC | MSSharePointTips.com | MSSQLTips.com