Chart with parameters in SSRS 2012

Hello,
  I want to do a chart (line chart particularly, but I will take an answer for any chart as they all probably work similarly) with one parameter passed (hospitalid) and two values returned (BedDays and MonthYear).  MonthYear is how the horizontal
line is divided, by each month, and the BedDays should be the number of patient stays in beds in that month.  Doesn't matter if it's sum of bed days or bed days, because a sum is made in the stored procedure, and MonthYear is unique.
  I have spend a few days on this problem, working a lot on it, and I keep running into errors, trying various methods.  I don't know where all my errors could be coming from, it could be in the aspx, it could be in the report design, or it could
be in the code behind, so I am hoping someone can give me a step by step solution to this problem which should be simple, but apparently is not because there is no worthwhile help that I can find on the internet.  It should work for SSRS 2012, I do not
have a choice of using an earlier version for this project.  Please include everything I need to do in the report GUI, in the aspx file, and in the code behind, as any little error in any of these could keep this from working and make it very difficult
for me to pinpoint what is going wrong.
  Please help!

I'm using Visual Studio 2013.  According to what I read, there is no report preview in newer versions?
I created a report and then added a line chart.
I used my connection and under Data Set Name I put: AllevantReportDataSetB
Under Choose the Dataset, I selected AllevantReportDataSetB as the data source. 
For "Name" I chose DataSetB
The stored procedure works (that is all you need to know, because the inner detail shouldn't make a difference), and when a parameter @facilityid is passed to it, it returns a table with the first column named MonthYear which is a date of all of the months,
years, and the first of each month from the beginning to end of the data - and the second column is BedDays, the number of total stays in a bed for all of the patients at the facility.
In Category groups, I have MonthYear, and in Values I have BedDays (actually [Sum(BedDays)], but the sum shouldn't matter, because the MonthYears are unique so there is only one MonthYear, there is not more than one of the same month in the whole data set)
My .aspx is the following:
<rsweb:ReportViewer ID="ReportViewer1"
runat="server"
ProcessingMode="Remote"
Font-Names="Verdana"
Font-Size="8pt"
InteractiveDeviceInfos="(Collection)"
WaitMessageFont-Names="Verdana"
WaitMessageFont-Size="14pt"
Width="95%"
Height="99%" ShowDocumentMapButton="False"
ShowPromptAreaButton="False" Visible="true">
<LocalReport ReportEmbeddedResource="MySolution.Report5.rdlc">
<DataSources>
<rsweb:ReportDataSource DataSourceId="Report1DataSource" Name="DataSetB" />
</DataSources>
</LocalReport>
</rsweb:ReportViewer>
And my VB code behind is the following:
Protected Function GetReportDataTable() As DataTable
Dim Conn As New SqlConnection(ConfigurationManager.ConnectionStrings("sql").ToString)
Dim Command As New SqlCommand("BedDays", Conn)
Dim BedDaysDataTable As New DataTable()
BedDaysDataTable.Columns.Add("MonthYear", GetType(DateTime))
BedDaysDataTable.Columns.Add("BedDays", GetType(Int32))
Command.CommandType = CommandType.StoredProcedure
Command.Parameters.Add("@facID", SqlDbType.Int).Value = 20
Command.Connection = Conn
Conn.Open()
Dim DataReader As SqlDataReader = Command.ExecuteReader()
BedDaysDataTable.Load(DataReader)
Conn.Close()
Return BedDaysDataTable
End Function
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
If Not IsPostBack Then
FillMetricsDDL()
FillFacilityDDL()
Dim rds As ReportDataSource
rds = New ReportDataSource("Report1DataSource", GetReportDataTable)
Dim ReportParameters As New List(Of ReportParameter)
ReportParameters.Add(New ReportParameter("@facID", 20))
ReportViewer1.LocalReport.DataSources.Add(rds)
ReportViewer1.LocalReport.ReportPath = "Report5.rdlc"
ReportViewer1.LocalReport.Refresh()
End If
Common.Chosen(Me)
End Sub
  I am getting the error where the report should be
Unable to connect to the remote server, no connection could be made because the target machine actively refused it.                                        
But I suppose once this error is resolved, there will be more, because I really do not quite know exactly how SSRS charts with parameters in SSRS 2012 are suppossed to work, in code behind, in aspx, and in the charting, and how it all ties together.  So
some complete guidance to show ALL the places where I am going wrong here would be much appreciated, not just an attempt to solve the one error I have above, which may not be the sum total of all of my problems here.
Unless, of course, it IS the only error which would be GREAT.

Similar Messages

  • Separate Date and Time report parameters in SSRS 2012

    Hi Forumers'
    I m trying to design a report in SSRS with Separate date and time parameters
    I would like to have four parameter StartDate,EndDate,StartTime and EndTime.
    reports should be filter on all four parameter.
    can any one help me on this. i am using stored procedure to fetch data from db.
    GO
    SET ANSI_NULLS ON
    GO
    SET QUOTED_IDENTIFIER ON
    GO
    ALTER PROCEDURE[dbo].[GetIVRTime]
    @StartDate varchar(50),
    @EndDate varchar(50),
    @StartTime Varchar(50),
    @EndTime Varchar (50)
    AS
    BEGIN
    DECLARE @Names VARCHAR(8000)
    BEGIN
    Select Convert(varchar(12),timestamp,105)As Date,CONVERT (VARCHAR(12), timestamp, 108) As Time,
    Count(cli)As TotalCall,
    SUM(case when ivrsuccess=1 then 1 else 0 end)as IVRSuccessfull,
    SUM(case when ivrsuccess=2 then 1 else 0 end)as IVRunsuccessfull,
    SUM(case when exitreason=1 then 1 else 0 end)as PBOTransferred,
    SUM(case language when'ENG'then 1 else 0 end)as EnglishCall,
    SUM(case language when'HIN'then 1 else 0 end)as HindiCall
    From tbl_ivrmaster
    where callstartdatetime>=@StartDate and callenddatetime<=dateadd(dd,1,@EndDate)
     and callstartdatetime>=@StartTime and callenddatetime<=@EndTime
    group by Convert(varchar(12),timestamp,105),CONVERT (VARCHAR(12), timestamp, 108)
    END
    END

    Hi Nirmal,
    I have tested on my local environment that as Visakh16 mentioned that you can use function like DATEADD(dd,DATEDIFF(dd,0,@StartDate),@StartTime) 
    to get the date/time value based on the date and time parameter you have selectted.
    There is also anoher method to add filter in the dataset but not in the query.Details information below for your reference;
    Please change the datatype of the @sartdate and @enddate from text to date, if you don't specify an availbel value for these two parameters, you will get an calender picker to select the date.
    I assumed the two time parameters will enter the value which format like:hh:mm or hh:mm:ssYou can conver the datetime field in the table to string and then compare with the conbine of the date and time field to filter the data
    like below:
    Filter add in the dataset like:
    Expression:=FormatDateTime(Fields!DateTime.Value)           (String type)
    Operator: Between
    Value:
    =Parameters!StartDate.Value &" "&Right(TimeValue(Parameters!StartTime.Value),8)
    =Parameters!EndDate.Value &" "&Right(TimeValue(Parameters!EndTime.Value),8)
    Preview the report:
    If you still have any problem, please feel free to ask.
    Regards,
    Vicky Liu
    Vicky Liu
    TechNet Community Support

  • Putting the label text of a chart on two rows - SSRS 2012

    Hi,
    for a my SSRS chart I need to show month and year period on x-axis and I'd like to put the month above the year, in this way:
    Sep.    Oct.    Nov.
    2014   2014   2014
    Is it possible?
    Thanks

    Hi pscorca,
    According to your description, you want to show both months and years in label of X axis. Besides, months should appears above years.
    In this scenario, we still need to have the values group on month. However, we can use the expression in labels. We can combine value of two fields, then use “vbcrlf” make years appear under the months. Please refer to below steps:
    1. Add Month field to Category Groups. Open Category Group Properties, set Label expression as “=Fields!Month.Value & vbcrlf & Fields!Year.Value”. Please refer to the screenshot below:
    2. Click Preview, the result looks like below:
    If you have any question, please feel free to ask.
    Best regards,
    Qiuyun Yu

  • Show/Hide Group in SSRS 2012 Chart

    Hi,
    How can i hide/show chart category group in SSRS 2012?
    Thanks in advance
    Paramesh G

    Hi Paramesh G,
    According to your description, you want to know how to control visibility of horizontal axis labels, right?
    When we create a chart, tick marks and labels are displayed by default on axes. You can adjust the way that they are displayed by using major and minor tick marks and labels. To eliminate clutter in a chart, you can display fewer axis labels or tick marks
    on the horizontal (category) axis by specifying the intervals at which you want categories to be labeled, or by specifying the number of categories that we want to display between tick marks. We can also set labels to be hidden. To achieve your goal, please
    refer to the following steps:
    In design surface, right-click x-axis and open Horizontal Axis Properties dialog box.
    Click Labels in left pane, check Hide axis labels check box.
    Click OK to save the settings.
    The screenshot is for your reference:
    If you have any more questions, please feel free to ask.
    Thanks,
    Wendy Fu

  • SSRS 2012 Sharepoint Mode ItemNotFoundException

    Hello,
    I have a big problem with the new SSRS 2012 (Sharepoint Mode) at one of my customers Sharepoint 2010 farm and I hope somebody can help. I get always the following error message if i try to open a report over the Report Viewer Webpart or try to save a report
    over Report Builder 3.0 in a document library. SSRS 2010 is configured on a Single Server Farm (Sharepoint Mode) and published as a Sharepoint Application Service. Kerberos is also configured in the whole farm.
    Message Report Builder:
    Message Report Viewer in Sharepoint 2010:
    ULS Log:
    06/13/2012 14:09:19.10     w3wp.exe (0x08F4)                           0x08C4    SharePoint Foundation       
         Topology                          e5mb    Medium      WcfReceiveRequest: LocalAddress:
    'http://<spfarmssrs>:32843/8e68c61c48d3486b8f5780736e9de269/ReportingWebService.svc' Channel: 'System.ServiceModel.Channels.ServiceChannel' Action: 'http://schemas.microsoft.com/sqlserver/reporting/2011/06/01/ReportServer/Management/get_IsWebServiceEnabled'
    MessageId: 'urn:uuid:77ac2a30-b595-4faa-83f6-e2ce1e41e283'    665ee657-7c17-474e-b050-d115a932180f
    06/13/2012 14:09:19.10     w3wp.exe (0x08F4)                           0x08C4    SharePoint Foundation       
         Monitoring                        nasq    Medium      Entering monitored scope (ExecuteWcfServerOperation)  
     665ee657-7c17-474e-b050-d115a932180f
    06/13/2012 14:09:19.13     w3wp.exe (0x08F4)                           0x08C4    SharePoint Foundation       
         Monitoring                        b4ly    Medium      Leaving Monitored Scope (ExecuteWcfServerOperation).
    Execution Time=36.9361189760151    665ee657-7c17-474e-b050-d115a932180f
    06/13/2012 14:09:19.29     w3wp.exe (0x08F4)                           0x08C4    SharePoint Foundation       
         Topology                          e5mb    Medium      WcfReceiveRequest: LocalAddress:
    'http://<spfarmssrs>:32843/8e68c61c48d3486b8f5780736e9de269/ReportExecution.svc' Channel: 'System.ServiceModel.Channels.ServiceChannel' Action: 'http://schemas.microsoft.com/sqlserver/reporting/2011/06/01/ReportServer/Execution/LoadReport' MessageId:
    'urn:uuid:b07b919a-fc06-4cf8-add1-617f40a1d42f'    665ee657-7c17-474e-b050-d115a932180f
    06/13/2012 14:09:19.29     w3wp.exe (0x08F4)                           0x08C4    SharePoint Foundation       
         Monitoring                        nasq    Medium      Entering monitored scope (ExecuteWcfServerOperation)  
     665ee657-7c17-474e-b050-d115a932180f
    06/13/2012 14:09:20.55     w3wp.exe (0x08F4)                           0x08C4    SQL Server Reporting
    Services     Report Server Catalog             0000    Unexpected    Throwing Microsoft.ReportingServices.Diagnostics.Utilities.ItemNotFoundException: , Microsoft.ReportingServices.Diagnostics.Utilities.ItemNotFoundException:
    The item 'http://<spfarm1>/Reports/Unbenannt.rdl' cannot be found.;    665ee657-7c17-474e-b050-d115a932180f
    The Sharepoint Environment looks like:
    - Sharepoint Farm 1:
    Server 1: WFE -> is connected to the published Reporting Servers on Server 3.
    Server 2: Sharepoint Application
    - Sharepoint Farm 2:
    Server 3: SSRS 2010 Sharepoint Mode
    Reporting Services Service Application published
    - Database Server is a SQL Server 2008 R2 Cluster
    - SP1 and the CU Februar Patch is installed on all servers.
    - Kerberos is configured for all service users.
    Hope someone can help to resolve the problem.
    Regards
    Chris

    Hello Chris,
    Thanks for your response.
    I did some research on my side, and found some similar issue on the Internet. Please try the following solutions.
    http://go4answers.webhost4life.com/Example/rdl-upload-issue-sharepoint-2010-60988.aspx
    http://social.msdn.microsoft.com/Forums/is/sqlreportingservices/thread/da1f9f8a-d641-4493-bcc0-aeb5d3caf216
    If you have further question, please tell us freely.
    Regards,
    Edward
    Edward Zhu
    TechNet Community Support

  • SSRS cube report with parameters...and more

    Hi,
    I have created some basic SSRS reports in the past with parameters, but I was just given the following project by my manager and I would like to find out 2 things:
    1.  Can this be accomplished using SSRS
    2.  If yes, what are the High-Level steps needed to get this accomplished
    First off, the SSRS report(s) will be connecting to an SSAS cube, so there will be some MDX involved.  The cube is fairly simple, 1 measure group and 3 dimensions.
    The main piece of this project will be 4 parameters that will be displayed to the user; Quarter, Division, Operations, and ReportList.
    The Quarter is just the Quarter that the user wants to run the report for (Q1-2012, Q1-2013, etc..).  This will come from the Date Dimension  The Division will be a list of all of our internal divisions that we have setup in our Client Dimension
    table (Eastern Division, Western Division, etc...).  The Operations will be list of operations for each division selected in the Division parameter (Boston Ops, NY Ops, etc...).  This list will also come from the Client Dimension.  The ReportList
    will be a list of all reports that are related to the Division and Operations Selected.  For example, Eastern Division and Boston Ops could have 3 reports, Western Division and San Francisco Ops has 5 reports, etc...
    The final piece to this is that when the user selects the reports to be generated, they will have to be created into 1 report.  This way the user can convert the report to 1 single PDF file or print the report.  So if 3 reports were selected, each
    report would be a separate page and could then be converted to a single PDF file or printed.
    I know that SSRS has the ability to create cascading parameters, so that should take care of dynamically generating the Operations parameter drop down as well as the REportList drop down.  Of course, using MDX to accomplish this will tricky since I
    haven't done much with MDX.
    I guess my last concern is how to generated multiple reports given the parameters selected and have them be combined into 1 report?  I was thinking subreports, but not sure if that would work.
    Any feedback or concerns/ideas on how this can be accomplished using SSRS?
    **Using SSRS 2012
    thanks
    Scott

    Do you have a question? The title doesn't provide sufficient information what you are after.

  • Error while running SSRS 2012 report integrated with SharePoint 2013

    Hi,
    Our reporting services environment has SSRS 2012 integrated with SharePoint 2013. The SharePoint 2013 farm has 2 web front ends, 1 app server and a separate server for reporting services i.e SSRS 2012 .
    We have created a https web application in SharePoint 2013 and all the SSRS 2012 reports are deployed into a "Report Library" residing in its root site collection.
    The simple reports are running well. But there is a report where we have 3 multi-value parameters. On running this report in IE or Chrome, we get the error "Sys.WebForms.PageRequestManagerParserErrorException: The message received from the
    server could not be parsed. Common causes for this error are when the response is modified by calls to Response.Write(), response filters, HttpModules, or server trace is enabled. Details: Error parsing near ' <!DOCTYPE html PUB'."
    Some of the forums suggested to add the below entry in the web config of the SharePoint web app where the SSRS reports are deployed. We did that too, still the error is appearing. Please can anyone help .
    <appSettings>
    <add key="aspnet:MaxHttpCollectionKeys" value="100000" />
    </appSettings>
    Thanks

    Hi Surendra,
    I have tested on my local environment and the issue can be caused by the session time out ,the time out of the report precessing, database timeout,DataSet query execution timeout and so on.
    I would like to confirm that the refresh you have mentioned is the page refresh or the report reloading?
    Please reference to the setting below to don't limit the timeout values if you got the report reloading:
    Point to a report in the library.
    Click the down arrow, and select Manage processing options.
    In Processing Time-out, select Do not time out report processing or
    Limit report processing in seconds if you want to override that value with no time-out or different time-out values.
    If you got the session timeout that refresh the page, please reference to the setting in below article:
    http://msdn.microsoft.com/en-us/library/gg492284.aspx#bkmk_session_settings_section
    Details information in the article below about the timeout setting for your reference:
    Set Processing Options (Reporting Services in SharePoint Integrated Mode)
    If you still have any problem, please feel free to ask.
    Regards
    Vicky Liu
    If you have any feedback on our support, please click
    here.
    Vicky Liu
    TechNet Community Support

  • Dundas Chart for Reporting Services in SSRS 2012

    We are in the process of upgrading our servers to 2012 and though I find many things about converting or upgrading dundas controls to 2008, I can't find anything about upgrading/converting to SSRS 2012.  After converting the development machines to
    SQL Server/SSRS 2012 the reports now simply show "The custom Report Item Type DundasChartControl is not installed".  The only Dundas Chart installation I can find is for SSRS 2008.  Does a 2012 version not exist?  Am I supposed to
    convert these into Microsoft charts?
    Thanks in advance,
    Robb Melancon

    Hi Robb,
    It seems that you are using Dundas Chart Control for SQL Server 2008 R2 Reporting Services not the Dundas Chart Control 2005 that Microsoft has purchased.
    Microsoft purchased the license to use Dundas Chart Control 2005 in Reporting Services 2008 and above. Therefore the supported upgrade is from Reporting Services 2005 Dundas Charts to SSRS 2008 (R2) and SSRS 2012 Charts.
    If you are using a particular component released by Dundas for SSRS 2008 R2, you won’t be able to upgrade Reporting Services 2008 R2 Reports with Dundas Charts to Reporting Services 2012 Charts.
    To confirm this, please check the details of this assembly “DundasRSChart.dll” located under the /Report Server/bin directory.
    If the Product Name is “Dundas Chart for Reporting Services 2008 R2”, it indicates that this is a new version of Dundas Chart for SSRS 2008 R2 (i.e. a third party control). If the Product Name is “Microsoft SQL Server”, it indicates that this is the version
    that Microsoft has purchased.
    In this condition, you have to migrate the DundasRSChart.dll to the SSRS 2012 instance and reference it as the custom assembly in the reports. Please make sure to rename the DLL file so that it won’t replace the native DundasRSChart.dll installed by SQL
    Server 2012.
    For more information about referencing custom assembly in a report, please see:
    Using Custom Assemblies with Reports
    Regards,
    Mike Yin
    If you have any feedback on our support, please click
    here
    Mike Yin
    TechNet Community Support

  • Conditional formatting a graph vertical axis in SSRS 2012 charts

    Hi,
    I have a situation where i want to color the label on vertical axis of graph depending on certain condition. Say when values are positive the color would be Black and when negative color would be Red.
    I tried following condition but its not working.  
    =iif(Fields!MyField.Value < 0 , "Red", "Black")
    I know there are few threads already mentioning that this feature is not supported in SSRS 2008 but just wanted to know if its adddressed in SSRS 2012 or later?
    Thanks and Regards,
    Oliver D'mello

    Hi Oliver,
    According to your description, you want to use an expression to specify different color for Axis Labels based on values in a chart.
    As we tested in our environment, when we apply condition in expression to give dynamic color for Axis Labels, the color setting applies to all labels based on the condition. This issue happens in both SQL Server 2012 and 2014. Please refer to the screenshots
    below:
    In this scenario, I would recommend you submit this issue to the Microsoft Connect at this link
    https://connect.microsoft.com/SQLServer/Feedback. This connect site will serve as a connecting point between you and Microsoft, and ultimately the large community for you and Microsoft
    to interact with. Your feedback enables Microsoft to offer the best software and deliver superior services, meanwhile you can learn more about and contribute to the exciting projects on Microsoft Connect.
    If you have any question, please feel free to ask.
    Best regards,
    Qiuyun Yu

  • Combined charts - SSRS 2012

    Hi,
    I need to reproduce with SSRS 2012 an Excel combined chart. It is composed from a principal stacked column chart to show the number of opened contracts and a secondary line chart to show the daily number of opened contracts.
    Any suggests to me, please? Thanks

    Hi pscorca,
    According to your description, we are not clear about “Excel combined chart” you mentioned. Do you want to use Excel as a Reporting Services datasource to design a chart in BIDS or export two charts which are designed in BIDS into excel?
    If we want to use Excel as a Reporting Services datasource to design charts in SSDT, we should create a System Data Source Name in ODBC Data Source Administrator, then create a Shared Data Source with ODBC type. For detail steps, please refer to this article: 
    Using Excel as a Reporting Services datasource.
    If we want to export two charts which are designed in SSDT into excel, we should export the chart into .xls file, then open it in Excel. Please refer to steps below:
    1. When Preview the chart, you can press Export button then choose Excel. Please refer to screenshot below:
    2.After storing the chart as .xsl file, then open it in Excel. It looks like below:
    If you have any question, please feel free to ask.
    Best regards,
    Qiuyun Yu

  • Error on the reports with drill-through links on SSRS 2012 SP2 -- Invalid URI: The Uri string is too long

    Hi, We are migrating SSRS 2008 R2 reports to SSRS 2012 SP2. (PS. SSRS 2012 SP2 has been applied.) Everything went smooth expect some reports which were using reporting services. These reports have some drilin-through actions and was passing in a huge
    xml parameter. I referred to some other posts in which there were also some similar issues like "The Uri string is too long."  but they're different. My reports can be opened and the error only occurred when accessing the drill-through actions.
    As I know, Microsoft has provided the fix for the known issue "The Uri string is too long." in sp1 but it looks it can't cover this kind of situation since I have installed the SSRS SP 2. Is there any solution? In addition, there's no such
    issue on SSRS 2008 R2.
    Thanks,
    onizga

    Hi onizga,
    According to your description that you are migrating SSRS 2008 R2 reports to SSRS 2012 SP2, after migration you got some error like “The Uri string is too long” which only occurred when accessing the drill-through actions, right?
    Usually, the issue can be caused when you try to pass some parameters that cause the URL length to exceed 65,520 characters for a Microsoft SQL Server 2012 Reporting Services (SSRS 2012), you cannot render the report, and you may receive the following error
    message:
    The value of parameter 'param' is not valid. (rsInvalidParameter).Invalid URI: The Uri string is too long.
    This is an known issue and already have the hotfix SQL Server 2012 Service Pack1 Cumulative Update 9 (CU9) as you know, you can try to reinstall this hotfix to fixed this issue:
    http://support.microsoft.com/kb/2916827 .Any issue after applying the update, please post it on the following thread or you can submit an feedback:
    http://connect.microsoft.com/SQLServer/feedback/details/788964/ssrs-2012-invalid-uri-the-uri-string-is-too-long 
    Similar threads for your reference:
    SSRS - The value of parameter 'param' is
    not valid. ---> System.UriFormatException: Invalid URI: The Uri string is too long.
    Microsoft.ReportingServices.Diagnostics.Utilities.InvalidParameterException:
    The value of parameter 'pSetOfScopes' is not valid. ---> System.UriFormatException: Invalid URI: The Uri string is too long
    If you still have any question, please feel free to ask
    Regards
    Vicky Liu
    If you have any feedback on our support, please click here

  • Passing rendering format and report parameters in the URL to call a report - SSRS 2012

    Hi,
    I've a SSRS 2012 with the integer and multivalue Creation_Years parameter that I need to call directly to export data in the Excel format.
    I've tried to use this URL:
    http://reportserv/Reports/Pages/Report.aspx?ItemPath=%2fInsurance%2fInstallations_Excel&rs:Format=excel&Creation_Years=2014 but the parameter is required in an interactive manner.
    I've tried to set the hidden property for the parameter, I've tried to invert the position of the "rs:Format=excel" string with the "Creation_Years=2014", but the error message doesn't change. Also if I specify the 2015 year, the parameter
    isn't overwritten with the 2015 value.
    Any helps to me, please? Thanks

    Ok, thanks, I note that you have added "rs:Command=Render": looking to the official documentation this string seems optional.
    Your url functions but the parameter cannot be a multivalue one. Do you confirm this?
    Thanks
    If you want to sent value for multi valued parameter through URL you need to repeat it
    ie like this
    http://reportserv/ReportServer/Pages/ReportViewer.aspx?%2fInsurance2fInstallations_Excel&rs:Command=Render&rs:Format=excel&Creation_Years=2014&Creation_Years=2015&Creation_Years=2016...
    also see
    https://msdn.microsoft.com/en-us/library/ms155391.aspx
    If parameter value itself has characetrs like & in it you need to escape them first using javascript
    Please Mark This As Answer if it solved your issue
    Please Vote This As Helpful if it helps to solve your issue
    Visakh
    My Wiki User Page
    My MSDN Page
    My Personal Blog
    My Facebook Page

  • Is it currently possible to create a doughnut chart with multiple concentric circles in SSRS?

    Is there currently any way to create a 'doughnut' chart with multiple concentric circles in an SSRS report (any version), without using 3rd party tools?
    Something like this, perhaps?
    (For that matter is it possible to create this using JavaScript?  It's my understanding that this image was originally created in a web app using JavaScript.  So far I've not been able to pin down the details.  I've found hints that JavaScript
    can be used in SSRS reports but so far no clear working examples.)

    Hi B.Chernick,
    According to your description, you want to create a create a doughnut chart with multiple concentric circles in your report. Right?
    In Reporting Services, we only have doughnut chart with one concentric circle. All the category group is in that concentric circle. Though we can embed javascript injection in expression, it only give the css style to values or report
    items which can change the looking. It can't change the structure of the report items itself. So your requirement can't be achieved current.
    For your requirement, we suggest you provide Microsoft a feature request at
    https://connect.microsoft.com/SQLServer
    so that we may try to expand the product features based on your needs.
    If you have any question, please feel free to ask.
    Best Regards,
    Simon Hou

  • SSRS 2012 compatibility with Oracle 11g

    Hello,
    I have a client that is asking us to implement SSRS 2012 to report on our data warehouse.  We currently support Oracle 11g in our DW.
    We have tried to connect to 11G using a trial version but have failed in all attempts.  In looking at the Microsoft documentation it states that Oracle 10G is the latest version supported.
    Is anyone using 11g with SSRS 2012?  Would really like to know if it works before purchasing the software.
    Thanks,

    To find an article, go to My Oracle Supprt (formerly metalink) metalink.oracle.com and login. Then search for the article ID (doc no).
    https://support.oracle.com/CSP/ui/flash.html#tab=KBHome(page=KBHome&id=()),(page=KBNavigator&id=(bmDocTitle=Starting%20With%20Oracle%20JDBC%20Drivers&from=BOOKMARK&viewingMode=1143&bmDocType=FAQ&bmDocDsrc=KB&bmDocID=401934.1))
    Somehow it's not easy to paste the URL to the new flashy documents!

  • SSRS 2012 report integrated with SharePoint 2013 issue :Report refreshing after some idle time

    we have SSRS 2012 report integrated with SharePoint 2013  , when we click on any toggle item after some idle time of 60 secs and try again to expand
    another toggle item then  complete report is getting refreshed and  if we are in child report it is redirecting to parent report. . we didn’t set any refreshing property at report level. I hope there will be some idle time setting at sharepoint site
    level.
    what we observed.
    1. there is no problem when we expand toggle items without any idle time.
    2. when we open the report and expand few toggles and keep idle for 60 seconds and try
    again to expand another toggle item then  complete report is getting refreshed (all toggle items are collapsing).
    3. If you keep idle for 60 minutes and if you didn’t do any action like expanding toggle
    items it is not refreshing.
    why it is happening and how to stop that complete refresh.
    Surendra Thota

    Hi Surendra,
    I have tested on my local environment and the issue can be caused by the session time out ,the time out of the report precessing, database timeout,DataSet query execution timeout and so on.
    I would like to confirm that the refresh you have mentioned is the page refresh or the report reloading?
    Please reference to the setting below to don't limit the timeout values if you got the report reloading:
    Point to a report in the library.
    Click the down arrow, and select Manage processing options.
    In Processing Time-out, select Do not time out report processing or
    Limit report processing in seconds if you want to override that value with no time-out or different time-out values.
    If you got the session timeout that refresh the page, please reference to the setting in below article:
    http://msdn.microsoft.com/en-us/library/gg492284.aspx#bkmk_session_settings_section
    Details information in the article below about the timeout setting for your reference:
    Set Processing Options (Reporting Services in SharePoint Integrated Mode)
    If you still have any problem, please feel free to ask.
    Regards
    Vicky Liu
    If you have any feedback on our support, please click
    here.
    Vicky Liu
    TechNet Community Support

Maybe you are looking for

  • HP Officejet Pro L7590 Stopped scanning to removeable devices..ie. USB Flash Drive

    Printer Just stopped scanning to a removeable Flash Drives on the printer itself. The unit is shared by multiple people in the office. The document will scan, but is says " SCAN Failure.. Memory Device Failure". The issue is that we have tried other

  • Conditional drill based on level

    I have a requirement that users can drill down through a hierarchy in the standard way. However when they get to the bottom (leaf node) of the hierarchy then they should be directed to a different report which shows data for a selected measure(I cann

  • Load Balancing and Clustring in Essbase ?

    Hi All, can anyone let me know if "LOAD BALANCING & CLUSTRING" is avaliable in Hyperion Essbase 11.1.1.3? if it is possible , please explain me how it can be done. Please help me out from this doubt. Regards

  • Is there a plugin that will do the same thing as Zemanta?

    I have the Zemanta plugin and, for the most part, it works well. However, it does make some glaring mistakes. For example, when I'm done writing my blog, and before I publish it, I'll hover over one of the In-text Links at the bottom of the editor (a

  • Not update index of deleted text

    Hello All, I wanted to know if I create a context index on a text column in a table, is there a way to remove the column content without changing the index. That means I'll still add new rows to the database and index them but I can still look for th