Defines the possible document workflow states.

Namespace: BlueCieloECM.InnoCielo.Meridian.Scripting
Assembly: BlueCieloECM.InnoCielo.Meridian (in BlueCieloECM.InnoCielo.Meridian.dll) Version: 1.4.0.0 (1.4.40.0)

Syntax

C#
[FlagsAttribute]
public enum SDocumentWorkflowFlags
Visual Basic
<FlagsAttribute> _
Public Enumeration SDocumentWorkflowFlags
Visual C++
[FlagsAttribute]
public enum class SDocumentWorkflowFlags

Members

Member nameValueDescription
AS_WF_RELEASED1 Released.
AS_WF_INITIATED2 Initiated. Waiting to be assigned to the person who will edit the document.
AS_WF_REFUSED4 Refused. The person to whom the document was assigned has refused it.
AS_WF_ASSIGNED8 Assigned. The to-do person can change the state to Under Change to start editing.
AS_WF_UNDERCHANGE16 Under Change. Documents can be edited in this state.
AS_WF_SUBMITTED32 Submitted. The editor has submitted the document for approval or review.
AS_WF_INREVIEW64 In review. Documents can be edited in this state.
AS_WF_REJECTED128 Rejected. The reviewer has rejected the document.
AS_WF_APPROVED256 Approved. Ready to be released.
AS_WF_WORKINGCOPY512 Working copy (Quick Change). Documents can be edited in this state.
AS_WF_UNCHANGED1024 Unchanged. New document.
AS_WF_RETIRED2048 Retired.
AS_WF_CDWF4096 In workflow created from a workflow definition.
AS_WF_CDWF_UNDERCHANGE4112 Under Change in workflow created from a workflow definition.
AS_WF_CDWF_INREVIEW4160 In review inside workflow created from a workflow definition.

Remarks

This enumeration overrides AS_WF_STATE defined in BlueCieloECM.AMAutoSO PIA. Has the same values as DocumentWorkflowFlags.

See Also