ReportingService2006.SetExecutionOptions Method
Sets execution options and associated execution properties for a specified report.
Assembly: ReportService2006 (in ReportService2006.dll)
[SoapDocumentMethodAttribute("http://schemas.microsoft.com/sqlserver/2006/03/15/reporting/reportingservices/SetExecutionOptions", RequestNamespace = "http://schemas.microsoft.com/sqlserver/2006/03/15/reporting/reportingservices", ResponseNamespace = "http://schemas.microsoft.com/sqlserver/2006/03/15/reporting/reportingservices", Use = SoapBindingUse.Literal, ParameterStyle = SoapParameterStyle.Wrapped)] [SoapHeaderAttribute("TrustedUserHeaderValue")] [SoapHeaderAttribute("ServerInfoHeaderValue", Direction = SoapHeaderDirection.Out)] public void SetExecutionOptions( string Report, ExecutionSettingEnum ExecutionSetting, ScheduleDefinitionOrReference Item )
Parameters
- Report
- Type: System.String
The fully qualified URL of the report including the file name and .rdl file name extension.
- ExecutionSetting
- Type: ReportService2006.ExecutionSettingEnum
One of the ExecutionSettingEnum values that describes when the report executes. The value can be either Live or Snapshot.
- Item
- Type: ReportService2006.ScheduleDefinitionOrReference
The schedule definition or shared schedule (ScheduleDefinitionOrReference object) that the report server uses to execute a report on a schedule.
The table below shows header and permissions information on this operation.
SOAP Headers | (Out) ServerInfoHeaderValue |
Required Permissions | EditListItems() |
The Item parameter is valid only if the value of the ExecutionSetting parameter is Snapshot. Set the value of Item to null (Nothing in Visual Basic) if ExecutionSetting is set to Live. If you are using a shared schedule, set the value of Item to a ScheduleReference object that references an existing shared schedule. If you are defining a unique schedule, set the value of Item to the ScheduleDefinition object that defines a unique schedule. If the execution options for a report are based on a shared schedule and that shared schedule is deleted, the schedule is then associated with the individual report.
If you change the value of ExecutionSetting from Live to Snapshot, the report is removed from the cache.
using System; using System.Collections.Generic; using System.IO; using System.Text; using System.Web; using System.Web.Services; using System.Web.Services.Protocols; class Sample { static void Main(string[] args) { ReportingService2006 rs = new ReportingService2006(); rs.Url = "http://<Server Name>/_vti_bin/ReportServer/" + "ReportService2006.asmx"; rs.Credentials = System.Net.CredentialCache.DefaultCredentials; ScheduleDefinition definition = new ScheduleDefinition(); // Create the schedule definition. definition.StartDateTime = new DateTime(2006, 2, 22, 10, 15, 0); MinuteRecurrence recurrence = new MinuteRecurrence(); recurrence.MinutesInterval = 60; definition.Item = recurrence; // Apply execution settings try { rs.SetExecutionOptions("http://<Server Name>" + "/Docs/Documents/AdventureWorks Sample Reports/" + "Sales Order Detail.rdl", ExecutionSettingEnum.Snapshot, definition); } catch (SoapException ex) { Console.WriteLine(ex.Detail.OuterXml); } } }
