Uncheckout Process Definition

API Type

Web Services

Description

Undoes a check-out for a process definition. This method returns the status of a process definition from CheckedOut to Released without making changes to the process definition, or changing the version number.

Syntax

public virtual void UnCheckOutProcDef(string processTemplateID)

Parameters

Name Description

processTemplateID

Definition:
The unique identifier for the process definition to be checked out for modification.
Type
string
Allowed Values:
A valid process template ID

Output

None.

Example

try
	{
 IWFWorkflowService svc = GetWorkflowService();
 string processTemplateID = …
 string processDefinitionXML =
svc.UncheckoutProcDef(processTemplateID);
	}

catch (Exception ex)
	{
  Console.WriteLine("Message:\n" + ShUtil.GetSoapMessage( ex ) );
	}

Supported Versions

3.2.0.4 and higher