Defines the possible document workflow states.

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

Syntax

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

Members

Member nameValueDescription
DWFS_UNKNOWN0 Unknown.
DWFS_RELEASED1 Released.
DWFS_INITIATED2 Initiated. Waiting to be assigned to the person that will edit the document.
DWFS_REFUSED4 Refused. The person to whom the document was assigned has refused it.
DWFS_ASSIGNED8 Assigned. The To Do person can change the state to Under Change to start editing.
DWFS_UNDERCHANGE16 Under Change. Documents can be edited in this state.
DWFS_SUBMITTED32 Submitted. The editor has submitted the document for approval or review.
DWFS_INREVIEW64 In Review. Documents can be edited in this state.
DWFS_REJECTED128 Rejected. The reviewer has rejected the document.
DWFS_APPROVED256 Approved. Ready to be released.
DWFS_WORKINGCOPY512 Working copy (Quick Change). Documents can be edited in this state.
DWFS_UNCHANGED1024 Unchanged. New document.
DWFS_RETIRED2048 Retired.
DWFS_CDWF4096 In a workflow created from a workflow definition.
DWFS_CDWF_UNDERCHANGE4112 Under change in a workflow created from a workflow definition.
DWFS_CDWF_INREVIEW4160 In review on a workflow created from a workflow definition.

Remarks

This enumeration overrides DWF_STATES defined in BlueCieloECM.AMEdm PIA.

See Also