SSRS report viewer webpart issues in SharePoint 2013

Even though SSRS Add in has been installed on both the frontends which are in the same SharePoint 2013 farm, SSRS report viewer web part does not render any reports from one of the servers and on that server it just asks to configure the webpart by giving
an option to open the tool pane...
I am really not sure why it is not picking up the report RDL configuration, which is working fine from the other server.
 Any help on this would be really appreciated. 
Thanks in advance.

Run the SharePoint Products and Technologies Wizard on this server.  If simply running it does not fix it, remove the server from the farm and then re-join it, using the wizard.
Stacy Anothersharepointblog.blogspot.com

Similar Messages

  • Can i use Report viewer web part in SharePoint 2013 app to show SSRS reports?

    Can i use Report viewer web part in SharePoint 2013 app to show SSRS reports?

    SharePoint app you mean a simple sharePoint 2013 application like site, team site etc, or do you mean an App (the new feature like webPart).
    To add a SSRS Report viewver web part follow these steps
    1. Edit the page
    2. Choose insert a webpart
    3.Select SQL server Reporting -> SQL Server Reporting Services Report Viewer webpart
    4. Configure the webpart to show your .rdl files.
    (See the img below. Plz mark as answered if it helps).

  • SSRS Report Viewer display issues after KB2888505 and now KB2898785

    After patch KB2888505 both IE 9 and IE 10 started displaying cropped images with horizontal scroll bars when viewing SSRS Reports.  These reports functioned and fit the screen without scroll bars prior to this patch and returns
    to normal once the patch is uninstalled.  There is no compatibility mode icon in the address bar and I have tried all browser modes in the F12 Developer Tools Menu with no change.  Rolling back KB2888505 was a temp fix for my
    users until KB2898785 was installed reverting back to the same cropped reports with the scroll bar.  The only versions of IE in my environment are 9 and 10 and upgrading to 11 is not an option at this time.  Others have reported this same issue so
    maybe we can get more visibility on TechNet.    

    Hi,
    These two KB include too many Individual updates. It's hard to figure out which exact update lead to this issue.
    If you make sure the issue is caused by these updates package. The simple and easier way is to uninstall them.
    Karen Hu
    TechNet Community Support

  • Adding Report Viewer Webpart through console app Throws UpdatePanel Error

    Hi,
        I had created a console application in Visual Studio 2012, to add Report Viewer Webpart into the team site page in sharepoint 2013. I wrote a code to add the Report Viewer webpart into the sharepoint site. I followed some links to successfully
    execute the console application to add the Report Viewer webpart.
        After successful execution of the console application, if i navigate to the sharepoint site where i had added the webpart through console application, it throws the following error.
    "Cannot unregister UpdatePanel with ID 'ViewerAreaUpdatePanel' since it was not registered with the ScriptManager. This might occur if the UpdatePanel was removed from the control tree and later added again, which is not supported".
        In my console application i didn't use any UpdatePanel. Just add the webpart into the default sitepage in sharepoint. Hope it was in the default page on the sharepoint site.
       I had googled the rootcause for the error, but i end up with all the answers pointing to ScriptManager into the aspx page. But i didn't find the SafeScriptManager .dll file. I followed the steps, in some other sites to create the ScriptManager
    dll file, but that .cs project was not in compatible mode with VS 2012/2010.
    I had attached the full executing code of the console application.
    using System;
    using System.Collections.Generic;
    using System.Globalization;
    using System.Linq;
    using System.Text;
    using System.Threading.Tasks;
    using System.Web;
    using System.Web.UI;
    using System.Web.UI.WebControls.WebParts;
    using System.Xml;
    using Microsoft.ReportingServices.SharePoint.UI.WebParts;
    using Microsoft.SharePoint;
    using Microsoft.SharePoint.Client.WebParts;
    using Microsoft.SharePoint.WebPartPages;
    using PersonalizationScope = System.Web.UI.WebControls.WebParts.PersonalizationScope;
    using WebPart = Microsoft.SharePoint.WebPartPages.WebPart;
    namespace SampleSite.Accessor
    public class WebPartGalleryAccessor
    private readonly string _rootSiteUrl = "http://<server>/sites/testsite";
    private readonly string _pageUrl = "http://<server>/sites/testsite/test1/SitePages/Home.aspx";
    private const string PageName = "home.aspx";
    private const string SubSiteUrl = "test1";
    private void AddReportViewer()
    const int zoneIndex = 0;
    var reportViewerWebPart = new ReportViewerWebPart();
    AddReportViewerWebPartToSitePage(_rootSiteUrl, SubSiteUrl, _pageUrl, reportViewerWebPart, zoneIndex);
    public void AddReportViewerWebPartToSitePage(string rootSiteUrl, string subSiteUrl, string pageUrl, ReportViewerWebPart webPart, int zoneIndex)
    try
    SPSecurity.RunWithElevatedPrivileges(delegate()
    using (var pageLoadSite = new SPSite(rootSiteUrl))
    pageLoadSite.AllowUnsafeUpdates = true;
    using (var pageLoadWeb = pageLoadSite.OpenWeb(subSiteUrl))
    pageLoadWeb.AllowUnsafeUpdates = true;
    AddReportViewerWebPartToPage(pageLoadWeb, pageUrl, webPart, zoneIndex);
    pageLoadWeb.AllowUnsafeUpdates = false;
    pageLoadSite.AllowUnsafeUpdates = false;
    catch (Exception exception)
    throw new Exception("Unable to Add WebPart To Site Page: " + pageUrl + " Webpart title: " + webPart.Title + "Error: " + exception.Message);
    private string AddReportViewerWebPartToPage(SPWeb web, string pageUrl, ReportViewerWebPart webPart, int zoneIndex)
    try
    HttpRequest request = new HttpRequest("", web.Url, "");
    HttpResponse response = new HttpResponse(null);
    HttpContext.Current = new HttpContext(request, response);
    HttpContext.Current.Request.Browser = new HttpBrowserCapabilities();
    HttpContext.Current.Request.Browser.Capabilities = new System.Collections.Generic.Dictionary<string, string>();
    HttpContext.Current.Request.Browser.Capabilities["type"] = "IE7";
    HttpContext.Current.Request.Browser.Capabilities["majorversion"] = "7";
    HttpContext.Current.Request.Browser.Capabilities["minrversion"] = "0";
    HttpContext.Current.Items["HttpHandlerSPWeb"] = web;
    webPart.Title = "My Report Viewer";
    webPart.ZoneID = "Top";
    webPart.ReportPath = "/sites/testsite/Shared Documents/RemoteSalesRepor.rdl";
    webPart.AsyncRendering = false;
    webPart.DockToolBar = DockToolBarLocation.Top;
    SPFile file = web.GetFile(pageUrl);
    if (file.CheckOutType == SPFile.SPCheckOutType.None)
    file.CheckOut();
    using (SPLimitedWebPartManager manager = file.GetLimitedWebPartManager((PersonalizationScope)Microsoft.SharePoint.Client.WebParts.PersonalizationScope.Shared))
    manager.AddWebPart(webPart, webPart.ZoneID, zoneIndex);
    file.CheckIn("Webpart Added.");
    return webPart.ID;
    catch (Exception exception)
    throw new Exception("Unable to Add WebPart To Page: " + pageUrl + " Webpart title: " + webPart.Title + "Error: " + exception.Message);
       Could anyone have the solution to overcome the above issue. I was knocking my head to resolve this error.
     Note:
        I am using,
        1. sharepoint 2013
        2. SQLServer 2012R2
        3. Windows2008R2 server
     I can able to create the ReportViewer webpart in the site manually.
    Thanks
    Jaibabu
       

    Hi Jai,
    Did you find a workaround to this issue. I have the exact same issue with SharePoint foundation 2010. I am adding report viewer webpart through HTML5 web page hosted in SharePoint site.
    Regards,
    Ojas Maru ( My blog )

  • SSRS Report Viewer Web Part - Saving it as a Project Site Template

    Hi all,
    I ended up creating a custom filter web part that was passing the PUID to SSRS report viewer web part in a project site.
    Works perfectly fine until you save the site as a project site template. I attached the site template to an EPT and creating a new project. The project site created fine, but the connections between the custom filter web part and SSRS Report viewer web part
    is broken!
    Paul gave me this web part to start with, but this doesn't work in SharePoint Integrate Mode:
    http://gallery.technet.microsoft.com/projectserver/Report-Viewer-webpart-439e0062
    And SharePoint Integrated Mode is what we are pushing our clients towards.
    Any help will be highly appreciated.
    SJ

    Looks like I forgot to respond to this...apologies for the delay.
    For the client that I asked this question, I ended up writing it programmatically and it works.
    But I would prefer using products now...rather than Band-Aid approach - I guess my role is shifting.
    Luckily I was introduced to a SharePoint and Project Server developer here in London and he has been developing products for SharePoint and Project Server since version 2007! I spoke about my dilemma and he already had a product for this for SP
    integrated mode! I have now started to add this product to all my the PS2010, PS2013 implementations. Great thing is it doesn't cost much at all and he provides support for it as part of subscription. I guess I twisted his arm a little bit  - not physically!
    So far I have used the product at two sites and applied CUs over it - no issues at all. This is a proper packaged product and can't recommend it high enough. Yes, you will have to let the client know about this third party tool, but we manage the relationship
    on behalf of the client - just like when we buy Nintex, IPMO or Fluentpro products.
    If anyone is struggling with SSRS web part in Project Sites and doesn't have the time to write codes as they have multiple PS implementations on the go then you can contact
    [email protected]
    I must say his marketing isn't that great, but since he is a freelancer he only works and sells his products to people within his network, I think he maybe changing that soon! Hopefully :-)

  • Select Row as Data filter between Report viewer webpart

    Hi All,
    i have a requirement in SharePoint 2013 which has 2 SSRS Report Viewer webpart.
    i need to pass data which i select in First webpart to second webpart.
    is this possible how can i achieve this.
    Thanks for your time.
    Regards
    Bhasker
    hi

    Hi Bhasker,
    In my opinion, you can refer to the steps as below:
    1.Get the parameters from one SSRS Report Viewer Web Part:
    https://social.msdn.microsoft.com/Forums/sqlserver/en-US/454ae44f-0d29-485a-8830-d2fb0e03f250/how-to-pass-parameters-from-report-viewer-to-report-server?forum=sqlreportingservices
    http://msdn.microsoft.com/en-us/library/ff487390.aspx
    2.Pass parameters to another SSRS Report Viewer Web Part:
    http://sharepoint.infoyen.com/2012/08/25/pass-multiple-filter-parameters-to-custom-report-viewer-web-part/
    http://stackoverflow.com/questions/2564178/passing-multiple-parameters-from-custome-webpart-to-reporting-services-report-vi
    Thanks,
    Eric
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Eric Tao
    TechNet Community Support

  • Getting 'an unexpected error has occurred' while editing report viewer webpart in Sharepoint webpart

    Hi All,
    I have added report viewer webpart in a page. On click of edit webpart link I am getting webpart edit toolbox. But after clicking on apply or save button, getting the following error.
    'an unexpected error has occurred' 
    If I refresh the page then report is working fine, but webpart edit settings are not getting saved.
    Please suggest.
    Thanks in advance !
    Soumya Das

    Hi  ,
    For troubleshooting your issue, please take steps as below:
    1. Open web.config file of current web application
    2. Find the node that begins
    <trust level=
    3. Change the trust level from WSS_Minimal to
    WSS_Medium
    4. Save the file
    5. Drop to command prompt and execute : 
    iisreset
    If your issue persists, please provide detail error message of ULS log  to determine the exact cause of the error?
    For SharePoint 2010, by default, ULS log is at      
    C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\LOGS
    Best Regards,
    Eric
    Eric Tao
    TechNet Community Support

  • Report Viewer Webpart IE9 issue -Reports not visible

    Hi,
    we have several installations using Sharepoint 2010 together with Reporting Services 2008 and 2008R2.
    When displaying reports in Sharepoint through the report viewer webpart, the rendering in IE9 will sometimes not display the report. This means
    the Sharepoint site including the report viewer headline is visible, but the report itself is not rendered. After pressing ctrl+F5 the report most of the time will show up. When viewing the logs of reporting services it is clear that the report has been executed,
    but as stated it was not visible in IE9.
    Even when forcing IE9 to render all Websites in compatibility mode there is no change. Out of 10 times the report is roughly 3 times not visible.
    On systems still using IE8 there are no problems at all.
    Any ideas?
    Regards,
    Andre

    Hi,
    I just want to know whether this problem occurs on all the computers which installed Internet Explorer 9? As a test, please try to reset IE then check the result again:
    1.      
    Run Internet Explorer, use Alt + T to open Tools menu, choose Internet Options.
    2.      
    Choose Advanced tag, click “Reset…” button, click OK in the pop-up box.
    3.      
    Click OK to close Internet Options, then restart Internet Explorer.
    In you have any progress, please let me know.
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread. ”

  • Difference between Reporting Services Sharepoint Mode and Reporting Services Add In for Sharepoint 2013

    Hi, We are building company site with Sharepoint 2013 Enterprise Edition and were wondering what is the difference between Reporting Services Sharepoint Mode and Reporting Services Add In for Sharepoint 2013? What are the roles/purposes of each one? What
    happens if only Reporting Services Sharepoint Mode  installed or vise versa.
    Thank you in advance

    Reporting Services in SharePoint mode is a service for displaying, managing, and creating SSRS reports within SharePoint. The addin is a pre-req for SharePoint that is used to display reports and is required for Reporting Services in Native or SharePoint
    mode, but does not by itself do anything.
    Trevor Seward
    Follow or contact me at...
    &nbsp&nbsp
    This post is my own opinion and does not necessarily reflect the opinion or view of Microsoft, its employees, or other MVPs.

  • Reporting services in three tier SharePoint 2013 environment

    Hi,
    I am trying to integrate SQL Server 2012SP1 Reporting Services in a three tier SharePoint 2013 environment, but it seems it is not succesful.
    The setup is as following:
    SRV1: SQL Server with content, config,... and the Reporting Service databases.
    SRV2: SharePoint 2013 Application server & Central Administration
    SRV3: SharePoint Web Front with SharePoint sites
    All application pools are started with domain accounts on SRV2 & 3
    When opening the Central Administration site, the Reporting Services Service Application and its Proxy is created and configured. On SRV2 the Application exists in the application pool in IIS, but it does not appear in the SRV3. Should it be created manualluy?
    In Central Administration, when opening the site settings the Reporting Services section is created, but when opening the Site Settings for the root site the section shows variables:
    $Resources:ReportServerResources,ReportServerSiteSettingsGroupTitle;
    $Resources:ReportServerResources,ScheduleList;
    $Resources:ReportServerResources,SiteLevelSettings;
    $Resources:ReportServerResources,ManageSiteDataAlerts;
    I believe i need some help here.
    Thanks in advance.
    Best regards,
    J

    Hi J-S,
    Generally, the issue occurs if you are in the Windows Powershell instead of the SharePoint Management Shell or the Reporting Services - SharePoint mode feature is not installed. So, please double check you are using the SharePoint Management Shell or install
    the Add-in by installing the rssharepoint.msi instead. Here is the download link:
    http://www.microsoft.com/en-us/download/details.aspx?id=35583
    If it is not the issue, please install the Reporting Services - SharePoint mode from the SQL Server 2012 installation media.
    Reference:
    http://msdn.microsoft.com/en-us/library/ms144289.aspx#bkmk_cmdlets_not_recognized
    Regards,
    Mike Yin
    If you have any feedback on our support, please click
    here
    Mike Yin
    TechNet Community Support

  • Can I label a Power View sheet created in SharePoint 2013?

    Hi,
    Is this possible to label a Power View sheet created in SharePoint 2013 and have it shown on the preview snapshots?
    This is because in the PowerPivot Gallery in SharePoint 2013 has a really nice display of previews with Excel workbook that includes a label on top of the preview for each worksheet in the workbook.
    Thanks,
    Jane

    P.S.  if this is still not making sense create a power view report in SharePoint from a SSAS cube.  Save that power view report in SharePoint.  The power view report should
    have a couple of measures and 1 or 2 dimension.  Open the report just to confirm it is saved correctly.  Now go to SSAS and rename 1 of the measures or dimensions that you used, Save and rebuild your olap .  If it’s a calculated measure
    you just need to save olap.    Now open your power view report and notice that that measure/dimension you changed is no longer in the report. 
    IN one hand it is great that reports do not error and break; however, on the other hand the users might not know what measure/dimension changed and then be lost/mad because the report no longer
    works like they want.  In my opinion it would have been better if the power view broke with an error message that it cannot load because measure x does not exist than to just load fine. 
    In any case I need a method to know when a dimension/measure is modified what reports are using it.   Another example is this could even be a case where the dimension values are getting
    modified and we need to potentially make a update to any power view/pivot using this dimension as a filter? 
    Ken Craig

  • Report Viewer WebPart in SPD - Missing required page header

    Hi,
    I seem to be getting the following error when adding the Report Viewer webpart to a minimal masterpage in SPD:
    Error Rendering Control  - Unnamed 1 Missing Required Page Header
    If I create a page through the IE browser on the SharePoint then I can add the Report Viewer webpart. However when I then go to view that page in SPD - again I get the above message.
    This is truely irritating ....
    Thanks - Steve

    Looks like a bug in sharepoint or some other design-time quirk in SPD. The code in the report viewer webpart (v11.0) that throws the exception is:
    public static void RegisterCss(Page page)
    if (page.Header == null)
    throw new Exception("Missing required page header");
    HtmlLink child = new HtmlLink {
    Href = StyleSheetLink
    child.Attributes.Add("rel", "stylesheet");
    child.Attributes.Add("type", "text/css");
    page.Header.Controls.Add(child);
    ...so it appears that SPD is not fully instantiating the master page, or otherwise partially executing it. The Header property on Page should be populated with a HtmlHead instance, which is a reference to the head tag in the master page (which must have
    runat=server on it.) For me, the master page is fine -- this is why it still works when adding it via the web ui directly in the browser. When it's put through the design-time grinder in SPD, this property is null. I would presume that this is either a bug
    in the webpart, or a failing in SPD.
    I'm running sharepoint server 2010/sp2 and SPD 2010/sp2/x86, for what it's worth.

  • Page viewer webpart issue

    Hi Friends,
    Today, I inserted a Page viewer webpart on a SharePoint 2010 page and linked http://office.microsoft.com/en-us/sharepoint-server-help/introduction-control-user-access-with-permissions-HA101794487.aspx to
    that webpart.  But I got the below error when I opened that page
    Then, I went ahead and changed the URL in the webpart to https://microsoft.com.... Then, I got the correct page. Has anybody encountered this?  What is causing the issue here?
    Shonilchi..

    Hi Shonilchi,
    According to your description, you got an error when you inserted a Page viewer web part on a SharePoint 2010 page and linked
    http://office.microsoft.com/en-us/sharepoint-server-help/introduction-control-user-access-with-permissions-HA101794487.aspx to the web part.
    Based on your description, I did a test, below are my steps:
     1.Create a new page, and edit the page
     2.Click Insert ribbon under Editing Tools, and click Web Part
     3.Under Categories, select Media and Content, under Web Part, select Page Viewer, and click Add
     4.Click open the tool pane , then a message from webpart occurred, then click OK
     5.On the Link section, type
    http://office.microsoft.com/en-us/sharepoint-server-help/introduction-control-user-access-with-permissions-HA101794487.aspx, and click OK
     6.Everything worked well
    Below is a screenshot:
    Please have a try again.
    I hope this helps.
    Thanks,
    Wendy
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Issues with SharePoint 2013 after upgrading from windows 2012 to 2012 r2

    We have a Sharepoint with Sp1 environment on windows 2012. Recently we upgraded the windows 2012 to 2012 r2. After the upgrade sharepoint environment is completely unstable.
    At first all the sites returned 401 errors. After resolving by resetting the object cache accounts the sites are back.
    Then i see that none of the performance point dashboards work. I figured that claims to windows token service is defaulted to local system account. I previously configured with a domain account. I reconfigured to work with domain account. 
    All the dashboard pages throw error.
           Some Error logs:Failed to get document content data. System.ComponentModel.Win32Exception (0x80004005): Cannot complete this function     at Microsoft.SharePoint.SPSqlClient.GetDocumentContentRow 
    Application error when access /Dashboards/Performance Dashboard/Main.aspx, Error=The EnableScriptGlobalization property cannot be changed during async postbacks or after the Init event.   at System.Web.UI.ScriptManager.set_EnableScriptGlobalization(Boolean
    value)    
      4.  I tried to create a new dashboard and this time the performancepoint designer wont launch. After some troubleshooting i see that c2w host file didnot have the caller  C:\Program Files\Windows Identity Foundation\v3.5. 
           I added <add value="WSS_WPG" /> and now it launches
      5.  Now the Dashboard launches and peruser identity works without having kerberos enabled at IIS. I have all the spn and required delegations setup for this url . But i did not configure at the IIS level
    yet.
    It looks like lot of things got messed up and reset. Can we upgrade to windows 2012 r2 with a sharepoint application inplace. what is the recommended approach and Whats happening with Performancepoint dashboards. IS there a known issue with sharepoint 2013
    sp1.
    Raj-Shpt

    Thanks for the above article. Few issues are solved . One of the main issue is with Performancepoint Dashboard.
     I have all the spn and required delegations setup for this url . But i did not configure at
    the IIS level yet. Still per user identity works without having kerberos enabled at IIS.
    Raj-Shpt

  • Issue in sharepoint 2013 designer workflow kickoff

    We are facing issues in sharepoint 2013 designer workflow kickoff. When we kick off custom designer workflow using AD user with contribute/approve access, sendemail from task does not send an email. When we kickoff using administrator account task in
    the designer workflow sends an email. There seems to be multiple issues with kickoff. and it even does not give any error task gets created but send email does not work.
    Another issue in another approach-
    We are also not able to kickoff using one AD account which we are not login in everyday. If we kickoff using this account after 2/3 days kickoff says invalid state of object for that user. Once we login manually with that admin workflow kick off account
    again kick off starts. We do not want to let current user kickoff the workflow. 
    In both cases we are using new AD import in sp2013 and sync is done every 5 minutes.
    MCTS Sharepoint 2010, MCAD dotnet, MCPDEA, SharePoint Lead

    May be a permission issue, see whether the contributor  has enough permission to participate in the workflow.
    Also try to set Design permission to test and see whether that works.
    Hope this helps!
    Ram - SharePoint Architect
    Blog - SharePointDeveloper.in
    Please vote or mark your question answered, if the reply helps you

Maybe you are looking for

  • How to delete multiple row in classic report.

    Dear Friends, i am using 4.1 ve. i have created classic report.i want to delete row . How can i do it. i need check box in classic report and if i select multiple check box then row should delete and before delete pop up should be pop up to confirmat

  • Drag & Drop doesn't work in XP64!?

    That's a strange one... I've built a Flex interface that run's fine in XP32. Now I try to run that with Firefox 32 and the most recent Flash Player, and drag and drop doesn't work :-( The drag does not even start. Beside that problem, the app works f

  • Cancel Task in BPEL human workflow

    All, We have a requirement to cancel the task for the user using human work flow. The worklist should be deleted for the user. Let me know if oracle human workflow provides an opertaion option to cancel the task like reassign,initaiate etc. Regards,

  • Change in ring sound

    I've noticed that since the recent update that my Droid Charge rings differently.  When someone calls me the first ring is very low then it goes louder.  Is anyone else experiencing this?   If so, Is there anything that can be done about it?

  • BAPI or FM to create Price Condition

    Hi experts, Is there any BAPI or FM allowed creating Price Condition (Like VK11)? Thanks, Khanh