Reporting Archives - Aric Levin's Digital Transformation Blog http://aric.isite.dev/tag/reporting/ Microsoft Dynamics 365, Power Platform and Azure Thu, 12 May 2022 05:01:39 +0000 en-US hourly 1 https://wordpress.org/?v=6.5.3 Permission accessing SSRS Report Server/Manager http://aric.isite.dev/sql/post/permission_accessing_ssrs_report_server/ Fri, 04 Apr 2014 18:50:00 +0000 https://aric.isite.dev/index.php/2014/04/04/permission-accessing-ssrs-report-server-manager/ Recently we have encountered an issue where a domain admin (and local admin) account was trying to access the SSRS Report Manager and Report Server web sites and was getting the following error:
User DOMAINUserAccount does not have the required permissions. Verify that the permissions have been grated and Windows User Account Control (UAC) have been addressed.

The post Permission accessing SSRS Report Server/Manager appeared first on Aric Levin's Digital Transformation Blog.

]]>
Recently we have encountered an issue where a domain admin (and local admin) account was trying to access the SSRS Report Manager and Report Server web sites and was getting the following error:
User DOMAINUserAccount does not have the required permissions. Verify that the permissions have been grated and Windows User Account Control (UAC) have been addressed.

The easiest solution to the problem is to disable UAC on that machine (a restart will be required).
After that you should be able to access to SSRS Report Manager and Report Server web sites.

If you need to keep UAC running, the following KB article details the configuration required for the installation to both install and run SSRS:
http://support.microsoft.com/kb/934164

The post Permission accessing SSRS Report Server/Manager appeared first on Aric Levin's Digital Transformation Blog.

]]>
Deploy a Report Builder 3.0/VS 2010 Report on SSRS 2008 http://aric.isite.dev/dynamics/post/deploy_vs2010_report_on_ssrs2008/ Tue, 19 Jul 2011 23:31:00 +0000 https://aric.isite.dev/index.php/2011/07/19/deploy-a-report-builder-3-0-vs-2010-report-on-ssrs-2008/ Visual Studio 2010 and Report Builder 3.0 RDL reports use a new schema that is not supported by SQL Server 2008 Reporting Services. They are designed to work only with SSRS 2008 R2. Currently there is no way to publish a VS2010 Report on SQL Server 2008 without some modifications to the RDL code.

The post Deploy a Report Builder 3.0/VS 2010 Report on SSRS 2008 appeared first on Aric Levin's Digital Transformation Blog.

]]>
Visual Studio 2010 and Report Builder 3.0 RDL reports use a new schema that is not supported by SQL Server 2008 Reporting Services. They are designed to work only with SSRS 2008 R2. Currently there is no way to publish a VS2010 Report on SQL Server 2008 without some modifications to the RDL code.

Visual Studio 2010 and Report Builder 3.0 RDL reports use a new schema that is not supported by SQL Server 2008 Reporting Services. They are designed to work only with SSRS 2008 R2. Currently there is no way to publish a VS2010 Report on SQL Server 2008 without some modifications to the RDL code.

In order to publish the RDL in SSRS 2008, the following steps have to be performed:

1. Open the RDL file (not project) with Visual Studio or an Xml Editor.

2. Replace the report namespace occurrences from 2010 to 2008:

<Report xmlns_rd="http://schemas.microsoft.com/SQLServer/reporting/reportdesigner" 
  xmlns_cl="http://schemas.microsoft.com/sqlserver/reporting/2010/01/componentdefinition" 
  xmlns="http://schemas.microsoft.com/sqlserver/reporting/2010/01/reportdefinition">

Should be replaced with:

<Report xmlns_rd="http://schemas.microsoft.com/SQLServer/reporting/reportdesigner" 
  xmlns_cl="http://schemas.microsoft.com/sqlserver/reporting/2008/01/componentdefinition" 
  xmlns="http://schemas.microsoft.com/sqlserver/reporting/2008/01/reportdefinition">

 

3. Report the following Xml Tags (Keep the Xml between the Tags)

<ReportSections>
  <ReportSection>
  </ReportSection>
</ReportSections>

4. Save the Xml file and publish the report. This should now work with SSRS 2008.

The post Deploy a Report Builder 3.0/VS 2010 Report on SSRS 2008 appeared first on Aric Levin's Digital Transformation Blog.

]]>
Report Viewer Control not displaying data when deployed IIS7 http://aric.isite.dev/dynamics/post/report_viewer_control_not_displaying_data_in_iis7/ Fri, 05 Nov 2010 21:24:00 +0000 https://aric.isite.dev/index.php/2010/11/05/report-viewer-control-not-displaying-data-when-deployed-iis7/ This issue sometimes happens when you deploy a web application that contains report files on IIS7.
The reports work fine in the development environment, but once published nothing appears in the results.

The post Report Viewer Control not displaying data when deployed IIS7 appeared first on Aric Levin's Digital Transformation Blog.

]]>
This issue sometimes happens when you deploy a web application that contains report files on IIS7.
The reports work fine in the development environment, but once published nothing appears in the results.

This issue sometimes happens when you deploy a web application that contains report files on IIS7. 
The reports work fine in the development environment, but once published nothing appears in the results.
The report window will either complete and show zero pages or the “Report is being generated” message will show up:

 

The problem is that the web browser is unable to locate Reserved.ReportViewerWebControl.axd, even though the http handler might be included in the web.config file.

To verify that this is the problem, open fiddler web debugger in your Internet Explorer session and check for any 404 errors with the Reserved.ReportViewerWebControl.axd url.

 

To resolve this issue we have to manually add the http handler to the web site in IIS. Report Viewer 2008 Redistributable with SP1 should be installed of course.

  1. Open IIS.
  2. Click on the web site that you want to add the Handler Mapping to
  3. Double Click on the Handler Mappings
  4. From the actions Task Menu click on Add Managed Handler
  5. Enter the following information in the Add Managed Handler Window:
    Request Path: Reserved.ReportViewerWebControl.axd
    Type: Microsoft.Reporting.WebForms.HttpHandler, Microsoft.ReportViewer.WebForms, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
    Name: Reserved-ReportViewerWebControl-axd
  6. Click OK and you’re done.

The post Report Viewer Control not displaying data when deployed IIS7 appeared first on Aric Levin's Digital Transformation Blog.

]]>