简体   繁体   中英

Programming c# code to create a SSRS data driven subscription

I have SSRS report with parameters under SQL Reporting service 2012 standard edition. I like to export to excel and send as an attachment in the email to different receipt and receipt comes from some SQL query that means it is dynamic.

Data-driven subscription can do this but I have SQL Server 2012 Standard edition which does not support data-driven subscription and I can not upgrade, so I am looking for any code which can do the similar job like a data-driven subscription.

I found this link which has the solution to my issue. http://jaliyaudagedara.blogspot.com/2012/10/creating-data-driven-subscription.html

when I try this code under visual studio 2015 "Class Library" project by adding service reference " http://mylocalserver:81/reportserver/ReportService2010.asmx " I am getting an error on this line of code. ReportingService2010SoapClient rs= new ReportingService2010SoapClient();

Additional information about the error: Could not find default endpoint element that references contract 'ReportService2010.ReportingService2010Soap' in the ServiceModel client configuration section. This might be because no configuration file was found for your application, or because no endpoint element matching this contract could be found in the client element.

After spending enough time to make it work with "Class Library" project, I decided to do the code under web service project by adding the web service reference. with some trial and error finally, I got the working code here under web service project. below code works on my local machine which has Sql server 2012 enterprise edition but it gives me the same error saying "Data-driven subscriptions to reports" is not supported in this edition of Reporting Services" on my company server which has SQL server 2012 standard edition.

   public void DoWork()
    {
       ReportingService2010 rs = new ReportingService2010();
        rs.Credentials = CredentialCache.DefaultCredentials;
       // rs.Url = "http://mylocalserver:81/reportserver/ReportService2010.asmx";
        rs.Url = "http://companyserver/reportserver/ReportService2010.asmx";

        var reportPath = "/CYTYC Reports/";

        string report = $"{reportPath}AllContactCIPPointsReport";
        string description = "Programmatic Data Driven Subscription \"Report Server Email\" ";

        //set extension as Windows File Share
        ExtensionSettings settings = new ExtensionSettings();
        settings.Extension = "Report Server Email";


        // Set the extension parameter values.
        var extensionParams = new ParameterValueOrFieldReference[8];

        // var to = new ParameterFieldReference { ParameterName = "TO", FieldAlias = "PARAMS" }; // Data-driven.
        var to = new ParameterValue { Name = "TO", Value = "example@gmail.com" }; // Data-driven.
        extensionParams[0] = to;

        var replyTo = new ParameterValue { Name = "ReplyTo", Value = "example@gmail.com" };
        extensionParams[1] = replyTo;

        var includeReport = new ParameterValue { Name = "IncludeReport", Value = "False" };
        extensionParams[2] = includeReport;

        var renderFormat = new ParameterValue { Name = "RenderFormat", Value = "HTML4.0" };
        extensionParams[3] = renderFormat;

        var priority = new ParameterValue { Name = "Priority", Value = "NORMAL" };
        extensionParams[4] = priority;

        var subject = new ParameterValue { Name = "Subject", Value = "Subsribed Report" };
        extensionParams[5] = subject;

        var comment = new ParameterValue { Name = "Comment", Value = "Here is the link to your report." };
        extensionParams[6] = comment;

        var includeLink = new ParameterValue { Name = "IncludeLink", Value = "True" };
        extensionParams[7] = includeLink;

        settings.ParameterValues = extensionParams;

        // Create the data source for the delivery query.
        var delivery = new DataSource { Name = "" };
        var dataSourceDefinition = new DataSourceDefinition
        {
            ConnectString = "Data Source=CYTYC-LIVE;Initial Catalog=yourdatabasename",
            CredentialRetrieval = CredentialRetrievalEnum.Store,
            Enabled = true,
            EnabledSpecified = true,
            Extension = "SQL",
            ImpersonateUserSpecified = false,
            UserName = "username",
            Password = "password"
        };
        delivery.Item = dataSourceDefinition;

        // Create the data set for the delivery query.
        var dataSetDefinition = new DataSetDefinition
        {
            AccentSensitivitySpecified = false,
            CaseSensitivitySpecified = false,
            KanatypeSensitivitySpecified = false,
            WidthSensitivitySpecified = false
        };
        var queryDefinition = new QueryDefinition
        {
            CommandText = @"Your select * from Query",
            CommandType = "Text",
            Timeout = 45,
            TimeoutSpecified = true
        };
        dataSetDefinition.Query = queryDefinition;
        var results = new DataSetDefinition();
        var oServerInfoHeader = new ServerInfoHeader();
        var oTrustedUserHeader = new TrustedUserHeader();

        bool changed;
        string[] paramNames;
        try
        {
            results = rs.PrepareQuery(delivery, dataSetDefinition, out changed, out paramNames);//.PrepareQuery(oTrustedUserHeader, delivery, dataSetDefinition, out results, out changed,out paramNames);

        }
        catch (Exception ex)
        {

            Console.WriteLine(ex.Message);
        }

        var dataRetrieval = new DataRetrievalPlan { DataSet = results, Item = dataSourceDefinition };


        // Set the event type and match data for the delivery.
        const string eventType = "TimedSubscription";
        const string matchData = "<ScheduleDefinition><StartDateTime>2018-06-01T14:00:00-07:00</StartDateTime><WeeklyRecurrence><WeeksInterval>1</WeeksInterval><DaysOfWeek><Monday>True</Monday><Tuesday>True</Tuesday><Wednesday>True</Wednesday><Thursday>True</Thursday><Friday>True</Friday></DaysOfWeek></WeeklyRecurrence></ScheduleDefinition>";

        //const string eventType = "SnapshotUpdated";
        //const string matchData = null;

        //// Set the report parameter values.
        //var parameters = new ParameterValueOrFieldReference[1];

        //// i am retrieving value EMAIL from database and I am passing that value as my report parameter value
        //var reportparam = new ParameterFieldReference { ParameterName = "yourreportparametername", FieldAlias = "PARAMS" }; // Data-driven.

        //parameters[0] = reportparam;

        var parameters = new ParameterValue[1];
        var reportparam = new ParameterValue {Name = "yourreportparametername", Value = "yourreportparametervalue"};
        parameters[0] = reportparam;

        string subscriptionId = "";
        try
        {

            subscriptionId = rs.CreateDataDrivenSubscription(report, settings, dataRetrieval, description, eventType, matchData, parameters);
            //(oTrustedUserHeader, report, settings, dataRetrieval,description, eventType, matchData, parameters,out subscriptionId);
        }
        catch (System.Web.Services.Protocols.SoapException ex)
        {
            Console.WriteLine(ex.Detail.InnerText.ToString(CultureInfo.InvariantCulture));
        }

    }

You don't say why you need the Data Driven subscriptions - a regular SSRS subscription can e-mail an Excel report with set or default parameters.

There aren't any third party tools that I know of that emulates the Data Driven subscriptions but there have been some users who have created their own.

If you just want to trigger a subscription based on criteria, you could just use an SSIS job to run the query to determine whether to send or not and trigger the subscription if so.

Something like Data Driven Subscriptions SSRS Standard Edition 2008

If you need something more complicated (like varying TO/CC recipients, changing parameter values...), you'll need to do a bit more programming. Here's a couple things to get started with the theory and code:

https://www.mssqltips.com/sqlservertip/4249/simulate-reporting-services-data-driven-subscriptions-on-unsupported-editions/

http://www.sqlservercentral.com/articles/Reporting+Services+(SSRS)/163119/

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM