Documents are processed in several process steps within a process. Each process step describes certain operations (activities) that are to be performed on the documents.
A process step is based on an activity and then specifically configured for what you want to achieve in your process.
Column | Data type | Max. length (bytes) | Allow nulls | Description |
ID | int | 4 | False | Unique identifier of the process step. |
Rev | int | 4 | False | Revision number. For internal use. |
Acl | varbinary(max) | max | False | For internal use only. |
ProcessID | int | 4 | False | The ID of related process (ID in C_Process). |
Name | nvarchar(255) | 510 | False | The name of the process step. |
FeatureID | int | 4 | False | The ID of related feature (ID in C_Feature). |
TokensToJoin | int | 4 | False | The number of tasks to synchronize. |
ParameterSet | varbinary(max) | max | False | The parameter set of the process step. The configuration of the process step is stored here. |
Stopped | int | 4 | False | 1 = process step disabled (paused). |
Identifier | nvarchar(255) | 510 | False | The unique identifier of the process step. |
Filter | varbinary(max) | max | False | Specified filters for the process step. (For more information, see XBOUND Help topic "Processing documents and media that meet specified criteria." |
ProcCanceled | int | 4 | False | Indicates whether canceled documents are to be ignored when applying a process rule (the setting on the tab of the dialog). |
ReportingCatID | int | 4 | False | The ID of related reporting category (ID in C_ReportingCat). |
Documentation | varbinary(max) | max | False | Design comments associated with the process step. |
AllowParallel | int | 4 | False | can be selected in the dialog. |
IsEnd | int | 4 | False | The Production End Point setting. 0 = belongs to the backlog. 1 = not part of the backlog. |
IsCaptureEnd | int | 4 | False | The setting.0 = Not a Capture end point, and therefore relevant for Capture statistics. Fields can be evaluated and the documents can be included in the Capture statistics in the reports. 1 = This is a Capture end point, and therefore not relevant for Capture statistics. |
DeletedAt | datetime | 8 | True | The date when the data set was deleted from the XBOUND database (main database). Available in XBOUND 3.8 and later. |
Name | Columns |
FK_C_ProcessStep_C_Process | ProcessID -> C_Process.ID |