ReportExecutionService.GetExecutionInfo Method ()

 

Applies To: SQL Server 2016 Preview

Returns information about the report execution.

Namespace:   ReportExecution2005
Assembly:  ReportExecution2005 (in ReportExecution2005.dll)

Syntax

public ExecutionInfo GetExecutionInfo()
public:
ExecutionInfo^ GetExecutionInfo()
member GetExecutionInfo : unit -> ExecutionInfo
Public Function GetExecutionInfo As ExecutionInfo

Return Value

Type: ReportExecution2005.ExecutionInfo

An ExecutionInfo object containing information about the report execution.

Remarks

The table below shows header and permissions information on this operation.

SOAP Header Usage

(In) TrustedUserHeaderValue

(In) ExecutionHeaderValue

(Out) ServerInfoHeaderValue

Native Mode Required Permissions

On the main report and all subreports: ReadProperties AND ExecuteAndView

SharePoint Mode Required Permissions

On the main report and all subreports: ViewListItems

The GetExecutionInfo method returns an ExecutionInfo object, which is needed to determine and set report parameters and credentials before calling the Render method.

Use this method iteratively with the SetExecutionParameters method to evaluate parameters that have query- or expression-based defaults.

Examples

Legacy Code Example

Please see the code example in the Render method.

See Also

ReportExecutionService Class
ReportExecution2005 Namespace

Return to top