Quantcast
Channel: SQL Server Reporting Services, Power View forum
Viewing all 10045 articles
Browse latest View live

SSRS Custom Delivery Extension - newbie questions

$
0
0

Hi Folks

I'm about 95% done on building an SSRS Custom Delivery Extension (in terms of code).

I'm in a common/shared development environment where I'd like to have myself not being a disruption to my group.

Two questions I have:

1. Does a SSRS Custom Delivery Extension circumvent/preempt the standard ReportingServicesEmailDeliveryProvider? (I'm running in a multi-web environment and only ONE web site actually needs to use this extension.)

2. I have yet to figure out how to call this provider explicitly/programmatically, for a single application, based on individual client and report (my environment is VS2012, VB/ASP.NET.

Thanks

Rob


Process name of SSRS process that sends subscription emails??

$
0
0
I keep getting this message on a SSRS subscription: The message could not be sent to the SMTP server. The transport error code was 0x800ccc15. The server response was not available ,

I think that the virus protection is blocking emails. So I'd like to exempt that process from the block but I'm not sure what the name of it is. Anyone know the name of the process that sends out the reports as emails from SSRS?



Thanks!
--ACG

Assigning row number for each group and returning 5 groups in one page

$
0
0

Hi,

When I am rendering SSRS report to Excel, I faced an error:

Excel Rendering Extension: Number of rows exceeds the maximum possible rows per sheet in this format; Rows Requested: 96619, Max Rows: 65536

I came across solution to this here:

http://www.bi-rootdata.com/2012/09/how-to-restrictset-number-of-records.html

It works fine but can I do the row count for groups instead of rows i.e. my report is already grouped by State. I wanted to show records for first 5 states on one page and the next 5 on another instead of showing 10000 records on each page.

Thanks.

SSRS | Jump to report

$
0
0
Hi we are using SSRS 2008 to develop our reports. To navigate one report to another reports we are having two option 1. Jump to report 2. URL option.
We are using these two option to navigate our reports. While exporting this to PDF or Excel, the URL option is working fine in PDF too[(i.e) we can able to select the link in PDF also], but the Jump to report is not showing any link to select. How to reslove this. 
Karthick

Error when trying to save.

$
0
0

I'm in Report Builder 3.0 just trying to save my file and I get this error:

Unexpected end of file while parsing Name has occurred. Line 1, position 65145.
----------------------------
Response is not well-formed XML.
----------------------------
The attempt to connect to the report server failed.  Check your connection information and that the report server is a compatible version.

I have previously saved this file before and was just adding to it.  I am connected to the server.

Any ideas what is going on?  Is the file just too large now?

Thanks,

-Nick

Reporting Service 2008 Microsoft.ReportingServices.WmiProvider.WMIProviderException

$
0
0
I was changing the Service Account to use Build-In Account to Local System.  In "Backup Encryption Key" prompt, I entered file location and the password.  After I click on OK to the "Backup Encryption Key" prompt, the following error message shows up:

Microsoft.ReportingServices.WmiProvider.WMIProviderException: The report server cannot decrypt the symmetric key that is used to access sensitive or encrypted data in a report server database. You must either restore a backup key or delete all encrypted content.

I want to ask what is this mean?  And how to resolve it?

I am using Microsoft SQL Server 2008 Reporting Service.

Thanks

Peggy


Text being cut off when the text spreads (wraps) to more than one line in excel export of SSRS report

$
0
0

I have an SSRS report which exports well to excel. When the text is more than one line, it is being wrapped well but 

I see some data being cutoff. How do we solve this issue? Please help, I need this soon.

Thanks,

Ashrith


Report Builder Grouping issue

$
0
0

I am building what at first glance appears to be a simple report in report Builder using a simple query:

SELECT DISTINCT salesman, cust_id, invoice_id, date

FROM Sales

I created a table with a group by salesman, group by customers, count all their invoices, count all invoices for a specific item, and percentage of sales for those items out of all sales.

My problem is that when I group by salesman first, it limits the invoices to only those that belong to that salesman,  when what I need to return is all invoices regardless of salesman, like so:

Salesman        All Clients for this Salesman          All Invoices for these clients (regardless of salesman)        All invoices for Item#1   

Thanks


Lorna Robinson


SSRS 2012 background color format by expression issue when exporting to Excel.

$
0
0

We are using SSRS 2012. We have a report that conditionally formats a background color for some cells. The report renders properly in a browser and in Excel 2003 format. In Excel format all cells after the first one that meets the condition are highlighted, even if only one cell should.

The sample expression that triggers this condition looks like this:

=IIF(Fields!VIOL_NOTE.Value="Internal","Green","No Color")

All cells after the first one that meets the condition Fields!VIOL_NOTE.Value="Internal" have a green background.

Excel 2003 (proper) results:

Excel (improper) results:

Zenon



store SSRS Report URL in my database table

$
0
0

hii there ....

i need to store a report URL in table either in ReportServer or any database 

but i want it in my report besides my report name which i have kept from catalog 

named Report Link so besides report names i can give link that report and when it clicked it should open in reportserver report view

i had tried got URL but failed to access final report 

can help??

Limit no of columns in SSRS matrix report

$
0
0

I have designed the matrix report(SSRS 2008) which has dynamic column, it grows based on the no of products in the table.

Database table structure looks like below.    

Productname AssetClass Marketvalue
Product1AEQ1000
Product1IEQ2000
Product1Prop3000
Product2AEQ1000
Product2IEQ2000
Product2Prop3000
Product3AEQ1000
Product3IEQ2000
Product3Prop3000
Product4AEQ1000
Product4IEQ2000
Product4Prop3000

    

The matrix report displays like below. Column grows based on no of products in the table.   I have applied column grouping for Products and row grouping for assetclass.

 Product1Product2Product3Product4
AEQ1000100010001000
IEQ2000200020002000
Prop3000300030003000

But I want to break the matrix columns to display 2 proudcts wise like below..

 

 Product1Product2
AEQ10001000
IEQ20002000
Prop30003000
   
 Product3Product4
AEQ10001000
IEQ20002000
Prop30003000

Is it  possible to apply column break in matrix report?

Thanks,
Ramesh


Access current grouping fields in report page header

$
0
0
I'm using SQL Server Data Tools 2012 (Visual Studio 2010) and have a multi-tab report that does a page break on each combination of SalesTerritory and ProductType.

I can label the worksheet tabs of the resulting downloaded Excel spreadsheet by adding a group-level PageName property expression in the Properties window that concatenates the two current grouping criteria values:

=Lookup(Fields!SalesRegionID.Value, Fields!SalesRegionID.Value,          Fields!SalesRegionCode.Value, "SP_SalesRegion") + " " + Lookup(Fields!ProductTypeID.Value, Fields!ProductTypeID.Value,          Fields!ProductTypeName.Value, "SP_ProductType")



What I'd like to do now is add the same string to the page header of each report page. I can't simply add the above expression in a text box, since it doesn't appear to understand the current grouping context of the report body. How do I show the current tab label on the page header of each worksheet?

- Mark Z.


Power View for Multidimensional Sql 2012 CTP and SharePoint 2013 Evaluation Copy

$
0
0

Hi All,

I have installed the Power View for Multidimensional Sql 2012 CTP and SharePoint 2013 Evaluation copy.

With the CTP  I am able to connect to tabular Analysis services on another server and the powerview work. While trying to connect to the Multidimensional cube on the on another server running on SQL server 2012 Development I have a connection issue. The Powerview retun a connection problem.

I have the error below

<detail><ErrorCode xmlns="rsCannotRetrieveModel</ErrorCode><HttpStatus">http://www.microsoft.com/sql/reportingservices">rsCannotRetrieveModel</ErrorCode><HttpStatus xmlns="400</HttpStatus><Message">http://www.microsoft.com/sql/reportingservices">400</HttpStatus><Message xmlns="An">http://www.microsoft.com/sql/reportingservices">An error occurred while loading the model for the item or data source 'http://xxxxx/sites/xxxxx/Data Connections/PowerViewTest.rsds'. Verify that the connection information is correct and that you have permissions to access the data source.</Message><HelpLink xmlns="http://go.microsoft.com/fwlink/?LinkId=20476&EvtSrc=Microsoft.ReportingServices.Diagnostics.Utilities.ErrorStrings&EvtID=rsCannotRetrieveModel&ProdName=Microsoft%20SQL%20Server%20Reporting%20Services&ProdVer=11.0.9000.5</HelpLink><ProductName">http://www.microsoft.com/sql/reportingservices">http://go.microsoft.com/fwlink/?LinkId=20476&amp;EvtSrc=Microsoft.ReportingServices.Diagnostics.Utilities.ErrorStrings&amp;EvtID=rsCannotRetrieveModel&amp;ProdName=Microsoft%20SQL%20Server%20Reporting%20Services&amp;ProdVer=11.0.9000.5</HelpLink><ProductName xmlns="Microsoft">http://www.microsoft.com/sql/reportingservices">Microsoft SQL Server Reporting Services</ProductName><ProductVersion xmlns="11.0.9000.5</ProductVersion><ProductLocaleId">http://www.microsoft.com/sql/reportingservices">11.0.9000.5</ProductVersion><ProductLocaleId xmlns="127</ProductLocaleId><OperatingSystem">http://www.microsoft.com/sql/reportingservices">127</ProductLocaleId><OperatingSystem xmlns="OsIndependent</OperatingSystem><CountryLocaleId">http://www.microsoft.com/sql/reportingservices">OsIndependent</OperatingSystem><CountryLocaleId xmlns="1033</CountryLocaleId><MoreInformation">http://www.microsoft.com/sql/reportingservices">1033</CountryLocaleId><MoreInformation xmlns="<Source>ReportingServicesLibrary</Source><Message">http://www.microsoft.com/sql/reportingservices"><Source>ReportingServicesLibrary</Source><Message msrs:ErrorCode="rsCannotRetrieveModel" msrs:HelpLink="http://go.microsoft.com/fwlink/?LinkId=20476&amp;EvtSrc=Microsoft.ReportingServices.Diagnostics.Utilities.ErrorStrings&amp;EvtID=rsCannotRetrieveModel&amp;ProdName=Microsoft%20SQL%20Server%20Reporting%20Services&amp;ProdVer=11.0.9000.5" xmlns:msrs="An">http://www.microsoft.com/sql/reportingservices">An error occurred while loading the model for the item or data source 'http://xxxxxx/sites/xxxxx/Data Connections/PowerViewTest.rsds'. Verify that the connection information is correct and that you have permissions to access the data source.</Message><MoreInformation><Source>Microsoft SQL Server 2012 Analysis Services</Source><Message>Errors in the metadata manager. Discover CSDL is not allowed on a server working in OLAP mode.</Message></MoreInformation></MoreInformation><Warnings xmlns="http://www.microsoft.com/sql/reportingservices" /></detail>

Do I need to have the Multidimesnional cube running on the same server?

Regards


Do what you believe in

SSRS Action to Open a URL in a New Window - Not Work In PerformancePoint 2010

$
0
0

Hi All,

Here is my issues:

1. Sharepoint 2010 - PerformancePoint 2010

2. SSRS 2008 R2 (Noted: Is run in native mode) - All my report hosted in ReportManager

I having a report which having a hyperlink(SSRS Action to Open a URL in a New Window - javascript) to call my custom application. This hyperlink work well in ReportManager. When I click the hyperlink, it manage to call my custom application.

But, when I deploy my report into PerformacePoint 2010, the hyperlink does not work (click on the link but nothing happen).

The SSRS Action to Open a URL in a New Window as ="javascript:void(window.open('"+ Fields!ReferURL.Value + "','_blank'))"

I have make a google and none of the solution work for me.

Could anyone provide some suggestion/solution.

Thanks

SSRS 2012 Forms Authentication - Report Builder Login not calling IAuthenticationExtension.LogonUser

$
0
0

I am sorry if this is a duplicate, but none of the other solutions to somewhat related questions applied, worked, or references were still available. 

I currently have Forms Authentication working for SSRS 2012 in native mode -- I am not using SharePoint.  I have a custom class that implements IAuthenticationExtension.  This class is constructed and used properly in many calls, particularly to IAuthenticationExtension.GetUserInfo, so I know it is hooked up to some extent.

When accessing Report Builder, I understand the need to authenticate with fresh credentials, but my IAuthenticationExtension class's LogonUser method is not being invoked.  I am not getting any errors in reporting services that I can find in a log or the event log.

When prompted, I am capturing the web service call:

"<?xml version=\"1.0\" encoding=\"utf-8\"?><soap:Envelope xmlns:soap=\"http://schemas.xmlsoap.org/soap/envelope/\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"><soap:Body><LogonUser xmlns=\"http://schemas.microsoft.com/sqlserver/reporting/2010/03/01/ReportServer\"><userName>a</userName><password>assadsad</password><authority /></LogonUser></soap:Body></soap:Envelope>"

with bogus username and password.

I would be very grateful for any help fixing this so that my security extension class's LogonUser method is properly invoked while handling the above web service logon request.

Thanks,

Kyle

PS.  This applies to SSRS 2012 (sp1) : Microsoft SQL Server 2012 (SP1) - 11.0.3128.0 (X64)
    Dec 28 2012 20:23:12
    Copyright (c) Microsoft Corporation
    Developer Edition (64-bit) on Windows NT 6.2 <X64> (Build 9200: )


Kyle Fulton


SSRS 2008 R2 Subreport Will Not Display

$
0
0

I've looked through all the other topics on this subject but I cannot find an answer. I have a report that utilizes a dataset that runs a stored procedure. That SP returns two rows, both of which I can display in a table in the report. So far so good.

Next, I added a tablix which uses the same dataset. In the (only cell in the) detail row of the tablix I added a subreport. I added the parameters to the subreport (four of which come from the dataset and one of which comes from a main report parameter). I created a row group tied to an Id column on the dataset.

What I expect to see when I run the main report: two instances of the subreport, one for each of the two rows returned by the SP.

What I actually see: In ReportBuilder I only get the first instance of the subreport. If I call the report service from an application (rendering it as a .PDF) nothing of the subreport shows at all. In either environment, there are no errors showing in the report.

What I've checked: I made sure all the various visibility options in the tablix, the row group, the subreport, etc. were set to always show. I also added some text to the subreport's NoRowsMessageproperty. That text is shown (one for each row) for the subreport when I try to run it from the Report Service. Why this would happen I also don't know, as the parameter values I supply are identical in both cases.

I have made sure the subreport is in the detail row. I have also tried to use a list rather than a table with no luck.

My guess is that I've got something wrong in the way I'm doing the row group, but I don't know what it is.

SSRS report with Custom Assembly error

$
0
0

Hi All,

I am trying to get an SSRS report that uses a Custom Assembly (called AgeLib.dll) to work with a test SQL 2012, SharePoint 2013, and Windows 2012 server. The same SSRS report worked perfectly with the same Custom Assembly on a SharePoint 2010, SQL Server 2008, and Windows 2008 RS server.

To get the SSRS report to work on the SharePoint 2010 I needed to copy the Custom Assembly to two locations on the server. The first location was the report server bin folder "C:\Program Files\Microsoft SQL Server\MSRS10_50.CEMOSSDB\Reporting Services\ReportServer\bin", and the second location was the Visual Studio 2010 "C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\PublicAssemblies" folder.

On the new SharePoint 2013 server there is a VS 2010 folder "C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\PublicAssemblies", but there is no Report Server bin folder. The Report Server folder goes up to "C:\Program Files\Microsoft SQL Server\MSRS11.MSSQLSERVER\Reporting Services", and only has a LogFiles folder within it.

I tried created the missing folders (ReportServer and bin) and placing the Custom Assembly file in to it and then running the SSRS report but I get an error:

*********Error Message***********

Error while loading code module: ‘AgeLib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=2a5a595faa959cbb’. Details: Could not load file or assembly 'AgeLib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=2a5a595faa959cbb' or one of its dependencies. The system cannot find the file specified.

********************************

All my other SSRS reports that do not require a Custom Assembly work perfectly on SharePoint 2013. When I setup SSRS on the test SharePoint 2013 server I installed the "Report Services – SharePoint"and the "Reporting Services Add-in for SharePoint Products"SQL Server features, but not the "Report Services – Native" feature. Do I need to also install the “Report Services – Native” SQL Server feature, or do I need to change the permissions on the folders I created manually?

I hope you can help.
CEStar




Report model support in SQL 2012

$
0
0
What is the real scoop on report model support in 2012? I've tried to use the new tabular semantic model but unfortunately it can't fully replace the report models. So I've decided to go the report model route. It was my understanding that I just need to have 2008 BIDS. However I just read where somebody said that a report model can't be edited if the database that the report model references is SQL 2012. Can anybody confirm or deny this?

SSRS 2008 Iframe Question - Open link in the report(shown in Iframe) in a new parent window

$
0
0

I have a SSRS report that that has URLs as one of the column. This report is shown within an iFrame of some other page. I want that whenever users click on the URL field of the report, the link should open in a new Parent window rather than the existing window in which the report is shown. I have tried the following but none seem to work:

 

="javascript:void(parent.window.location.replace('http://www.xyz.com/"& Fields!Id.Value & "','_blank'))"



="javascript:void(parent.window.location.replace('http://www.xyz.com/"& Fields!Id.Value & "','_parent'))"



="javascript:void(window.open('http://www.xyz.com/"& Fields!Id.Value & "','_parent'))"



="javascript:void(window.open('http://www.xyz.com/"& Fields!Id.Value & "','_top'))"



="javascript:void(top.right_side.location('http://www.xyz.com/"& Fields!Id.Value & "','_blank'))"
 I am new to Javascript. Please help.

 

How to display a table after clicking on a chart in ssrs?

$
0
0

Hi all experts,

I need to display a table control after clicking on a chart. 

I was looking for the visibility property of the table which can be set based upon click on the bar chart.

Please respond asap...

Viewing all 10045 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>