A condition the ICmTask object must satisfy before it may be considered complete. Postcondition expressions are specified in the class definition for the task (as class constant properties). They cannot be set on a task instance.

A postcondition is is evaluated when aICmTask object is in the WORKING state, and changeState(LifecycleChangeFlags.PROMOTE) is invoked on the ICmTask.

A condition is expressed as an SQL predicate applied to the ICmTask object itself, or to objects related to the ICmTask through object-valued properties. For example, if you have a claim processing task that cannot be completed until its ClaimStatus property is set to CLOSED, then the postcondition expression would be ClaimStatus = 'CLOSED'.

A postcondition has the same syntax requirements as the FilterExpression property.

Namespace:  FileNet.Api.Core
Assembly:  FileNet.Api (in FileNet.Api.dll)

ToggleSyntax

Visual Basic (Declaration)
ReadOnly Property PostCondition As String
C#
string PostCondition { get; }
Visual C++
property String^ PostCondition {
	String^ get ();
}
JavaScript
function get_postCondition();

ToggleRemarks

ToggleSee Also