Hi,
Please help as captioned. Run in report designer is ok but it just cannot upload/replace the live report ... Please help ~~
Hi,
Please help as captioned. Run in report designer is ok but it just cannot upload/replace the live report ... Please help ~~
HI, I am create a line report. I am not the DB owner. The x axis consist of the date range and the Y of the values. I don;t have data for every quarter. When I do a bar chart, I see quarters as follow: 201401, 201402, 201403,201404,201501 I set the
axis type as "automatic". Then I changed to a line format. The x -axis now has 201410,201420,201430....201490, 201500. If I choose categories as axis type, it looks correct but has gaps in the lines. Is there something in the report I can do or something
in the DB DB that they can do so that I can get a continuous line ? Or is this a known limitation ?
thanks
Heather
Hi All,
I was trying to set-up Email Subscription for SSRS in my Test Environment using "Reporting Services Configuration Manager" and after providing SMTP server details. I was getting error "Failed to sent Email to ABC.XYZ@yyyyy.com"
What could be the reason?
I tried pining SMTP IP address from the Machine where SSRS installed and I was able to ping SMTP Server using CMD ping command.
Thanks Shiven:) If Answer is Helpful, Please Vote
I have a ASP.NET application which render the reports, SSRS server is 2014.
Is there a report viewer available for SSRS 2014, or Reportviewer of SSRS 2012 will work with SSRS 2014?
RS 2008 R2
I have a report with a dropdown that is filled with values from a dataset. When the report runs the dropdown says "Select Value". This is frustrating if there is only 1 value to select. Is there a way for it to be automatically selected if there is only 1 value?
Thanks.
André
I have created new report with some charts to view in Microsoft System Center 2012 SP1, the report works fine in report builder and Internet Explorer, but when I try to open this report from System Center it shows the following error:
Remote GDI stream version: 10.0.1. Expected version: 10.0.2.
I have also tried to view this report from client machine because we didn't apply windows update on our System Center server but it shows the same error.
the database engine is SQL Server 2008 R2 SP3.
Appreciate if you have any suggestion.
Hi
I have a multi select parameter (7 parameters) and I want to filter the tablix based on the selection of the parameter.
So I think it would start to look something like this.
in the expression part
=IIF(InStr("," & Join(Parameters!KPI_Name.Value,",") & ",",",6,") >0,Fields!Settlements.Value, IIF(InStr("," & Join(Parameters!KPI_Name.Value,",") & ",",",5,") >0,Fields!Files_Received.Value,
But I'm not sure what to put for the false part
Also for the value part, for parameter values 5 and 6 this would be 1, but where it is not those parameters values, it could be any value.
Hope this makes sense.
Regards
I try to fix the problem. The error below is embedded on aspx pages that use report viewer web control. Please note that the div element is hidden, and the reportviewer is displaying correct contents.
Div element hidden on aspx page
<div id="ReportViewer1_HttpHandlerMissingErrorMessage" style="border-color:Red;border-width:2px;border-style:Solid;padding:10px;display:none;overflow:auto;font-size:.85em;"><h2> Report Viewer Configuration Error</h2><p>The Report Viewer Web Control HTTP Handler has not been registered in the application's web.config file. Add <add verb="*" path="Reserved.ReportViewerWebControl.axd" type = "Microsoft.Reporting.WebForms.HttpHandler, Microsoft.ReportViewer.WebForms, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" /> to the system.web/httpHandlers section of the web.config file, or add <add name="ReportViewerWebControlHandler" preCondition="integratedMode" verb="*" path="Reserved.ReportViewerWebControl.axd" type="Microsoft.Reporting.WebForms.HttpHandler, Microsoft.ReportViewer.WebForms, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" /> to the system.webServer/handlers section for Internet Information Services 7 or later.</p></div>
I tried adding the two elements to web.config, but to no avail.
Add below to system.web/httpHandlers<add verb="*" path="Reserved.ReportViewerWebControl.axd" type = "Microsoft.Reporting.WebForms.HttpHandler, Microsoft.ReportViewer.WebForms, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" /> or add below to system.webServer/handlers for Internet Information Services 7 or later. <add name="ReportViewerWebControlHandler" preCondition="integratedMode" verb="*" path="Reserved.ReportViewerWebControl.axd" type="Microsoft.Reporting.WebForms.HttpHandler, Microsoft.ReportViewer.WebForms, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
The required assemblies below are installed under C:\Windows\assembly folder. I have installed both Microsoft ReportViewer 2010 Redistributable, and 2008 SP1.
Microsoft.ReportViewer.WebForms, version 10 Microsoft.ReportViewer.Common, version 10
Below is the whole web.config:
<?xml version="1.0" encoding="utf-8"?><!-- For more information on how to configure your ASP.NET application, please visit http://go.microsoft.com/fwlink/?LinkId=169433 --><configuration><connectionStrings><add name="ApplicationServices" connectionString="data source=.\SQLEXPRESS;Integrated Security=SSPI;AttachDBFilename=|DataDirectory|\aspnetdb.mdf;User Instance=true" providerName="System.Data.SqlClient" /></connectionStrings><appSettings><add key="car" value="myCar" /><!--<add key="ReportViewerServerConnection" value="WebForm.Lab.ReportConnection, WebForm" />--></appSettings><system.web><httpHandlers><add verb = "*" path = "Reserved.ReportViewerWebControl.axd" type = "Microsoft.Reporting.WebForms.HttpHandler, Microsoft.ReportViewer.WebForms, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" /><!--<add path="Reserved.ReportViewerWebControl.axd" verb="*" type="Microsoft.Reporting.WebForms.HttpHandler, Microsoft.ReportViewer.WebForms, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" validate="false" />--></httpHandlers><compilation debug="true" targetFramework="4.0"><assemblies><add assembly="Microsoft.ReportViewer.WebForms, Version=10.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A" /><add assembly="Microsoft.ReportViewer.Common, Version=10.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A" /><add assembly="Microsoft.Build.Framework, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A" /><add assembly="System.Management, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A" /></assemblies><buildProviders><add extension=".rdlc" type="Microsoft.Reporting.RdlBuildProvider, Microsoft.ReportViewer.WebForms, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" /></buildProviders></compilation><authentication mode="Forms"><forms loginUrl="~/Account/Login.aspx" timeout="2880" /></authentication><membership><providers><clear /><add name="AspNetSqlMembershipProvider" type="System.Web.Security.SqlMembershipProvider" connectionStringName="ApplicationServices" enablePasswordRetrieval="false" enablePasswordReset="true" requiresQuestionAndAnswer="false" requiresUniqueEmail="false" maxInvalidPasswordAttempts="5" minRequiredPasswordLength="6" minRequiredNonalphanumericCharacters="0" passwordAttemptWindow="10" applicationName="/" /></providers></membership><profile><providers><clear /><add name="AspNetSqlProfileProvider" type="System.Web.Profile.SqlProfileProvider" connectionStringName="ApplicationServices" applicationName="/" /></providers></profile><roleManager enabled="false"><providers><clear /><add name="AspNetSqlRoleProvider" type="System.Web.Security.SqlRoleProvider" connectionStringName="ApplicationServices" applicationName="/" /><add name="AspNetWindowsTokenRoleProvider" type="System.Web.Security.WindowsTokenRoleProvider" applicationName="/" /></providers></roleManager><pages><controls><add tagPrefix="ajaxToolkit" assembly="AjaxControlToolkit" namespace="AjaxControlToolkit" /></controls></pages></system.web><system.webServer><modules runAllManagedModulesForAllRequests="true" /><validation validateIntegratedModeConfiguration="false" /><handlers><add name="ReportViewerWebControlHandler" preCondition="integratedMode" verb="*" path="Reserved.ReportViewerWebControl.axd" type="Microsoft.Reporting.WebForms.HttpHandler, Microsoft.ReportViewer.WebForms, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" /></handlers><httpProtocol><customHeaders><remove name="X-Powered-By" /></customHeaders></httpProtocol></system.webServer><system.serviceModel><bindings><basicHttpBinding><binding name="WebService1Soap" /></basicHttpBinding></bindings><client><endpoint address="http://localhost:58269/WebService1.asmx" binding="basicHttpBinding" bindingConfiguration="WebService1Soap" contract="ServiceReference1.WebService1Soap" name="WebService1Soap" /></client></system.serviceModel></configuration>
Any idea?
Hi,
We have a data driven subscription that creates and xml file for export to a third party for processing. This has been working fine for several months but now it is running twice for a single schedule.
I found a thread (https://social.msdn.microsoft.com/forums/sqlserver/en-US/55a8410f-e29e-4918-9cce-3de525755236/sql-server-2008-r2-subscription-running-twice) which has a similar story but for me the SSRS log doesn't help. All this shows is that the job ran successfully twice.
We are using SQL Server 2012 Enterprise.
Any suggestions would be appreciated?
JST
hello everybody.
could not find any information if this is an intended behavior:
dataset query issues twice if the dataset is connected to matrix and used in multilookup function
parameters in both queries are the same
ssrs: 2008 r2, sharepoint 2010 integrated
sharepoint 2010: september 2014 cu
thanks in advance
Sergey Vdovin
I have a main report with a top header area then a sub report area where I have 8 different sub reports stacked ontop of each other and I make each one visible based off of a field in the main report. Think of something similar to a one page credit card statement the general look is like this:
I then do a page break for each account number which is a parameter and this works fine. My issue is that when I do multiple account numbers, it uses whichever sub report that was activated from the first account (first page) instead re-evaluating for each separate account on the subsequent pages.
Here is my expression for determining the visibility property on each of the 8 sub reports where the value 01 in the expression is different on each of the 8 sub reports and AcctProfDS is the only dataset in my main report.
=IIF(First(Fields!CD_ACCT_PROFILE.Value, "AcctProfDS")= "01",False,True)
Any tips/pointers on how to resolve?
Hi All
we have SSRS 2012 report integrated with sharepoint 2013 in which when we click on any toggle item after some idle time of 60 secs then it refreshing complete report .
what we observered.
1. there is no problem when we expand toggle items without idle item.
2. when we open the report ond expand few toggles and keep idle for 60 seconds and try to expand another toggle item then complete report refresh is happening with all toggle items are collapsing.
3. If you keep idle for 60 minutes and if you didnt do any action like expanding toggle items it is not refreshing.
why it is happening how to stop that complete refresh.
Surendra Thota
I have produced a report that is basically a job sheet , 1 per property. I have placed a rectangle on the page and in Rectangle Properties I have selected Add a page Break After. I have then placed a series of text boxes within the rectangle into which I have placed the data fields. The bottom text box holds text fields and as soon as there are a lot of records in this box it automatically places that box on a new page (which is ok) but it then immediately starts the next property report on the same page when I am expecting it to start on a new page.
Hi,
I got a main report that has subreport located in group total row. The data that is being displayed in main report's detail has maximum number of 10. What I need is to send those 10 rows as 10 parameters in my subreport (located in total row).
My current approach is to use a custom code in main report,below is a simplified version:
DisplayAct will be called in expression in main report's detail row. And getHeaders will be used when sending parameters in subreport. The problem is getHeaders always sent null values to the subreport, however if I call getHeaders in main report it works fine. It seems to me that SSRS sending data to subreport (in group total) before populating the details row (which will call DisplayAct and populate variable headers). To me this seems counterintuitive since it implies that group total row is generated before the details row.
Could anyone points to me where it went wrong? Or if this approach is not possible, maybe suggest something else?
Thanks before
dim headers(10) as string dim ctr=0 public function getHeaders(ctr as Integer) as String return headers(ctr) end function public function DisplayAct(currRow) as String headers(ctr)=currRow ctr+=1 return "" end function
I have a couple of SQL 2008 Servers some are just 2008 and other are SQL 2008 R2 version, If I want to work on SSRS which version of Report Builder do I need to download 2.0 or 3.0 ?
Just trying to make sure the new Report Builder 3.0 will work with either SQL 2008 & SQL 2008 R2 Versions
Regards,
Elant
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
I have App sever and WFE SharePoint server
On the APP server I installed both Reporting Services - SharePoint And Reporting Services Add-in for SharePoint products
On the WFE server I installed just Reporting Services Add-in for SharePoint products
I mad a site collection with "Business intelligence Center" template
I made sure the feature "Report Server Integration Feature" is activated
The 3 SSRS content types are there and I added them to a report library.
Now when I new "Report builder Report, I expect it to download report builder but instead it shows :
'New Document' requires a Microsoft SharePoint Foundation-compatible application and web browser.
On other SharePoint farms using SQL 2012 it does work right.
Any advice?
Ofer Gal
When using parameters in Query Designer (MDX) you need to define them in the Query Parameters dialog box. You are also forced to provide a default. What do you do if there is no default. I have been just adding "", but then you need to override
this in Report Data Parameters sections. How do you handle this?
Thanks
Hi,
I have a report that works fine during local development however when it is deployed to a server it is not displaying values in the parameter list, Unit. This list comes from a dataset that is filtered by a parameter called ADAuthorizations. I've verified ADAuthorizations has a value on the server and we've verified that the data for the dataset is returning from the SQL Server. It appears that something might be wrong in the filtering of the dataset with ADAuthorizations or is not displaying for some reason. Does anyone have some suggestions on why this report behaves differently on the server and how to fix it?
The dataset has an expression of UserId, an operator of In, and a value of ADAuthorizations. ADAuthorizations is an array of values.
Thanks,
Robert
We are creating new SSRS Data Driven Subscription. After entering the command query (which has been tested and is valid) we are getting the following error when the wizard validates the query in step 3:
The dataset cannot be generated. An error occurred while connecting to a data source, or the query is not valid for the data source. (rsCannotPrepareQuery). The current version of Analysis Services OLE DB Provider is not recent enough to perform this check.
The data source involved and the query are all working as we have reports running on this server that use this data source. We've looked into the OLE DB Provider and both the SSAS server and the SSRS server (they are on different servers) appear to have the same versions installed. Both the SSRS and SSAS servers are running SQL 2012 SP2.
Any suggestions would be appreciated as I haven't had much success locating the cause.