Share via

SharePoint SSRS integrated report manage subscription issues

Shri-6058 326 Reputation points
2023-06-23T05:24:07.3466667+00:00

Hello, I have 100s of Reports published via SharePoint 2013 integrated mode. All sudden from past one month, I cant see the manage subscription list(once you register subscription, it use to show a list of subscriber) and its now showing blank. Is there a way to retrive via database? I dont want to repair or apply april month security due to unsupported scenario. I really want to recover the manage subscription list.

Please advise a way to retrive existing subscription list for the report. Thank you

Microsoft 365 and Office | SharePoint Server | For business
SQL Server Reporting Services
SQL Server Reporting Services

A SQL Server technology that supports the creation, management, and delivery of both traditional, paper-oriented reports and interactive, web-based reports.

Microsoft 365 and Office | SharePoint | For business | Windows
0 comments No comments
{count} votes

2 answers

Sort by: Most helpful
  1. Yanli Jiang - MSFT 31,681 Reputation points Microsoft External Staff
    2023-06-26T06:42:12.2266667+00:00

    Hi Shri-6058 ,

    Please try the following PowerShell script:

    
    
    Add-PSSnapin Microsoft.SharePoint.PowerShell -ErrorAction SilentlyContinue
    
    $webApp = Get-SPWebApplication "http://yourwebappurl"
    $ssrsSubMgr = $webApp.GetSSRSReportServerSubscriptionManager()
    
    if ($ssrsSubMgr -ne $null)
    {
        Write-Host "Manage Subscription option for SSRS is available."
    }
    else
    {
        Write-Host "Manage Subscription option for SSRS is not available."
    }
    

    Note that you'll need to replace "http://yourwebappurl" with the URL of your SharePoint web application.

    For more information, please refer to:

    https://learn.microsoft.com/en-us/sql/reporting-services/subscriptions/manage-subscription-owners-and-run-subscription-powershell?view=sql-server-ver16


    If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".

    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.


  2. Yanli Jiang - MSFT 31,681 Reputation points Microsoft External Staff
    2023-06-23T07:34:51.6233333+00:00

    Hi Shri-6058 ,

    Please try to go to Central Administration->Site settings->Site collection features, and make sure "Report Server Central Administration Feature" is activated.

    Then go to the site collection, and make sure "Report Server Integration Feature" is activated at site collection level.

    If you could not see these features, please run rsSharePoint.msi and repair.

    Similar issue for your reference:

    https://social.technet.microsoft.com/Forums/office/en-US/1d980e96-4867-4412-9d38-3e34fb7114d3/report-subscriptions-menu-missing?forum=SP2016

    More troubleshooting:

    https://social.technet.microsoft.com/wiki/contents/articles/1867.sharepoint-2010-troubleshoot-sql-server-reporting-services-ssrs.aspx


    If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".

    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.


Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.