A process is a complete rule specifying how documents are to be processed by XBOUND. Any number of processes can run simultaneously.
Column | Data type | Max. length (bytes) | Allow nulls | Description |
ID | int | 4 | False | Unique identifier of the process. |
Rev | int | 4 | False | Revision number. For internal use. |
Acl | varbinary(max) | max | False | For internal use only. |
ClientID | int | 4 | False | The ID for the related client (ID in C_Client). |
Name | nvarchar(255) | 510 | False | The name of the process. |
Stopped | int | 4 | False | 0 = The process is activated. 1 = The process is not activated. |
Layout | varbinary(max) | max | False | Currently not used. |
SessionID | bigint | 8 | False | Unique identifier of the session that checked out the document. From the W_Session table. Internal. |
SessionSiteId | int | 4 | False | Currently not used. |
Identifier | nvarchar(255) | 510 | False | The unique identifier of the process. |
Documentation | varbinary(max) | max | False | Design comments associated with the process. |
Hidden | int | 4 | False | Currently not used. |
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_Process_C_Client | ClientID -> C_Client.ID |