Get Report Configuration

API Type

Web Services

Description

Retrieves a report configuration from the system.

Syntax

public virtual WFReportConfigure GetReportConfigure(string reportName)

Parameters

Name Type Description

reportName

Definition:
The name of a report.
Type
string
Allowed Values:
A valid report name.

Output

WFReportConfigure object.

Example

IWFAdminService svc = GetAdminService();
string reportName = ...;

try
	{
    WFReportConfigure cfg = svc.GetReportConfigure(reportName);
    Console.WriteLine("Report Name: {0}, config:{1}", cfg.ReportName,
    cfg.Configure);
	}

catch (Exception ex)
	{
    Console.WriteLine("Failed! " + ShUtil.GetSoapMessage(ex));
	}

Supported Versions

3.2.0.4 and higher