Remove Report Configure

API Type

Web Services

Description

Removes a report configuration from the system.

Syntax

public virtual void RemoveReportConfigure(string reportName)

Parameters

Name Type Description

reportName

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

Output

None.

Example

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

try
	{
    svc.RemoveReportConfigure(reportName);
	}

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

Supported Versions

3.2.0.4 and higher