Description: | Stores configurations of AI Analysis |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
AIA_ID | int | Yes |   |   | Identifier | |
AIA_Configuration | varchar(MAX) |   | Yes |   | Analysis configuration | |
AIA_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
AIA_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
AIA_RowVersion | timestamp |   |   | Yes | Timestamp | |
AIA_CreatedBy | varchar(255) |   |   |   | Author | |
AIA_UpdatedBy | varchar(255) |   |   |   | Last modifier | |
AIA_Guid | varchar(36) |   |   |   | (newid()) | BPS environment (DEV/TEST/PROD) independent identifier |
AIA_ASSID | int |   |   |   | DocTypeAssocciations ForeignKey |
Name | Foreign Table | Primary Key |
---|---|---|
FK_AIAnalysisConfigurations_DocTypeAssocciations | AIAnalysisConfigurations | PK_DocTypeAssocciation |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_AIAnalysisConfigurations | Yes | Yes | CLUSTERED | 100 |
UQ_AIAnalysisConfigurations_Guid | Yes |   | NONCLUSTERED | 100 |
IX_AIAnalysisConfigurations_AIA_ASSID |   |   | NONCLUSTERED | 100 |
Description: | Stores active front-ends for database |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
AFS_ID | int | Yes |   |   | Identifier | |
AFS_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
AFS_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
AFS_RowVersion | timestamp |   |   | Yes | Timestamp | |
AFS_CreatedBy | varchar(255) |   |   |   | Author | |
AFS_UpdatedBy | varchar(255) |   |   |   | Last modifier | |
AFS_Address | varchar(250) |   |   |   | Local IP address of front-end | |
AFS_HeartBeat | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last registered heartbeat of front-end |
AFS_StartTime | datetime |   |   |   | ([dbo].[GetDbDate]()) | Start time of front-end |
AFS_Name | varchar(255) |   |   |   | Name of the fronton |
Name | Foreign Table | Primary Key |
---|
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_ActiveFrontendServers | Yes | Yes | CLUSTERED | 100 |
Description: | Contains list of active tasks along with information about their type and to which elements they belong. |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
TSK_ID | int | Yes |   |   | Identifier | |
TSK_WFDID | int |   |   |   | Definition identifier | |
TSK_STPID | int |   |   |   | Step identifier | |
TSK_AssignTypeID | int |   |   |   | ((1)) | Assign type |
TSK_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
TSK_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
TSK_IsDeleted | bit |   |   |   | ((0)) | A flag indicating whether the row is deleted |
TSK_ElementWasDisplayed | bit |   |   |   | ((0)) | Determines if task was diplayed |
TSK_IsFinished | bit |   |   |   | ((0)) | Determines if task is finished |
TSK_ActualCreatedTasks | int |   | Yes |   | Actual created tasks | |
TSK_WFHID | int |   | Yes |   | Historical version identifier | |
TSK_Version | int |   |   |   | ((0)) | Task version |
TSK_OrgID | int |   | Yes |   | Task identifier for which the current task is a substitution for | |
TSK_ManualCover | bit |   |   |   | ((0)) | Determines whether the substitution is added manually or automatically (1 = manually, 0 = automatically) |
TSK_DurationToFinish | int |   |   |   | ((0)) | Time remaining to finish the task |
TSK_FinishedByUser | bit |   |   |   | ((0)) | Determines if the task was finished by the user |
TSK_FinishDate | datetime |   | Yes |   | Task completion date | |
TSK_FormID | int |   | Yes |   | Task form identifier | |
TSK_AllowCover | bit |   |   |   | ((1)) | Determines if covers are available |
TSK_FinishedByAdmin | bit |   | Yes |   | Determines if the task was finished by the admin | |
TSK_WFHIDTaskFinished | int |   | Yes |   | Historical version of the task in which it was completed | |
TSK_AssignKind | int |   | Yes |   | Task assign kind | |
TSK_Flag | int |   |   |   | ((1)) | Determines if task is flagged |
TSK_Overdue | bit |   |   |   | ((0)) | Specifies whether task is expired |
TSK_OverdueDate | datetime |   | Yes |   | Specifies when task expired | |
TSK_Name | varchar(50) |   | Yes |   | Tasks name | |
TSK_Description | varchar(MAX) |   | Yes |   | Tasks description | |
TSK_User | varchar(255) |   | Yes |   | User who performed the task | |
TSK_UserName | varchar(255) |   | Yes |   | Display name of user who performed the task | |
TSK_ExecutorLogin | varchar(255) |   | Yes |   | Login of user from group who has finished the task | |
TSK_ExecutorName | varchar(255) |   | Yes |   | Display name of user from group who has finished the task | |
TSK_ToGroup | bit |   |   |   | Specifies if task was assigned to the group | |
TSK_COMID | int |   |   |   | Company ID | |
TSK_FinishPath | varchar(100) |   | Yes |   | Finish path | |
TSK_DeskDescription | varchar(MAX) |   | Yes |   | Description of the business rule used to determine to which users tasks will be assigned. Used only in Designer Desk projects. | |
TSK_RowVersion | timestamp |   |   | Yes | Timestamp | |
TSK_CreatedBy | varchar(255) |   |   |   | Author | |
TSK_UpdatedBy | varchar(255) |   |   |   | Last modifier |
Name | Foreign Table | Primary Key |
---|---|---|
FK_ActiveTasks_DicAssignTypes | ActiveTasks | PK_DicAssignTypes |
FK_ActiveTasks_Companies | ActiveTasks | PK_Companies |
FK_ActiveTasks_DicTaskFlags | ActiveTasks | PK_DicTaskFlags |
FK_ActiveTasks_WFStepForms | ActiveTasks | PK_WFStepForms |
FK_ActiveTasks_ActiveTasks_OrgID | ActiveTasks | PK_ActiveTasks |
FK_ActiveTasks_WFSteps | ActiveTasks | PK_WFSteps |
FK_ActiveTasks_WFElements | ActiveTasks | PK_WFData |
FK_ActiveTasks_WFHistoryElements | ActiveTasks | PK_WFHistory |
FK_ActiveTasks_WFHistoryElements_TaskFinished | ActiveTasks | PK_WFHistory |
FK_ActiveTasks_ActiveTasks_OrgID | ActiveTasks | PK_ActiveTasks |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_ActiveTasks | Yes | Yes | CLUSTERED | 0 |
IX_ActiveTasks_OrgID |   |   | NONCLUSTERED | 100 |
IX_ActiveTasks_User_IsDeleted_IsFinished_TSK_WFHID_Incl_WFDID_STPID_AssignTypeID_ElementWasDisplayed_Flag_Overdue |   |   | NONCLUSTERED | 0 |
IX_ActiveTasks_WFDID |   |   | NONCLUSTERED | 100 |
IX_ActiveTasks_WFDID_AssignTypeID_IsFinished_WFHID_User_OrgID |   |   | NONCLUSTERED | 100 |
IX_ActiveTasks_WFHID |   |   | NONCLUSTERED | 100 |
IX_ActiveTasksIs_Deleted_WFDID_STPID_WFHID |   |   | NONCLUSTERED | 100 |
IX_ActiveTasks_WFHIDTaskFinished |   |   | NONCLUSTERED | 100 |
IX_ActiveTasks_FormID |   |   | NONCLUSTERED | 100 |
IX_ActiveTasks_STPID |   |   | NONCLUSTERED | 100 |
Description: | Table contains web service methods execution log. |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
WSAL_ID | int | Yes |   |   | Identifier | |
WSAL_Version | varchar(10) |   |   |   | Web Service version | |
WSAL_MethodName | varchar(2047) |   |   |   | ||
WSAL_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Date and time of invoking a method |
WSAL_CreatedBy | varchar(255) |   |   |   | User invoking a method – in the login#displayed_name format | |
WSAL_IP | varchar(50) |   | Yes |   | IP of the computer invoking a method | |
WSAL_RowVersion | timestamp |   |   | Yes | Row version | |
WSAL_RegisteredAppLogin | varchar(255) |   | Yes |   | REST API caller login | |
WSAL_ErrorGuid | varchar(36) |   | Yes |   | Guid of correlated error log | |
WSAL_CDID | int |   | Yes |   | Content database ID that the event occured on | |
WSAL_RequestStartTime | datetime |   | Yes |   | Exact start time of the request |
Name | Foreign Table | Primary Key |
---|
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_AdminAPILogs | Yes | Yes | CLUSTERED | 100 |
Description: | Stores BPS databases migration logs. |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
DML_ID | int | Yes |   |   | Identifier | |
DML_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
DML_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
DML_RowVersion | timestamp |   |   | Yes | Timestamp | |
DML_CreatedBy | varchar(255) |   |   |   | Author | |
DML_BranchNumber | varchar(50) |   |   |   | Branch number at the start of migration | |
DML_DBVersion | int |   |   |   | Version number at the start of migration | |
DML_InstallerVersion | varchar(50) |   |   |   | Installer version | |
DML_ScriptID | int |   |   |   | Migration script ID | |
DML_ScriptBranchNumber | varchar(50) |   |   |   | Migration script branch number | |
DML_DBType | int |   |   |   | Database type: 0 - Configuration, 1 - Content, 2 - Attachments | |
DML_DBName | varchar(250) |   |   |   | Database on which the script is executed | |
DML_ScriptExecutionStatus | int |   |   |   | Script execution status: 0 - Success, 1 - Error, 2 - Info | |
DML_ScriptMessage | varchar(MAX) |   | Yes |   | Executed script message |
Name | Foreign Table | Primary Key |
---|
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_AdminDBMigrationLogs | Yes | Yes | CLUSTERED | 100 |
Description: | Table contains additional info for DB migrations or installer actions |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
SIN_ID | int | Yes |   |   | Identifier | |
SIN_Guid | varchar(36) |   |   |   | Guid | |
SIN_Info | varchar(MAX) |   | Yes |   | Additional info |
Name | Foreign Table | Primary Key |
---|
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_AdminDBScriptInfos | Yes | Yes | CLUSTERED | 0 |
UQ_AdminDBScriptInfos_Guid | Yes |   | NONCLUSTERED | 0 |
Description: | Table contains events related to communication between service and programs dependent on service. |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
ID | int | Yes |   |   | Identifier | |
Name | varchar(MAX) |   | Yes |   | Name | |
Description | varchar(MAX) |   | Yes |   | Description | |
StackTrace | varchar(MAX) |   | Yes |   | StackTrace | |
TSInsert | datetime |   | Yes |   | ([dbo].[GetDbDate]()) | Creation date |
ManagedThreadId | int |   | Yes |   | Thread ID | |
Category | nvarchar(200) |   | Yes |   | Category | |
AdditionalMessage | nvarchar(MAX) |   | Yes |   | Additional message | |
ElementId | int |   | Yes |   | Workflow instance identifier which refers to a row in WFElements table | |
Duration | int |   | Yes |   | Duration |
Name | Foreign Table | Primary Key |
---|
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_AdminDebugLogs | Yes | Yes | CLUSTERED | 100 |
Description: | Table contains logs from Hotfolders processing, HotMailBoxes processing and asynchronous OCR processing |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
FLO_ID | int | Yes |   |   | Identifier | |
FLO_FolderType | int |   |   |   | Folder type – HotMailBox or HotFolder (DicHotType) | |
FLO_Status | int |   |   |   | Information type(DicStatus) | |
FLO_FolderName | varchar(500) |   |   |   | Folder name | |
FLO_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
FLO_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
FLO_Message | varchar(MAX) |   |   |   | Message | |
FLO_Description | varchar(MAX) |   | Yes |   | Description | |
FLO_PageCount | int |   | Yes |   | Page count | |
FLO_ExecutionID | varchar(100) |   | Yes |   | Execution ID | |
FLO_ActivityID | int |   | Yes |   | Service activity ID | |
FLO_HFID | int |   | Yes |   | Column contains HotFolder ID | |
FLO_HMID | int |   | Yes |   | Column contains HotMailBox ID | |
FLO_ServiceID | int |   | Yes |   | Service's ID | |
FLO_HostName | varchar(MAX) |   | Yes |   | Name of the machine on which service was running | |
FLO_RowVersion | timestamp |   |   | Yes | Timestamp |
Name | Foreign Table | Primary Key |
---|
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_AdminFileProcessingLogs | Yes | Yes | CLUSTERED | 100 |
Description: | Table contains data about processed mail attachments |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
HMPI_ID | int | Yes |   |   | Identifier | |
HMPI_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
HMPI_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
HMPI_RowVersion | timestamp |   |   | Yes | Timestamp | |
HMPI_CreatedBy | varchar(255) |   |   |   | Author | |
HMPI_ModifiedBy | varchar(255) |   |   |   | Last modifier | |
HMPI_HMID | int |   |   |   | HotMailBox identifier which refers to a row in HotMailBoxs table | |
HMPI_MailID | varchar(MAX) |   | Yes |   | Mail identifier which refers to a row in WFMails table | |
HMPI_AttachmentID | varchar(MAX) |   |   |   | Attachment identifier which refers to a row in WFDataAttachmets table | |
HMPI_ProcessingFinishedDate | datetime |   |   |   | Date when the element was processed | |
HMPI_ProcessingStatus | int |   |   |   | Element processing status: 0 - Success, 1 - Error, 2 - ExistsInDatabase, 3 - NotProcessed, 4 - FromIsolatedStorage |
Name | Foreign Table | Primary Key |
---|---|---|
FK_AdminHotMailboxLogs_HotMailBoxes | AdminHotMailboxLogs | PK_HotMailBoxs |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_AdminHotMailboxLogs | Yes | Yes | CLUSTERED | 100 |
Description: | Stores logs for all plugins |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
PL_ID | bigint | Yes |   |   | Identifier | |
PL_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
PL_PluginID | int |   |   |   | Plugin id | |
PL_OperationGuid | varchar(36) |   | Yes |   | Guid for same operation logs | |
PL_SourceID | int |   | Yes |   | Source id which triggered the plugin | |
PL_ElementID | int |   | Yes |   | Element id | |
PL_LogType | int |   |   |   | Int value of logtype enum | |
PL_LogMessage | varchar(MAX) |   | Yes |   | String value of logs | |
PL_RowVersion | timestamp |   |   | Yes | Timestamp |
Name | Foreign Table | Primary Key |
---|
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_AdminPluginLogs | Yes | Yes | CLUSTERED | 100 |
IX_AdminPluginLogs_PluginID |   |   | NONCLUSTERED | 100 |
Description: | Stores logs for all services. |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
SL_ID | bigint | Yes |   |   | Log id. | |
SL_ServiceID | int |   |   |   | Service id. | |
SL_ManagedThreadID | int |   |   |   | Thread id. | |
SL_Title | varchar(1000) |   | Yes |   | Title of log. | |
SL_Message | nvarchar(MAX) |   | Yes |   | Main content of log. | |
SL_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Time of insert. |
SL_Category | varchar(200) |   | Yes |   | Category of log. | |
SL_Role | int |   | Yes |   | Role of service. | |
SL_Status | varchar(100) |   |   |   | Status of log. | |
SL_ContentDbId | int |   | Yes |   | Column shows content database id | |
SL_RowVersion | timestamp |   |   | Yes | Row version |
Name | Foreign Table | Primary Key |
---|
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_AdminServiceLogs | Yes | Yes | CLUSTERED | 100 |
Description: | Stores trace log entries |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
TEV_ID | int | Yes |   |   | Identifier | |
TEV_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
TEV_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
TEV_RowVersion | timestamp |   |   | Yes | Timestamp | |
TEV_TSEID | int |   |   |   | Logging session (TSE_Sessions) foreign key | |
TEV_UserTime | datetime |   |   |   | User logging date and time | |
TEV_Category | int |   |   |   | Log category type | |
TEV_ExecutionTime | int |   | Yes |   | Execution time (in milliseconds) | |
TEV_DbId | int |   | Yes |   | Database identifier | |
TEV_AppId | int |   | Yes |   | Application identifier | |
TEV_Data | varchar(MAX) |   | Yes |   | Trace entry data | |
TEV_Severity | int |   |   |   | ((1000)) | Severity level of event |
TEV_Type | int |   |   |   | ((1)) | Type of event |
Name | Foreign Table | Primary Key |
---|---|---|
FK_AdminTraceEvents_AdminTraceSessions | AdminTraceEvents | PK_AdminTraceSessions |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_AdminTraceEvents | Yes | Yes | CLUSTERED | 100 |
IX_AdminTraceEvents_TSEID |   |   | NONCLUSTERED | 100 |
Description: | Stores informations about logging sessions |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
TSE_ID | int | Yes |   |   | Identifier | |
TSE_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
TSE_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
TSE_RowVersion | timestamp |   |   | Yes | Timestamp | |
TSE_SessionGuid | varchar(36) |   |   |   | Guid of logging sessions | |
TSE_UserTime | datetime |   |   |   | User logging date and time | |
TSE_UserLogin | varchar(255) |   |   |   | User login | |
TSE_UserLanguage | varchar(50) |   |   |   | User language | |
TSE_UserBrowserData | varchar(MAX) |   | Yes |   | User browser optional data |
Name | Foreign Table | Primary Key |
---|---|---|
FK_AdminTraceEvents_AdminTraceSessions | AdminTraceEvents | PK_AdminTraceSessions |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_AdminTraceSessions | Yes | Yes | CLUSTERED | 100 |
IX_U_AdminTraceSessions_SessionGuid | Yes |   | NONCLUSTERED | 80 |
Description: | Table containing event logs |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
WEL_ID | bigint | Yes |   |   | Identifier | |
WEL_RowVersion | timestamp |   |   | Yes | Timestamp | |
WEL_CreatedBy | varchar(255) |   |   |   | Author | |
WEL_UpdatedBy | varchar(255) |   |   |   | Last modifier | |
WEL_WFDID | int |   | Yes |   | ID of element connected with log | |
WEL_Level | int |   |   |   | Level of importance | |
WEL_Source | int |   |   |   | Event category | |
WEL_Category | int |   |   |   | Category | |
WEL_Name | varchar(1000) |   |   |   | Name of event | |
WEL_DateAndTime | datetime |   |   |   | ([dbo].[GetDbDate]()) | Time of occurrence |
WEL_ManagedThreadID | int |   |   |   | Managed thread ID | |
WEL_DEFID | int |   | Yes |   | Definios ID | |
WEL_CDID | int |   | Yes |   | Content database ID | |
WEL_ErrorGuid | varchar(36) |   | Yes |   | Error identifier | |
WEL_LogMetadata | varchar(MAX) |   | Yes |   | Stores log metadata, e.g. used by user list cache | |
WEL_Details | nvarchar(MAX) |   | Yes |   | Log details |
Name | Foreign Table | Primary Key |
---|---|---|
FK_AdminWFEventLogs_DicLogCategories | AdminWFEventLogs | PK_DicLogCategories |
FK_AdminWFEventLogs_DicLogSources | AdminWFEventLogs | PK_DicLogSources |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_AdminWFEventLogs | Yes | Yes | CLUSTERED | 100 |
IX_AdminWFEventLogs_WEL_Category |   |   | NONCLUSTERED | 80 |
Description: | Service queue for AI analysis indexing operations |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
AIQ_ID | int | Yes |   |   | Identifier | |
AIQ_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Insert date |
AIQ_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Update date |
AIQ_RowVersion | timestamp |   |   | Yes | Row version | |
AIQ_DEFID | int |   | Yes |   | Analyzed process | |
AIQ_Operation | int |   |   |   | Performed operation | |
AIQ_Priority | int |   |   |   | Priority | |
AIQ_Status | int |   |   |   | Status: ProcessingPending = 0 queue element is waiting to be processed by service, Processing = 1 queue element is now being processed, MovePending = 2 queue element has been processed sucessfully. Waiting for the path transition, Moving = 3 queue element is undergoing path transition after sucessful processing, MoveSuccess = 4 path transition successful, ProcessingError = 100 error during processing - number of allowed attempts exceeded, MoveError = 101 error on path transition - number of allowed attempts exceeded, ProcessingSuspended = 200 processing of the queue element was suspended | |
AIQ_ServiceName | varchar(255) |   | Yes |   | Processing service name | |
AIQ_AttemptsNumber | int |   |   |   | ((0)) | Processing attempts number |
AIQ_LastAttemptTime | datetime |   | Yes |   | Last Attempt Time | |
AIQ_LastError | varchar(MAX) |   | Yes |   | Last Error | |
AIQ_ThreadId | int |   | Yes |   | Processing Thread Id | |
AIQ_ProcessingFinishedTime | datetime |   | Yes |   | Processing finished time | |
AIQ_DateFrom | datetime |   | Yes |   | Analyzed items start date | |
AIQ_DateTo | datetime |   | Yes |   | Analyzed items end date |
Name | Foreign Table | Primary Key |
---|---|---|
FK_AiAnalysisQueueItems_WFDefinitions | AiAnalysisQueueItems | PK_WFDefinitions |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_AiAnalysisQueueItems | Yes | Yes | CLUSTERED | 100 |
Description: | BPS Analytics Application-Process-WorkFlow-Step-ElementsCount-ActiveElementsCount aggregate table |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
ADA_ID | int | Yes |   |   | Identifier | |
ADA_APPID | int |   |   |   | Application Identifier | |
ADA_DEFID | int |   |   |   | Process Identifier | |
ADA_WFID | int |   |   |   | Workflow Identifier | |
ADA_STPID | int |   |   |   | Step Identifier | |
ADA_ElementsCount | int |   |   |   | ((0)) | Amount of elements |
ADA_ActiveElementsCount | int |   |   |   | ((0)) | Amount of active elements |
Name | Foreign Table | Primary Key |
---|
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_AnalyticsDocumentsAggregates | Yes | Yes | CLUSTERED | 0 |
Description: | BPS Analytics Step-Date-DTYPE-User aggregate table |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
AEA_ID | int | Yes |   |   | Identifier | |
AEA_APPID | int |   | Yes |   | Application Identifier | |
AEA_DEFID | int |   | Yes |   | Definition Identifier | |
AEA_WFID | int |   | Yes |   | WorkFlow Identifier | |
AEA_STPID | int |   | Yes |   | Step Identifier | |
AEA_Date | date(10) |   | Yes |   | Date | |
AEA_DTYPEID | int |   | Yes |   | Document type ID | |
AEA_User | varchar(600) |   | Yes |   | Involved UserName | |
AEA_FinishedTasksDurationSum | bigint |   |   |   | ((0)) | Summary of finished tasks duration (in seconds) |
AEA_FinishedTasksCount | int |   |   |   | ((0)) | Finished tasks count |
AEA_FinishedTasksInvolvedUsers | int |   |   |   | ((0)) | Finished tasks involved users |
AEA_FormEditDurationSum | bigint |   |   |   | ((0)) | Summary of form edit duration (in seconds) |
AEA_FormEditHistoryVersionsCount | int |   |   |   | ((0)) | Form edit history versions count |
AEA_FormEditElementsCount | int |   |   |   | ((0)) | Form edit elements count |
AEA_FormFinishedEditDurationSum | bigint |   |   |   | ((0)) | Summary of finished form edit duration (in seconds) |
AEA_FinishedTasksOverdueTasksSum | int |   |   |   | ((0)) | Amount of overdue tasks |
AEA_StepEnterCount | int |   |   |   | ((0)) | Step enter count |
AEA_StepReEnterCount | int |   |   |   | ((0)) | Step reenter count |
AEA_TimeInStepSum | bigint |   |   |   | ((0)) | Time spend in step |
AEA_TimeInStepElementsCount | int |   |   |   | ((0)) | Amount of elements |
AEA_UserId | varchar(600) |   | Yes | Yes | User BPSID | |
AEA_UserName | varchar(600) |   | Yes | Yes | User display name | |
AEA_FormFinishedEditHistoryVersionsCount | int |   |   |   | ((0)) | Finished form history versions count |
Name | Foreign Table | Primary Key |
---|
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_AnalyticsElementsAggregates | Yes | Yes | CLUSTERED | 0 |
IX_AnalyticsElementsAggregates_APPID_DEFID_WFID_STPID |   |   | NONCLUSTERED | 0 |
IX_AnalyticsElementsAggregates_APPID_DEFID_WFID_STPID_Date_User |   |   | NONCLUSTERED | 0 |
IX_AnalyticsElementsAggregates_DEFID_WFID_STPID |   |   | NONCLUSTERED | 0 |
IX_AnalyticsElementsAggregates_STPID |   |   | NONCLUSTERED | 0 |
IX_AnalyticsElementsAggregates_USERID |   |   | NONCLUSTERED | 0 |
IX_AnalyticsElementsAggregates_WFID_STPID |   |   | NONCLUSTERED | 0 |
Description: | BPS Analytics Path-Date-DTYPE-TransitionsCount aggregate table |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
APA_ID | int | Yes |   |   | Identifier | |
APA_WFID | int |   |   |   | Workflow Identifier | |
APA_PATHID | int |   |   |   | Path Identifier | |
APA_Date | date(10) |   |   |   | Date | |
APA_DTYPEID | int |   |   |   | Document type ID | |
APA_User | varchar(600) |   | Yes |   | User name | |
APA_PathTransitionsCount | bigint |   |   |   | ((0)) | Amount of path transitions |
APA_RePathTransitionsCount | bigint |   |   |   | ((0)) | Amount of path retransitions |
APA_UserId | varchar(600) |   | Yes | Yes | User BPSID | |
APA_UserName | varchar(600) |   | Yes | Yes | User display name | |
APA_NextStepId | int |   |   |   | Next step ID |
Name | Foreign Table | Primary Key |
---|
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_AnalyticsPathsAggregates | Yes | Yes | CLUSTERED | 0 |
IX_AnalyticsPathsAggregates_USERID |   |   | NONCLUSTERED | 0 |
Description: | BPS Analytics PerforanceIndicators-Date-ActualTime aggregate table |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
APIA_ID | int | Yes |   |   | Identifier | |
APIA_PIID | int |   |   |   | Foreign key to PerformanceIndicators table | |
APIA_WFID | int |   |   |   | Foreign key to Workflows table | |
APIA_Date | date(10) |   |   |   | Date | |
APIA_ActualTimeSum | bigint |   |   |   | ((0)) | Sum of actual time per performance indicator in workflow grouped by date |
APIA_ActualTimeCount | int |   |   |   | ((0)) | Count of performance indicator in workflow grouped by date |
Name | Foreign Table | Primary Key |
---|
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_AnalyticsPerformanceIndicatorsAggregates | Yes | Yes | CLUSTERED | 0 |
IX_AnalyticsPerformanceIndicatorsAggregates_WFID_Date_PIID |   |   | NONCLUSTERED | 0 |
Description: | KPI analytics per step |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
ASTP_ID | int | Yes |   |   | Identifier | |
ASTP_Name | varchar(50) |   |   |   | Name of analytics steps | |
ASTP_STPID | int |   |   |   | Related wfStep identifier | |
ASTP_AvgStepDurationByHours | int |   | Yes |   | Average step duration (by hours) | |
ASTP_AvgEditDurationBySec | int |   | Yes |   | Average edit duration (by second) | |
ASTP_Count | int |   | Yes |   | Count | |
ASTP_AvgStepDurationInLast365DaysByHours | int |   | Yes |   | Average step duration in last 365 days (by hours) | |
ASTP_AvgEditDurationInLast365DaysBySec | int |   | Yes |   | Average edit duration in last 365 days (by second) | |
ASTP_CountLast365Days | int |   | Yes |   | Count in the last 365 days | |
ASTP_AvgStepDurationInCurrentYearByHours | int |   | Yes |   | Average step duration in current year (by hours) | |
ASTP_AvgEditDurationInCurrentYearBySec | int |   | Yes |   | Average edit duration in current year (by second) | |
ASTP_CountCurrentYear | int |   | Yes |   | Count (current year) | |
ASTP_AvgStepDurationInLast30daysByHours | int |   | Yes |   | Average step duration in last 30 days (by hours) | |
ASTP_AvgEditDurationInLast30daysBySec | int |   | Yes |   | Average edit duration in last 30 days (by second) | |
ASTP_CountLast30Days | int |   | Yes |   | Count (last 30 days) | |
ASTP_AvgStepDurationInMonthBeforeByHours | int |   | Yes |   | Average step duration in month before (by hours) | |
ASTP_AvgEditDurationInMonthBeforeBySec | int |   | Yes |   | Average edit duration in month before (by second) | |
ASTP_CountMonthBefore | int |   | Yes |   | Count (month before) | |
ASTP_Trend | int |   | Yes |   | Trend | |
ASTP_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
ASTP_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
ASTP_RowVersion | timestamp |   |   | Yes | Timestamp | |
ASTP_AvgStepDurationInWorkingDays | decimal(20,2) |   | Yes |   | Average step duration in working days | |
ASTP_AvgStepDurationInLast365DaysInWorkingDays | decimal(20,2) |   | Yes |   | Average step duration in last 365 days | |
ASTP_AvgStepDurationInCurrentYearInWorkingDays | decimal(20,2) |   | Yes |   | Average step duration in current year | |
ASTP_AvgStepDurationInLast30daysInWorkingDays | decimal(20,2) |   | Yes |   | Average step duration in last 30 days | |
ASTP_AvgStepDurationInMonthBeforeInWorkingDays | decimal(20,2) |   | Yes |   | Average step duration in month before |
Name | Foreign Table | Primary Key |
---|---|---|
FK_AnalyticsSteps_WFSteps | AnalyticsSteps | PK_WFSteps |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_AnalyticsSteps | Yes | Yes | CLUSTERED | 100 |
Description: | KPI analytics per user |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
AUSR_ID | int | Yes |   |   | Identifier | |
AUSR_Name | varchar(50) |   |   |   | Name of analytics user | |
AUSR_STPID | int |   |   |   | Related wfStep identifier | |
AUSR_UserName | varchar(255) |   | Yes |   | User name | |
AUSR_UserLogin | varchar(255) |   | Yes |   | User login | |
AUSR_AvgStepDurationByHours | int |   | Yes |   | Average step duration (by hours) | |
AUSR_AvgEditDurationBySec | int |   | Yes |   | Average step duration (by second) | |
AUSR_Count | int |   | Yes |   | Count | |
AUSR_AvgStepDurationInLast365DaysByHours | int |   | Yes |   | Average step duration in last 365 days (by hours) | |
AUSR_AvgEditDurationInLast365DaysBySec | int |   | Yes |   | Average edit duration in last 365 days (by second) | |
AUSR_CountLast365Days | int |   | Yes |   | Count (last 365 days) | |
AUSR_AvgStepDurationInCurrentYearByHours | int |   | Yes |   | Average step duration in current year (by hours) | |
AUSR_AvgEditDurationInCurrentYearBySec | int |   | Yes |   | Average step duration in current year (by second) | |
AUSR_CountCurrentYear | int |   | Yes |   | Count (current year) | |
AUSR_AvgStepDurationInLast30daysByHours | int |   | Yes |   | Average step duration in last 30 days (by hours) | |
AUSR_AvgEditDurationInLast30daysBySec | int |   | Yes |   | Average edit duration in last 30 days (by second) | |
AUSR_CountLast30Days | int |   | Yes |   | Count (last 30 days) | |
AUSR_AvgStepDurationInMonthBeforeByHours | int |   | Yes |   | Average step duration in month before (by hours) | |
AUSR_AvgEditDurationInMonthBeforeBySec | int |   | Yes |   | Average edit duration in month before (by second) | |
AUSR_CountMonthBefore | int |   | Yes |   | Count (month before) | |
AUSR_Trend | int |   | Yes |   | Trend | |
AUSR_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
AUSR_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
AUSR_RowVersion | timestamp |   |   | Yes | Timestamp | |
AUSR_AvgStepDurationInWorkingDays | decimal(20,2) |   | Yes |   | Average step duration in working days | |
AUSR_AvgStepDurationInLast365DaysInWorkingDays | decimal(20,2) |   | Yes |   | Average step duration in last 365 days (in working days) | |
AUSR_AvgStepDurationInCurrentYearInWorkingDays | decimal(20,2) |   | Yes |   | Average step duration in current year (in working days) | |
AUSR_AvgStepDurationInLast30daysInWorkingDays | decimal(20,2) |   | Yes |   | Average step duration in last 30 days (in working days) | |
AUSR_AvgStepDurationInMonthBeforeInWorkingDays | decimal(20,2) |   | Yes |   | Average step duration in month before (in working days) |
Name | Foreign Table | Primary Key |
---|---|---|
FK_AnalyticsUsers_WFSteps | AnalyticsUsers | PK_WFSteps |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_AnalyticsUsers | Yes | Yes | CLUSTERED | 100 |
Description: | Table contains data of dashboard panel filter configurations |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
ADF_ID | int | Yes |   |   | Identifier | |
ADF_Name | varchar(255) |   |   |   | Panel fitler name | |
ADF_Guid | varchar(36) |   |   |   | (newid()) | Guid |
ADF_ADSID | int |   |   |   | Dashboard id which has panel filter | |
ADF_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
ADF_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
ADF_RowVersion | timestamp |   |   | Yes | Timestamp | |
ADF_CreatedBy | varchar(255) |   |   |   | Author | |
ADF_UpdatedBy | varchar(255) |   |   |   | Last modifier | |
ADF_AppearanceType | int |   |   |   | Appearance type | |
ADF_FilterSourceType | int |   |   |   | Filter source Type | |
ADF_BlockValueChange | bit |   |   |   | ((0)) | Is value change blocked |
ADF_DefaultValue | varchar(MAX) |   | Yes |   | Default value | |
ADF_Columns | varchar(MAX) |   | Yes |   | Selected columns |
Name | Foreign Table | Primary Key |
---|---|---|
FK_AppDashboardFilters_AppDashboards | AppDashboardFilters | PK_AppDashboards |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_AppDashboardFilters | Yes | Yes | CLUSTERED | 0 |
UQ_AppDashboardFilters_Guid | Yes |   | NONCLUSTERED | 0 |
Description: | Dashboards definitions |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
ADS_ID | int | Yes |   |   | Identifier | |
ADS_APPID | int |   |   |   | WFApplications foreign key | |
ADS_Name | varchar(100) |   |   |   | Name of dashboard | |
ADS_Description | varchar(500) |   |   |   | Description of dashboard | |
ADS_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
ADS_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
ADS_RowVersion | timestamp |   |   | Yes | Timestamp | |
ADS_Guid | varchar(36) |   |   |   | (newid()) | Guid of dashboard |
ADS_CreatedBy | varchar(255) |   |   |   | Author | |
ADS_UpdatedBy | varchar(255) |   |   |   | Last modifier | |
ADS_Configuration | varchar(MAX) |   | Yes |   | Dashboard configuration | |
ADS_BreakSecurityInheritance | bit |   |   |   | ((0)) | Tells if security inheritance is broken |
ADS_SaveStamp | varchar(36) |   |   |   | (newid()) | Save stamp |
ADS_IsDefault | bit |   |   |   | ((0)) | Default dashboard |
ADS_Filters | varchar(MAX) |   | Yes |   | Configuration of dashboard filters | |
ADS_NBIID | int |   |   |   | Foreign key to navigation item | |
ADS_IsTitleHidden | bit |   |   |   | ((0)) | Is title of the dashboard hidden |
Name | Foreign Table | Primary Key |
---|---|---|
FK_AppDashboards_WFApplications | AppDashboards | PK_WFApplications |
FK_AppDashboards_NavBarItems | AppDashboards | PK_NavBarItems |
FK_AppDashboardFilters_AppDashboards | AppDashboardFilters | PK_AppDashboards |
FK_AppReports_AppDashboards | AppReports | PK_AppDashboards |
FK_AppSuggestions_AppDashboards | AppSuggestions | PK_AppDashboards |
FK_DataSets_AppDashboards | DataSets | PK_AppDashboards |
FK_WFConfigurationSecurities_AppDashboards | WFConfigurationSecurities | PK_AppDashboards |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_AppDashboards | Yes | Yes | CLUSTERED | 100 |
UQ_AppDashboards_Guid | Yes |   | NONCLUSTERED | 100 |
UQ_AppDashboards_IsDefault | Yes |   | NONCLUSTERED | 100 |
IX_AppDashboards_ADS_APPID |   |   | NONCLUSTERED | 100 |
Description: | Application with data connection associations |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
ADCA_ID | int | Yes |   |   | Identifier | |
ADCA_Guid | varchar(36) |   |   |   | (newid()) | Guid |
ADCA_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
ADCA_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
ADCA_RowVersion | timestamp |   |   | Yes | Timestamp | |
ADCA_CreatedBy | varchar(255) |   |   |   | Author | |
ADCA_UpdatedBy | varchar(255) |   |   |   | Last modifier | |
ADCA_APPID | int |   |   |   | Application identifier | |
ADCA_WFCID | int |   |   |   | Data connection identifier |
Name | Foreign Table | Primary Key |
---|---|---|
FK_AppDataConnectionAssocs_WFApplications | AppDataConnectionAssocs | PK_WFApplications |
FK_AppDataConnectionAssocs_WFDataConnections | AppDataConnectionAssocs | PK_WFDataConnections |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_AppDataConnectionAssocs | Yes | Yes | CLUSTERED | 100 |
UQ_AppDataConnectionAssocs_Guid | Yes |   | NONCLUSTERED | 100 |
Description: | Application with data source associations |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
ADSA_ID | int | Yes |   |   | Identifier | |
ADSA_Guid | varchar(36) |   |   |   | (newid()) | Guid |
ADSA_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
ADSA_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
ADSA_RowVersion | timestamp |   |   | Yes | Timestamp | |
ADSA_CreatedBy | varchar(255) |   |   |   | Author | |
ADSA_UpdatedBy | varchar(255) |   |   |   | Last modifier | |
ADSA_APPID | int |   |   |   | Application identifier | |
ADSA_WFSID | int |   |   |   | Data source identifier |
Name | Foreign Table | Primary Key |
---|---|---|
FK_AppDataSourceAssocs_WFApplications | AppDataSourceAssocs | PK_WFApplications |
FK_AppDataSourceAssocs_WFDataSources | AppDataSourceAssocs | PK_WFDataSources |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_AppDataSourceAssocs | Yes | Yes | CLUSTERED | 100 |
UQ_AppDataSourceAssocs_Guid | Yes |   | NONCLUSTERED | 100 |
Description: | Table contains parameters for transition structure definition. |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
AED_ID | int | Yes |   |   | Identifier | |
AED_Name | varchar(50) |   |   |   | Name of explore definition | |
AED_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
AED_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
AED_UserName | varchar(255) |   |   |   | User name | |
AED_RowVersion | timestamp |   |   | Yes | Timestamp | |
AED_Guid | varchar(36) |   |   |   | (newid()) | Entry unique identifier for import export mechanism |
AED_UpdatedBy | varchar(255) |   |   |   | Last modifier | |
AED_CreatedBy | varchar(255) |   |   |   | Author | |
AED_BreakSecurityInheritance | bit |   |   |   | ((0)) | Break security inheritance |
AED_UserLogin | varchar(255) |   | Yes |   | User login |
Name | Foreign Table | Primary Key |
---|---|---|
FK_AppExploreLevels_AppExploreDefinitions | AppExploreLevels | PK_AppExploreDefinitions |
FK_OutlookFavorites_MoveDefinitions | OutlookFavorites | PK_AppExploreDefinitions |
FK_WFConfigurationSecurities_AppExploreDefinitions | WFConfigurationSecurities | PK_AppExploreDefinitions |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_AppExploreDefinitions | Yes | Yes | CLUSTERED | 100 |
UQ_AppExploreDefinitions_Guid | Yes |   | NONCLUSTERED | 100 |
Description: | Table contains individual steps in transition structure definition. |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
AEL_ID | int | Yes |   |   | Identifier | |
AEL_AEDID | int |   |   |   | Related AppExploreDefinitions identifier | |
AEL_Level | int |   |   |   | Level of explore definition | |
AEL_ObjectType | int |   |   |   | Object type e.g. application, process, workflow, step etc. | |
AEL_ObjectID | int |   |   |   | ((0)) | Object identifier |
AEL_Modifier | int |   |   |   | ((0)) | Type of modifier (default, year, month, day, datetime) |
AEL_FilterType | int |   |   |   | ((0)) | Filter type (None,Process,WorkFlow,DocumentType,Step) |
AEL_Filter | int |   |   |   | ((0)) | Filter |
AEL_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
AEL_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
AEL_RowVersion | timestamp |   |   | Yes | Timestamp | |
AEL_Guid | varchar(36) |   |   |   | (newid()) | Entry unique identifier for import export mechanism |
AEL_UpdatedBy | varchar(255) |   |   |   | Last modifier | |
AEL_CreatedBy | varchar(255) |   |   |   | Author |
Name | Foreign Table | Primary Key |
---|---|---|
FK_AppExploreLevels_AppExploreDefinitions | AppExploreLevels | PK_AppExploreDefinitions |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_AppExploreLevels | Yes | Yes | CLUSTERED | 100 |
UQ_AppExploreLevels_Guid | Yes |   | NONCLUSTERED | 100 |
Description: | UserViews definitions |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
ARV_ID | int | Yes |   |   | Identifier | |
ARV_ARPID | int |   |   |   | BpsViewDefinitions foreign key | |
ARV_Name | varchar(50) |   |   |   | Name of view | |
ARV_Description | varchar(500) |   |   |   | Description of view | |
ARV_Filters | varchar(MAX) |   |   |   | Filters | |
ARV_Sorting | varchar(MAX) |   |   |   | Sorting information | |
ARV_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
ARV_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
ARV_RowVersion | timestamp |   |   | Yes | Timestamp | |
ARV_CreatedBy | varchar(255) |   |   |   | Author | |
ARV_UpdatedBy | varchar(255) |   |   |   | Last modifier | |
ARV_UserLogin | varchar(256) |   | Yes |   | Stores login of user which owns that view | |
ARV_Guid | varchar(36) |   |   |   | (newid()) | Entry unique identifier for import export mechanism |
ARV_IsDefault | bit |   |   |   | ((0)) | Is view default view for report |
ARV_Order | int |   |   |   | Oder of the view | |
ARV_ShowAttDownloadButton | bit |   |   |   | ((0)) | Tells whether button that lets downloading attachments from many elements is visible on report view |
ARV_IsSharedPrivateView | bit |   |   |   | ((0)) | Is report private view shareable |
ARV_NBIID | int |   | Yes |   | Foreign key to navigation item |
Name | Foreign Table | Primary Key |
---|---|---|
FK_AppReportViews_AppReports | AppReportViews | PK_AppReports |
FK_AppReportViews_NavBarItems | AppReportViews | PK_NavBarItems |
FK_AppSuggestions_AppReportViews | AppSuggestions | PK_AppReportViews |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_AppReportViews | Yes | Yes | CLUSTERED | 100 |
UQ_AppReportViews_Guid | Yes |   | NONCLUSTERED | 100 |
IX_AppReportViews_ARV_ARPID |   |   | NONCLUSTERED | 100 |
UQ_AppReportViews_IsDefault | Yes |   | NONCLUSTERED | 100 |
UQ_AppReportViews_Order | Yes |   | NONCLUSTERED | 100 |
Description: | Table that contains definitions of BPS Views |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
ARP_ID | int | Yes |   |   | Identifier | |
ARP_Name | varchar(100) |   |   |   | Name of BPS View | |
ARP_Description | varchar(500) |   |   |   | Description of BPS View | |
ARP_APPID | int |   |   |   | WFApplications foreign key | |
ARP_TypeID | int |   |   |   | DicWebPartTypes foreign key | |
ARP_Configuration | varchar(MAX) |   |   |   | Configuration of BPS View as XML | |
ARP_Guid | varchar(36) |   |   |   | (newid()) | Guid of application |
ARP_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
ARP_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
ARP_RowVersion | timestamp |   |   | Yes | Timestamp | |
ARP_UpdatedBy | varchar(255) |   |   |   | Last modifier | |
ARP_CreatedBy | varchar(255) |   |   |   | Author | |
ARP_BreakSecurityInheritance | bit |   |   |   | ((0)) | Tells if security inheritance is broken |
ARP_SaveStamp | varchar(36) |   |   |   | (newid()) | Save stamp |
ARP_IsHiddenInNavigationMenu | bit |   |   |   | ((0)) | Tells if the report should be visible in portal navigation menu |
ARP_AllowMultipleAttDownload | bit |   |   |   | ((0)) | Tells whether downloading of attachments from many elements should be available on report |
ARP_DTSID | int |   | Yes |   | Foreign key to DataSets | |
ARP_ADSID | int |   | Yes |   | Foreign key to dashboard | |
ARP_NBIID | int |   | Yes |   | Foreign key to navigation item |
Name | Foreign Table | Primary Key |
---|---|---|
FK_AppReports_AppDashboards | AppReports | PK_AppDashboards |
FK_AppReports_WFApplications | AppReports | PK_WFApplications |
FK_AppReports_DataSets | AppReports | PK_DataSets |
FK_AppReports_NavBarItems | AppReports | PK_NavBarItems |
FK_AppReports_DicWebPartTypes | AppReports | PK_DicWebPartTypes |
FK_AppReportViews_AppReports | AppReportViews | PK_AppReports |
FK_WFConfigurationSecurities_AppReports | WFConfigurationSecurities | PK_AppReports |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_AppReports | Yes | Yes | CLUSTERED | 100 |
UQ_AppReports_Guid | Yes |   | NONCLUSTERED | 100 |
IX_AppReports_ARP_APPID |   |   | NONCLUSTERED | 100 |
Description: | Workflow instances start parameters |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
AST_ID | int | Yes |   |   | Identifier | |
AST_APPID | int |   |   |   | WFApplications foreign key | |
AST_Name | varchar(50) |   |   |   | Name of start | |
AST_Description | varchar(500) |   |   |   | Description of start | |
AST_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
AST_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
AST_RowVersion | timestamp |   |   | Yes | Timestamp | |
AST_Guid | varchar(36) |   |   |   | (newid()) | Guid of start |
AST_CreatedBy | varchar(255) |   |   |   | Author | |
AST_UpdatedBy | varchar(255) |   |   |   | Last modifier | |
AST_Configuration | varchar(MAX) |   | Yes |   | Configuration of start definiton as XML | |
AST_Order | int |   |   |   | ((0)) | Order |
AST_BreakSecurityInheritance | bit |   |   |   | ((0)) | Tells if security inheritance is broken |
AST_SaveStamp | varchar(36) |   |   |   | (newid()) | Save stamp |
AST_IsHiddenInNavigationMenu | bit |   |   |   | ((0)) | Tells if the start should be visible in portal navigation menu |
AST_NBIID | int |   |   |   | Foreign key to navigation item |
Name | Foreign Table | Primary Key |
---|---|---|
FK_AppStarts_WFApplications | AppStarts | PK_WFApplications |
FK_AppStarts_NavBarItems | AppStarts | PK_NavBarItems |
FK_WFConfigurationSecurities_AppStarts | WFConfigurationSecurities | PK_AppStarts |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_AppStarts | Yes | Yes | CLUSTERED | 100 |
UQ_AppStarts_Guid | Yes |   | NONCLUSTERED | 100 |
UQ_AppStarts_Order | Yes |   | NONCLUSTERED | 100 |
IX_AppStarts_AST_APPID |   |   | NONCLUSTERED | 100 |
Description: | Stores informations about pinned suggestions for user |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
ASG_ID | int | Yes |   |   | Identifier | |
ASG_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Row insert date |
ASG_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Row update date |
ASG_RowVersion | timestamp |   |   | Yes | Row version | |
ASG_ARVID | int |   | Yes |   | Related View ID | |
ASG_ADSID | int |   | Yes |   | Related dashboard ID | |
ASG_UserLogin | varchar(255) |   |   |   | User Login |
Name | Foreign Table | Primary Key |
---|---|---|
FK_AppSuggestions_AppDashboards | AppSuggestions | PK_AppDashboards |
FK_AppSuggestions_AppReportViews | AppSuggestions | PK_AppReportViews |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_AppSuggestions | Yes | Yes | CLUSTERED | 100 |
UQ_AppSuggestions_UserLogin_ARVID_ADSID | Yes |   | NONCLUSTERED | 0 |
Description: | Table contains archive queue for elements |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
ARQ_ID | int | Yes |   |   | Identifier | |
ARQ_WFDID | int |   |   |   | NOT foreign key reference to WFElements | |
ARQ_ACTID | int |   |   |   | Foreign key to WFActions | |
ARQ_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
ARQ_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
ARQ_RowVersion | timestamp |   |   | Yes | Timestamp | |
ARQ_Priority | int |   |   |   | Priority | |
ARQ_ServiceName | varchar(255) |   | Yes |   | Processing service name | |
ARQ_Status | int |   |   |   | ((0)) | Status: ProcessingPending = 0 queue element is waiting to be processed by service, Processing = 1 queue element is now being processed, ProcessingSuccess = 2 queue element has been processed sucessfully, ProcessingError = 100 error while processing - number of allowed attempts exceeded, ProcessingSuspended = 200 processing of the queue element was suspended |
ARQ_AttemptsNumber | int |   |   |   | ((0)) | Attempts number |
ARQ_LastAttemptTime | datetime |   | Yes |   | Last attempt time | |
ARQ_LastError | varchar(MAX) |   | Yes |   | Last error | |
ARQ_ThreadId | int |   | Yes |   | Processing Thread Id for Archivisation | |
ARQ_ProcessingFinishedTime | datetime |   | Yes |   | Processing finished time | |
ARQ_SectionGuid | varchar(36) |   | Yes |   | Action section GUID |
Name | Foreign Table | Primary Key |
---|---|---|
FK_ArchiveQueueItems_WFActions | ArchiveQueueItems | PK_WFActions |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_ArchiveQueueItems | Yes | Yes | CLUSTERED | 100 |
UQ_ArchiveQueueItems_WFDID | Yes |   | NONCLUSTERED | 100 |
Description: | Table containing archiving databases |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
ARD_ID | int | Yes |   |   | Identifier | |
ARD_Name | varchar(255) |   |   |   | Name | |
ARD_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
ARD_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
ARD_RowVersion | timestamp |   |   | Yes | Timestamp |
Name | Foreign Table | Primary Key |
---|---|---|
FK_WFElementSignatures_ArchivingDatabases | WFElementSignatures | PK_ArchivingDatabases |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_ArchivingDatabases | Yes | Yes | CLUSTERED | 100 |
UQ_ArchivingDatabases_Name | Yes |   | NONCLUSTERED | 100 |
Description: | Attribute with document type associations. Table also contains information about attribute visibility per document type. |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
ADA_ID | int | Yes |   |   | Association identifier | |
ADA_DTYPEID | int |   |   |   | Instance type identifier/Signature | |
ADA_WFCONID | int |   |   |   | Form field identifier | |
ADA_IsVisible | bit |   |   |   | ((1)) | Is a form field visible for the specific workflow instance |
ADA_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Row insert date |
ADA_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Row update date |
ADA_RowVersion | timestamp |   |   | Yes | Row version | |
ADA_Guid | varchar(36) |   |   |   | (newid()) | Global unique ID |
Name | Foreign Table | Primary Key |
---|---|---|
FK_AttributeDocTypeAssocs_WFDocTypes | AttributeDocTypeAssocs | PK_WFDocTypes |
FK_AttributeDocTypeAssocs_WFConfigurations | AttributeDocTypeAssocs | PK_WFConfigurations |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_AttributeDocTypeAssocs | Yes | Yes | CLUSTERED | 100 |
UQ_AttributeDocTypeAssocs_Guid | Yes |   | NONCLUSTERED | 100 |
IX_AttributeDocTypeAssocs_ADA_WFCONID |   |   | NONCLUSTERED | 100 |
Description: | OAuth2 configurations |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
AUTH_ID | int | Yes |   |   | Identifier | |
AUTH_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
AUTH_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
AUTH_RowVersion | timestamp |   |   | Yes | Timestamp | |
AUTH_Guid | varchar(36) |   |   |   | (newid()) | Authentication GUID |
AUTH_Name | varchar(50) |   |   |   | Authentication name | |
AUTH_Description | varchar(1000) |   | Yes |   | Authentication description | |
AUTH_Type | int |   |   |   | ((0)) | Authentication type (0 - User, 1 - Application) |
AUTH_ClientID | varchar(500) |   | Yes |   | Client ID obtained during application registration | |
AUTH_ClientSecret | varchar(500) |   | Yes |   | Encrypted client password obtained during application registration | |
AUTH_Template | int |   |   |   | ((0)) | Authentication template used (0 - Custom, 1 - Microsoft, 2 - Google) |
AUTH_AutoDiscover | bit |   |   |   | ((0)) | Use well-known endpoint for automatic authentication configuration detection |
AUTH_WellKnownUrl | varchar(2048) |   | Yes |   | URL to well-known endpoint containing authentication metadata | |
AUTH_AuthorizationEndpoint | varchar(1000) |   | Yes |   | Authorization endpoint URL | |
AUTH_TokenEndpoint | varchar(1000) |   | Yes |   | Endpoint URL returning token | |
AUTH_Scopes | varchar(MAX) |   | Yes |   | List of scopes to which to grant access |
Name | Foreign Table | Primary Key |
---|---|---|
FK_WFDataConnections_Authentications | WFDataConnections | PK_Authentications |
FK_WFDataConnections_Authentications_Dev | WFDataConnections | PK_Authentications |
FK_WFDataConnections_Authentications_Prod | WFDataConnections | PK_Authentications |
FK_WFDataConnections_Authentications_Test | WFDataConnections | PK_Authentications |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_Authentications | Yes | Yes | CLUSTERED | 100 |
UQ_Authentications_Guid | Yes |   | NONCLUSTERED | 100 |
Description: | Table containing business rule for automations |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
AUBR_ID | int | Yes |   |   | Identifier | |
AUBR_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
AUBR_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
AUBR_RowVersion | timestamp |   |   | Yes | Timestamp | |
AUBR_Guid | varchar(36) |   |   |   | (newid()) | Automation Business Rule guid |
AUBR_AUTMID | int |   |   |   | Automation which have automation business rule | |
AUBR_BRDID | int |   |   |   | Definition of business rule | |
AUBR_PropertyID | int |   |   |   | Automation configuration property identifier | |
AUBR_PropertyOrder | int |   | Yes |   | Automation configuration property order |
Name | Foreign Table | Primary Key |
---|---|---|
FK_AutomationBusinessRules_Automations | AutomationBusinessRules | PK_Automations |
FK_AutomationBusinessRules_WFBusinessRuleDefinitions | AutomationBusinessRules | PK_WFBusinessRuleDefinitions |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_AutomationBusinessRules | Yes | Yes | CLUSTERED | 100 |
UQ_AutomationBusinessRules_Guid | Yes |   | NONCLUSTERED | 100 |
IX_AutomationBusinessRules_AUBR_AUTMID |   |   | NONCLUSTERED | 100 |
IX_AutomationBusinessRules_AUBR_BRDID |   |   | NONCLUSTERED | 100 |
Description: | Table to store parameters for automations |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
AUTP_ID | int | Yes |   |   | Identifier | |
AUTP_AutomationID | int |   |   |   | Relation to the Automations table | |
AUTP_Name | varchar(255) |   |   |   | Name of automation parameters | |
AUTP_Documentation | varchar(MAX) |   |   |   | Documentation for automation parameter | |
AUTP_ValueType | int |   |   |   | Relation to the DicBusinessRulesReturnedValueTypes table | |
AUTP_Type | int |   |   |   | Relation to the DicAutomationsParameterTypes table | |
AUTP_Guid | varchar(36) |   |   |   | Entry unique identifier for import export mechanism | |
AUTP_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
AUTP_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
AUTP_RowVersion | timestamp |   |   | Yes | Timestamp | |
AUTP_CreatedBy | varchar(255) |   |   |   | Author | |
AUTP_UpdatedBy | varchar(255) |   |   |   | Last modifier |
Name | Foreign Table | Primary Key |
---|---|---|
FK_AutomationParameters_Automations | AutomationParameters | PK_Automations |
FK_AutomationParameters_DicAutomationsParameterTypes | AutomationParameters | PK_DicAutomationsParameterTypes |
FK_AutomationParameters_DicBusinessRulesReturnedValueTypes | AutomationParameters | PK_DicBusinessRulesReturnedValueTypes |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_AutomationParameters | Yes | Yes | CLUSTERED | 100 |
UQ_AutomationParameter_Guid | Yes |   | NONCLUSTERED | 100 |
IX_AutomationParameters_AUTP_AutomationID |   |   | NONCLUSTERED | 100 |
Description: | Stores automation execution details used for generating history |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
ASE_ID | int | Yes |   |   | Identifier | |
ASE_WTHID | int |   | Yes |   | Information about executed action | |
ASE_WFDID | int |   | Yes |   | Related WFElements identifier | |
ASE_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
ASE_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
ASE_RowVersion | timestamp |   |   | Yes | Timestamp | |
ASE_Model | varchar(MAX) |   | Yes |   | JSON model storing automation components with references to WFActionExecutions table |
Name | Foreign Table | Primary Key |
---|
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_AutomationSessionExecutions | Yes | Yes | CLUSTERED | 100 |
IX_AutomationSessionExecutions_WFDID_WTHID |   |   | NONCLUSTERED | 0 |
Description: | Table containing automation |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
AUTM_ID | int | Yes |   |   | Identifier | |
AUTM_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
AUTM_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
AUTM_RowVersion | timestamp |   |   | Yes | Timestamp | |
AUTM_CreatedBy | varchar(255) |   |   |   | Author | |
AUTM_UpdatedBy | varchar(255) |   |   |   | Last modifier | |
AUTM_Name | varchar(255) |   |   |   | Automation name | |
AUTM_Guid | varchar(36) |   |   |   | (newid()) | Automation guid |
AUTM_DEFID | int |   | Yes |   | Process which have automation | |
AUTM_IsInline | bit |   |   |   | ((0)) | Is automation inline |
AUTM_DocumentationDescription | varchar(MAX) |   | Yes |   | Documentation for automation | |
AUTM_ExecutionTimeLimit | int |   |   |   | ((30)) | Execution of automation time limit (in seconds) |
AUTM_Designer | varchar(MAX) |   | Yes |   | Automation flow design | |
AUTM_ErrorDesigner | varchar(MAX) |   | Yes |   | Automation error flow design | |
AUTM_AUTMID | int |   | Yes |   | Foreign key to parent automation | |
AUTM_IsActive | bit |   |   |   | ((1)) | Defines whether automation is active |
Name | Foreign Table | Primary Key |
---|---|---|
FK_Automations_Automations | Automations | PK_Automations |
FK_Automations_WFDefinitions | Automations | PK_WFDefinitions |
FK_AutomationBusinessRules_Automations | AutomationBusinessRules | PK_Automations |
FK_AutomationParameters_Automations | AutomationParameters | PK_Automations |
FK_Automations_Automations | Automations | PK_Automations |
FK_WFActionButtons_Automations | WFActionButtons | PK_Automations |
FK_WFActions_Automations | WFActions | PK_Automations |
FK_WFAvaiblePaths_Automations | WFAvaiblePaths | PK_Automations |
FK_WFRecurrentActionsDefinitions_Automations | WFRecurrentActionsDefinitions | PK_Automations |
FK_WFSteps_Automations_OnAttachmentAddAUTMID | WFSteps | PK_Automations |
FK_WFSteps_Automations_OnBrowserOpeningAUTMID | WFSteps | PK_Automations |
FK_WFSteps_Automations_OnDeleteAUTMID | WFSteps | PK_Automations |
FK_WFSteps_Automations_OnEntryAUTMID | WFSteps | PK_Automations |
FK_WFSteps_Automations_OnExitAUTMID | WFSteps | PK_Automations |
FK_WFSteps_Automations_OnSaveAUTMID | WFSteps | PK_Automations |
FK_WFTimeouts_Automations | WFTimeouts | PK_Automations |
FK_WorkFlows_Automations_OnAttachmentAddAUTMID | WorkFlows | PK_Automations |
FK_WorkFlows_Automations_OnBrowserOpeningAUTMID | WorkFlows | PK_Automations |
FK_WorkFlows_Automations_OnDeleteAUTMID | WorkFlows | PK_Automations |
FK_WorkFlows_Automations_OnSaveAUTMID | WorkFlows | PK_Automations |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_Automations | Yes | Yes | CLUSTERED | 100 |
UQ_Automations_Guid | Yes |   | NONCLUSTERED | 100 |
IX_Automations_AUTM_DEFID |   |   | NONCLUSTERED | 100 |
Description: | Number of operations available for use by External users |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
AOP_ID | int | Yes |   |   | Identifier | |
AOP_OperationsKind | int |   |   |   | Kind of operation | |
AOP_Operations | bigint |   |   |   | Number of available operations to use | |
AOP_Signature | binary(256) |   | Yes |   | Digital signature | |
AOP_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
AOP_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
AOP_RowVersion | timestamp |   |   | Yes | Timestamp |
Name | Foreign Table | Primary Key |
---|
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_AvailableOperations | Yes | Yes | CLUSTERED | 0 |
Description: | Temporary table use for storing binary data. |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
BTD_ID | int | Yes |   |   | ||
BTD_Data | varbinary(MAX) |   |   |   | ||
BTD_Name | varchar(255) |   | Yes |   | ||
BTD_Description | varchar(MAX) |   | Yes |   | ||
BTD_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Row insert date |
BTD_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Row update date |
BTD_RowVersion | timestamp |   |   | Yes | Row version |
Name | Foreign Table | Primary Key |
---|
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_BinaryTemporaryDatas | Yes | Yes | CLUSTERED | 100 |
Description: | Relations between BPS owners users and groups |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
BGO_ID | int | Yes |   |   | Row ID | |
BGO_UserBpsID | varchar(450) |   |   |   | BPS ID of user | |
BGO_GroupBpsID | varchar(450) |   |   |   | BPS ID of group | |
BGO_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Insert timestamp |
BGO_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Update timestamp |
BGO_RowVersion | timestamp |   |   | Yes | Row version |
Name | Foreign Table | Primary Key |
---|
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_BpsGroupsOwners | Yes | Yes | CLUSTERED | 0 |
Description: | Data of BPS users |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
BUS_ID | int | Yes |   |   | Identifier | |
BUS_AccountType | int |   |   |   | Account type | |
BUS_BpsID | varchar(450) |   |   |   | BPS identifier | |
BUS_PhoneNumber | varchar(20) |   | Yes |   | Phone number | |
BUS_JobTitle | varchar(250) |   | Yes |   | Job title | |
BUS_Email | varchar(255) |   | Yes |   | ||
BUS_DisplayName | varchar(255) |   | Yes |   | Display name | |
BUS_ManagerBpsID | varchar(450) |   | Yes |   | BPS ID of manager | |
BUS_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Insert timestamp |
BUS_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Update timestamp |
BUS_RowVersion | timestamp |   |   | Yes | Row version | |
BUS_Picture | varbinary(MAX) |   | Yes |   | Picture bytes |
Name | Foreign Table | Primary Key |
---|
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK__BpsUsers | Yes | Yes | CLUSTERED | 100 |
UQ_BUS_BpsID | Yes |   | NONCLUSTERED | 100 |
Description: | Relations between BPS users and groups |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
BUSGR_ID | int | Yes |   |   | Row ID | |
BUSGR_UserBpsID | varchar(450) |   |   |   | BPS ID of user | |
BUSGR_GroupBpsID | varchar(450) |   |   |   | BPS ID of group | |
BUSGR_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Insert timestamp |
BUSGR_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Update timestamp |
BUSGR_RowVersion | timestamp |   |   | Yes | Row version |
Name | Foreign Table | Primary Key |
---|
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK__BpsUsersGroupRelations | Yes | Yes | CLUSTERED | 100 |
Description: | Stores info about refreshing business object caches |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
BCT_ID | int | Yes |   |   | Identifier | |
BCT_GroupID | int |   |   |   | Cache group from DicCaheGroups | |
BCT_DEFID | int |   | Yes |   | Process identifier from WFDefinitons | |
BCT_APPID | int |   | Yes |   | Application identifier from WFApplications | |
BCT_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
BCT_RowVersion | timestamp |   |   | Yes | Timestamp | |
BCT_UpdatedBy | varchar(255) |   |   |   | Last modifier |
Name | Foreign Table | Primary Key |
---|---|---|
FK_BusinessObjectsChangeTimestamps_DicCacheGroups | BusinessObjectsChangeTimestamps | PK_DicCacheGroups |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_BusinessObjectsChangeTimestamps | Yes | Yes | CLUSTERED | 100 |
UQ_BusinessObjectChangeTimestamps_GroupID_DEFID_APPID | Yes |   | NONCLUSTERED | 80 |
Description: | Active Directory organization structure data. Column names starting with 'COS_AD_' prefix contains original information got from Active Directory. Other columns contain information computed by BPS. This table contains users, group and computer objects from Active Directory both active and disabled. |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
COS_ID | int | Yes |   |   | Identifier | |
COS_Login | varchar(255) |   |   |   | User login | |
COS_ManagerID | int |   | Yes |   | Manager identifier – CacheOrganizationStructure table ID | |
COS_ManagerLogin | varchar(255) |   | Yes |   | Manager login | |
COS_ManagerDisplayName | varchar(255) |   | Yes |   | Superior's display name | |
COS_IsActive | bit |   | Yes |   | Is active | |
COS_AD_accountexpires | datetime |   | Yes |   | AD Account expiration date | |
COS_AD_adspath | varchar(MAX) |   | Yes |   | ADsPath | |
COS_AD_company | varchar(255) |   | Yes |   | AD Company | |
COS_AD_comment | varchar(MAX) |   | Yes |   | AD Comment | |
COS_AD_countrycode | int |   | Yes |   | AD Country code | |
COS_AD_department | varchar(255) |   | Yes |   | AD Department | |
COS_AD_description | varchar(1025) |   | Yes |   | AD Descrption | |
COS_AD_displayname | varchar(255) |   | Yes |   | AD Display name | |
COS_AD_distinguishedname | varchar(MAX) |   | Yes |   | AD Distinguished name | |
COS_AD_givenname | varchar(255) |   | Yes |   | AD Given name | |
COS_AD_homedirectory | varchar(260) |   | Yes |   | AD Home directory | |
COS_AD_homephone | varchar(255) |   | Yes |   | AD Home phone | |
COS_AD_info | varchar(MAX) |   | Yes |   | AD Info | |
COS_AD_ipphone | varchar(255) |   | Yes |   | AD Ipphone | |
COS_AD_iscriticalsystemobject | bit |   | Yes |   | Is critical system object | |
COS_AD_localeid | int |   | Yes |   | AD Locale ID | |
COS_AD_mail | varchar(MAX) |   | Yes |   | AD Mail | |
COS_AD_manager | varchar(MAX) |   | Yes |   | AD Superior | |
COS_AD_memberOf | varchar(MAX) |   | Yes |   | AD Member of | |
COS_AD_mobile | varchar(255) |   | Yes |   | AD Mobile | |
COS_AD_name | varchar(255) |   | Yes |   | AD Name | |
COS_AD_objectcategory | varchar(MAX) |   | Yes |   | AD Object category | |
COS_AD_objectclass | varchar(MAX) |   | Yes |   | AD Object class | |
COS_AD_objectguid | binary(16) |   | Yes |   | AD Object GUID | |
COS_AD_objectsid | varbinary(100) |   | Yes |   | AD Object's SID | |
COS_AD_objectversion | int |   | Yes |   | AD Object version | |
COS_AD_ou | varchar(MAX) |   | Yes |   | AD OU | |
COS_AD_pager | varchar(255) |   | Yes |   | AD Pager | |
COS_AD_postalcode | varchar(255) |   | Yes |   | AD Postal code | |
COS_AD_postofficebox | varchar(255) |   | Yes |   | AD Post office box | |
COS_AD_primarygroupid | int |   | Yes |   | AD Primary group ID | |
COS_AD_samaccountname | varchar(MAX) |   | Yes |   | AD SAM account name | |
COS_AD_samaccounttype | int |   | Yes |   | AD SAM account type | |
COS_AD_securityidentifier | varbinary(100) |   | Yes |   | AD Security identifier | |
COS_AD_showinaddressbook | varchar(MAX) |   | Yes |   | AD Show in address book | |
COS_AD_sn | varchar(255) |   | Yes |   | AD Surname | |
COS_AD_st | varchar(255) |   | Yes |   | AD State | |
COS_AD_streetaddress | varchar(MAX) |   | Yes |   | AD Street adress | |
COS_AD_telephonenumber | varchar(255) |   | Yes |   | AD Telephone number | |
COS_AD_title | varchar(255) |   | Yes |   | AD Title | |
COS_AD_useraccountcontrol | int |   | Yes |   | AD User account control | |
COS_AD_userparameters | varchar(MAX) |   | Yes |   | AD User parameters | |
COS_AD_userprincipalname | varchar(MAX) |   | Yes |   | AD User UPN | |
COS_AD_whencreated | datetime |   | Yes |   | Creation date in AD | |
COS_AD_wwwhomepage | varchar(MAX) |   | Yes |   | AD Homepage | |
COS_ExtensionAttribute01 | varchar(MAX) |   | Yes |   | ||
COS_ExtensionAttribute02 | varchar(MAX) |   | Yes |   | ||
COS_ExtensionAttribute03 | varchar(MAX) |   | Yes |   | ||
COS_ExtensionAttribute04 | varchar(MAX) |   | Yes |   | ||
COS_ExtensionAttribute05 | varchar(MAX) |   | Yes |   | ||
COS_ExtensionAttribute06 | varchar(MAX) |   | Yes |   | ||
COS_ExtensionAttribute07 | varchar(MAX) |   | Yes |   | ||
COS_ExtensionAttribute08 | varchar(MAX) |   | Yes |   | ||
COS_ExtensionAttribute09 | varchar(MAX) |   | Yes |   | ||
COS_ExtensionAttribute10 | varchar(MAX) |   | Yes |   | ||
COS_ExtensionAttribute11 | varchar(MAX) |   | Yes |   | ||
COS_ExtensionAttribute12 | varchar(MAX) |   | Yes |   | ||
COS_ExtensionAttribute13 | varchar(MAX) |   | Yes |   | ||
COS_ExtensionAttribute14 | varchar(MAX) |   | Yes |   | ||
COS_ExtensionAttribute15 | varchar(MAX) |   | Yes |   | ||
COS_ExtensionAttribute16 | varchar(MAX) |   | Yes |   | ||
COS_ExtensionAttribute17 | varchar(MAX) |   | Yes |   | ||
COS_ExtensionAttribute18 | varchar(MAX) |   | Yes |   | ||
COS_ExtensionAttribute19 | varchar(MAX) |   | Yes |   | ||
COS_ExtensionAttribute20 | varchar(MAX) |   | Yes |   | ||
COS_ExtensionAttribute21 | varchar(MAX) |   | Yes |   | ||
COS_ExtensionAttribute22 | varchar(MAX) |   | Yes |   | ||
COS_ExtensionAttribute23 | varchar(MAX) |   | Yes |   | ||
COS_ExtensionAttribute24 | varchar(MAX) |   | Yes |   | ||
COS_ExtensionAttribute25 | varchar(MAX) |   | Yes |   | ||
COS_ExtensionAttribute26 | varchar(MAX) |   | Yes |   | ||
COS_ExtensionAttribute27 | varchar(MAX) |   | Yes |   | ||
COS_ExtensionAttribute28 | varchar(MAX) |   | Yes |   | ||
COS_ExtensionAttribute29 | varchar(MAX) |   | Yes |   | ||
COS_ExtensionAttribute30 | varchar(MAX) |   | Yes |   | ||
COS_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
COS_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
COS_RowVersion | timestamp |   |   | Yes | Timestamp | |
COS_AD_physicalDeliveryOfficeName | varchar(255) |   | Yes |   | AD Physical delivery office name | |
COS_DomainPath | varchar(256) |   | Yes |   | Domain path | |
COS_SID | varchar(100) |   | Yes |   | AD Object SID/identifier in the text form | |
COS_Domain | varchar(255) |   | Yes |   | User domain | |
COS_BpsID | varchar(255) |   |   |   | Stores user login in bps format | |
COS_Department | varchar(250) |   | Yes |   | Stores department as in SPUser profile | |
COS_JobTitle | varchar(250) |   | Yes |   | Stores job title as in SPUser profile | |
COS_Email | varchar(MAX) |   | Yes |   | Stores email of the user from SPUser profile | |
COS_DisplayName | varchar(255) |   | Yes |   | Stores display name of the user from SPUser profile | |
COS_AccountType | int |   |   |   | Holds value for account type | |
COS_ManagerBpsID | varchar(255) |   | Yes |   | Stores manager login in bps format | |
COS_AD_cn | varchar(MAX) |   | Yes |   | Stores common name from AD | |
COS_AD_proxyaddresses | varchar(MAX) |   | Yes |   | Stores proxy adresses from AD | |
COS_ProviderType | int |   |   |   | Stores type of provider from which entity origins | |
COS_LastSuccessfulSyncTime | datetime |   |   |   | ([dbo].[GetDbDate]()) | Stores last successful time of synchronization |
COS_SynchronizationError | bit |   |   |   | ((0)) | Determines if error occurred during synchronization of object |
COS_OnPremisesSyncEnabled | bit |   |   |   | ((0)) | Informs whether the user is to be replicated to on premises ActiveDirectory or regarded as a cloud only account |
COS_AzureADID | varchar(36) |   | Yes |   | AzureAD ID | |
COS_UserType | int |   | Yes |   | ID of user type, pertaining to the source of user data (DicADUserTypes) | |
COS_GroupType | int |   | Yes |   | ID of group type, pertaining to the source of group data (DicADGroupTypes) | |
COS_PhoneNumber | varchar(255) |   | Yes |   | Phone number | |
COS_LastSyncGuid | varchar(36) |   |   |   | (newid()) | Column which contains Guid of last successful user's synchronization. |
COS_DomainSamaccountname | varchar(MAX) |   | Yes | Yes |
Name | Foreign Table | Primary Key |
---|---|---|
FK_CacheOrganizationStructure_DicGroupTypes | CacheOrganizationStructure | PK_DicADGroupTypes |
FK_CacheOrganizationStructure_DicUserTypes | CacheOrganizationStructure | PK_DicADUserTypes |
FK_CacheOrganizationStructureExtendedTokens_CacheOrganizationStructure | CacheOrganizationStructureExtendedTokens | PK__CacheOrganizationStructure |
FK2_CacheOrganizationStructureGroupRelations | CacheOrganizationStructureGroupRelations | PK__CacheOrganizationStructure |
FK_CacheOrganizationStructureGroupRelations | CacheOrganizationStructureGroupRelations | PK__CacheOrganizationStructure |
FK_CacheOrganizationStructurePictures_CacheOrganizationStructure | CacheOrganizationStructurePictures | PK__CacheOrganizationStructure |
FK_CacheOrganizationStructureSubordinates_CacheOrganizationStructure | CacheOrganizationStructureSubordinates | PK__CacheOrganizationStructure |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK__CacheOrganizationStructure | Yes | Yes | CLUSTERED | 100 |
IX_CacheOrganizationStructure_COS_Login |   |   | NONCLUSTERED | 100 |
IX_CacheOrganizationStructure_COS_ManagerLogin |   |   | NONCLUSTERED | 100 |
UQ_CacheOrganizationStructure_COS_BpsID | Yes |   | NONCLUSTERED | 80 |
IX_CacheOrganizationStructure_COS_ManagerBpsID |   |   | NONCLUSTERED | 100 |
IX_CacheOrganizationStructure_COS_DisplayName |   |   | NONCLUSTERED | 100 |
Description: | List of user permissions. Each user has listed all Active Directory, SharePoint groups he belongs to and his login in separated rows. This information is used for permission based on organization structure. |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
COSET_ID | bigint | Yes |   |   | Identifier | |
COSET_COSID | int |   |   |   | Foreign key to CacheOrganizationStructure table | |
COSET_TokenPart | varchar(255) |   | Yes |   | Token part | |
COSET_Site | varchar(193) |   | Yes |   | Site | |
COSET_RowVersion | timestamp |   |   | Yes | Timestamp |
Name | Foreign Table | Primary Key |
---|---|---|
FK_CacheOrganizationStructureExtendedTokens_CacheOrganizationStructure | CacheOrganizationStructureExtendedTokens | PK__CacheOrganizationStructure |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK__CacheOrganizationStructureExtendedTokens | Yes | Yes | CLUSTERED | 100 |
IX_CacheOrganizationStructureExtendedTokens_COSIDTokenPart |   |   | NONCLUSTERED | 100 |
IX_CacheOrganizationStructureExtendedTokens_TokenPartCOSID |   |   | NONCLUSTERED | 100 |
Description: | Informations about group membership. User and group columns corresponds to records in CacheOrganizationStructure table. Each relation between user and group has information whether this is user's primary group, user is direct member of the group or is member of some group nested in this group. |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
COSGR_ID | bigint | Yes |   |   | Identifier | |
COSGR_UserID | int |   |   |   | User identifier | |
COSGR_GroupID | int |   |   |   | Group identifier | |
COSGR_IsDirect | bit |   |   |   | Whether the user is directly assigned to this group or is it a parent group to the group to which the user belongs | |
COSGR_IsPrimary | bit |   | Yes |   | Information is it user’s primary group | |
COSGR_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
COSGR_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
COSGR_RowVersion | timestamp |   |   | Yes | Row version |
Name | Foreign Table | Primary Key |
---|---|---|
FK2_CacheOrganizationStructureGroupRelations | CacheOrganizationStructureGroupRelations | PK__CacheOrganizationStructure |
FK_CacheOrganizationStructureGroupRelations | CacheOrganizationStructureGroupRelations | PK__CacheOrganizationStructure |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK__CacheOrganizationStructureGroupRelations | Yes | Yes | CLUSTERED | 100 |
IX_CacheOrganizationStructureGroupRelations_COSGR_UserID |   |   | NONCLUSTERED | 100 |
IX_CacheOrganizationStructureGroupRelations_COSGR_GroupID |   |   | NONCLUSTERED | 100 |
Description: | Table containing user pictures of organization structure members |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
COSP_ID | int | Yes |   |   | Identifier | |
COSP_Picture | varbinary(MAX) |   | Yes |   | Picture bytes | |
COSP_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
COSP_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
COSP_RowVersion | timestamp |   |   | Yes | Timestamp | |
COSP_COSID | int |   | Yes |   | Cache organization structure foreign key | |
COSP_Hash | varchar(MAX) |   | Yes |   | Original picture hashcode | |
COSP_BpsID | varchar(255) |   |   |   | Column which contains BpsID of picture owner. |
Name | Foreign Table | Primary Key |
---|---|---|
FK_CacheOrganizationStructurePictures_CacheOrganizationStructure | CacheOrganizationStructurePictures | PK__CacheOrganizationStructure |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_CacheOrganizationStructurePictures | Yes | Yes | CLUSTERED | 100 |
IX_CacheOrganizationStructurePictures_COSP_BpsID |   |   | NONCLUSTERED | 100 |
Description: | Manager subordinates. Each record is relation between manager and his subordinates. Subordinates are stored in two column divided by comma - all subordinates and direct subordinates. |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
COSSUB_ID | bigint | Yes |   |   | Identifier | |
COSSUB_COSID | int |   |   |   | This column contains the identifier of a superior having subordinates with identifiers entered in the COSSUB_SubordinatesList column. Identifier which refers to a row in CacheOrganizationStructure table. | |
COSSUB_WFDSID | int |   |   |   | DataSource Identifier of non standard organization structure datasource | |
COSSUB_SubordinatesList | varchar(MAX) |   |   |   | Subordinates List | |
COSSUB_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
COSSUB_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
COSSUB_DirectSubordinatesList | varchar(MAX) |   |   |   | Direct subordinates list | |
COSSUB_RowVersion | timestamp |   |   | Yes | Timestamp |
Name | Foreign Table | Primary Key |
---|---|---|
FK_CacheOrganizationStructureSubordinates_CacheOrganizationStructure | CacheOrganizationStructureSubordinates | PK__CacheOrganizationStructure |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK__CacheOrganizationStructureHierarchy | Yes | Yes | CLUSTERED | 100 |
IX_CacheOrganizationStructureSubordinates_COSID_WFDSID |   |   | NONCLUSTERED | 0 |
UQ_CacheOrganizationStructureSubordinates_COSSUB_COSID_COSSUB_WFDSID | Yes |   | NONCLUSTERED | 0 |
Description: | Table contains all working days in a year |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
CAL_ID | int | Yes |   |   | Identifier | |
CAL_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
CAL_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
CAL_RowVersion | timestamp |   |   | Yes | Timestamp | |
CAL_CreatedBy | varchar(255) |   |   |   | Author | |
CAL_UpdatedBy | varchar(255) |   |   |   | Last modifier | |
CAL_WorkingDate | date(10) |   |   |   | Working day date | |
CAL_IsWorkingDay | bit |   |   |   | Is working day |
Name | Foreign Table | Primary Key |
---|
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_Calendars | Yes | Yes | CLUSTERED | 100 |
UQ_Calendars_CAL_WorkingDate | Yes |   | NONCLUSTERED | 100 |
IX_Calendars_IsWorkingDay |   |   | NONCLUSTERED | 100 |
IX_Calendars_IsWorkingDay_WorkingDate |   |   | NONCLUSTERED | 100 |
Description: | All changed columns in rows in all configuration tables. Each entry has one corresponding row in ChangeRows table and one corresponding row in ConfigurationColumns table. |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
CHD_ID | bigint | Yes |   |   | Identifier | |
CHD_CHRID | bigint |   |   |   | Changed row identifier which refers to a row in ChangeRows table | |
CHD_CFCID | int |   |   |   | ConfigurationColumn identifier which refers to a row in ConfigurationColumns table | |
CHD_OldValue | varchar(MAX) |   | Yes |   | Old row value | |
CHD_NewValue | varchar(MAX) |   | Yes |   | New row value | |
CHD_RowVersion | timestamp |   |   | Yes | Timestamp |
Name | Foreign Table | Primary Key |
---|---|---|
FK_ChangeDetails_ConfigurationColumns | ChangeDetails | PK_ConfigurationColumns |
FK_ChangeDetails_ChangeRows | ChangeDetails | PK_ChangeRows |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_ChangeDetails | Yes | Yes | CLUSTERED | 100 |
IX_ChangeDetails_CHRID |   |   | NONCLUSTERED | 100 |
Description: | Single save in Designer Studio on any object is a single record in this table. This contains information about object type (table DicObjectTypes). Column CHO_ObjectID stores corresponding primary key from particular table. |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
CHO_ID | bigint | Yes |   |   | Identifier | |
CHO_ObjectTypeID | int |   |   |   | SaveObjectType identifier which refers to a row in DicSaveObjectTypes table | |
CHO_ObjectID | int |   | Yes |   | Column CHO_ObjectID stores corresponding primary key from particular table | |
CHO_DBBranchNumber | varchar(20) |   |   |   | DB branch number | |
CHO_DBVersion | varchar(20) |   |   |   | DB version | |
CHO_StateXml | xml(1073741823) |   | Yes |   | State xml | |
CHO_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
CHO_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
CHO_CreatedBy | varchar(255) |   | Yes |   | Author | |
CHO_RowVersion | timestamp |   |   | Yes | Timestamp | |
CHO_AppVersion | varchar(20) |   |   |   | Application version |
Name | Foreign Table | Primary Key |
---|---|---|
FK_ChangeOperations_DicSaveObjectTypes | ChangeOperations | PK_DicSaveObjectTypes |
FK_ChangeRows_ChangeOperations | ChangeRows | PK_ChangeOperations |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_ChangeOperations | Yes | Yes | CLUSTERED | 100 |
IX_ChangeOperations_ObjectTypeID_ObjectID |   |   | NONCLUSTERED | 100 |
Description: | Table includes comments to requests for changes in the system |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
CRC_ID | int | Yes |   |   | Identifier | |
CRC_RowVersion | timestamp |   |   | Yes | Timestamp | |
CRC_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
CRC_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
CRC_CreatedBy | varchar(255) |   |   |   | Author | |
CRC_UpdatedBy | varchar(255) |   |   |   | Last modifier | |
CRC_IsDeleted | bit |   |   |   | ((0)) | A flag indicating whether the row is deleted |
CRC_CRID | int |   |   |   | Identifier of change request to which this comment belongs | |
CRC_Content | varchar(MAX) |   |   |   | Change request comment content |
Name | Foreign Table | Primary Key |
---|---|---|
FK_ChangeRequestComments_ChangeRequests | ChangeRequestComments | PK_ChangeRequests |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_ChangeRequestComments | Yes | Yes | CLUSTERED | 0 |
IX_ChangeRequestComments_TSInsert |   |   | NONCLUSTERED | 100 |
IX_ChangeRequestComments_TSUpdate |   |   | NONCLUSTERED | 100 |
IX_ChangeRequestComments_IsDeleted |   |   | NONCLUSTERED | 100 |
IX_ChangeRequestComments_CRID |   |   | NONCLUSTERED | 100 |
Description: | Table includes likes for requests for changes in the system |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
CRL_ID | int | Yes |   |   | Identifier | |
CRL_RowVersion | timestamp |   |   | Yes | Timestamp | |
CRL_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
CRL_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
CRL_CreatedBy | varchar(255) |   |   |   | Author | |
CRL_UpdatedBy | varchar(255) |   |   |   | Last modifier | |
CRL_CRID | int |   |   |   | Identifier of change request to which this like belongs |
Name | Foreign Table | Primary Key |
---|---|---|
FK_ChangeRequestLikes_ChangeRequests | ChangeRequestLikes | PK_ChangeRequests |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_ChangeRequestLikes | Yes | Yes | CLUSTERED | 0 |
UQ_ChangeRequestLikes_CreatedBy_CRID | Yes |   | NONCLUSTERED | 100 |
IX_ChangeRequestLikes_TSInsert |   |   | NONCLUSTERED | 100 |
IX_ChangeRequestLikes_TSUpdate |   |   | NONCLUSTERED | 100 |
IX_ChangeRequestLikes_CRID |   |   | NONCLUSTERED | 100 |
Description: | Table includes requests for changes in the system |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
CR_ID | int | Yes |   |   | Identifier | |
CR_RowVersion | timestamp |   |   | Yes | Timestamp | |
CR_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
CR_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
CR_CreatedBy | varchar(255) |   |   |   | Author | |
CR_UpdatedBy | varchar(255) |   |   |   | Last modifier | |
CR_IsDeleted | bit |   |   |   | ((0)) | A flag indicating whether the row is deleted |
CR_APPID | int |   |   |   | Identifier of application to which this change request belongs | |
CR_State | int |   |   |   | ((0)) | Change request state |
CR_Title | varchar(1000) |   |   |   | Change request title | |
CR_Content | varchar(MAX) |   |   |   | Change request content | |
CR_IsPrivate | bit |   | Yes |   | ((0)) | A flag indicating whether change request is visible only for author and admin |
CR_RelatedObject | varchar(2000) |   |   |   | Site on which change request was registered |
Name | Foreign Table | Primary Key |
---|---|---|
FK_ChangeRequests_WFApplications | ChangeRequests | PK_WFApplications |
FK_ChangeRequestComments_ChangeRequests | ChangeRequestComments | PK_ChangeRequests |
FK_ChangeRequestLikes_ChangeRequests | ChangeRequestLikes | PK_ChangeRequests |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_ChangeRequests | Yes | Yes | CLUSTERED | 0 |
IX_ChangeRequests_TSInsert |   |   | NONCLUSTERED | 100 |
IX_ChangeRequests_TSUpdate |   |   | NONCLUSTERED | 100 |
IX_ChangeRequests_IsDeleted |   |   | NONCLUSTERED | 100 |
IX_ChangeRequests_APPID |   |   | NONCLUSTERED | 100 |
IX_ChangeRequests_State |   |   | NONCLUSTERED | 100 |
Description: | List of rows in SQL database tables which has been modified via particular save in Sudio Designer. Column CHR_CFTID contains identifier of table (ConfigurationTables table). Column CHR_ChangeTypeID contains type of change (DicSaveObjectTypes table value - i.e. save, edit, insert) |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
CHR_ID | bigint | Yes |   |   | Identifier | |
CHR_CHOID | bigint |   |   |   | ChangeOperation identifier which refers to a row in ChangeOperations table | |
CHR_CFTID | int |   |   |   | ConfigurationTable identifier which refers to a row in ConfigurationTables table | |
CHR_ChangeTypeID | int |   |   |   | ChangeType identifier which refers to a row in DicChangeTypes table | |
CHR_RowID | varchar(20) |   |   |   | Changed system object identifier | |
CHR_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
CHR_RowVersion | timestamp |   |   | Yes | Timestamp | |
CHR_Guid | varchar(36) |   | Yes |   | Entry unique identifier for import export mechanism |
Name | Foreign Table | Primary Key |
---|---|---|
FK_ChangeRows_ConfigurationTables | ChangeRows | PK_ConfigurationTables |
FK_ChangeRows_DicChangeTypes | ChangeRows | PK_DicChangeTypes |
FK_ChangeRows_ChangeOperations | ChangeRows | PK_ChangeOperations |
FK_ChangeDetails_ChangeRows | ChangeDetails | PK_ChangeRows |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_ChangeRows | Yes | Yes | CLUSTERED | 100 |
IX_ChangeRows_CHOID |   |   | NONCLUSTERED | 100 |
Description: | Stores identity user claims values |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
CLM_ID | int | Yes |   |   | Identifier | |
CLM_IUID | int |   |   |   | Identity user identifier | |
CLM_Type | varchar(250) |   |   |   | Claim type | |
CLM_ValueType | varchar(250) |   |   |   | Type of claim value | |
CLM_Value | varchar(250) |   |   |   | Claim value | |
CLM_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
CLM_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
CLM_CreatedBy | varchar(255) |   |   |   | Author | |
CLM_UpdatedBy | varchar(255) |   |   |   | Last modifier | |
CLM_RowVersion | timestamp |   |   | Yes | Timestamp |
Name | Foreign Table | Primary Key |
---|---|---|
FK_Claims_IdentityUsers_IUID | Claims | PK_IdentityUsers |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_Claims | Yes | Yes | CLUSTERED | 100 |
Description: | List of companies |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
COM_ID | int | Yes |   |   | Identifier | |
COM_Code | varchar(20) |   |   |   | Company code | |
COM_Name | varchar(50) |   |   |   | Company name | |
COM_Description | varchar(1000) |   | Yes |   | Company description | |
COM_Users | text |   | Yes |   | Company users | |
COM_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
COM_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
COM_RowVersion | timestamp |   |   | Yes | Timestamp | |
COM_FullNameLine1 | varchar(250) |   | Yes |   | ||
COM_FullNameLine2 | varchar(250) |   | Yes |   | ||
COM_AddressLine1 | varchar(250) |   | Yes |   | ||
COM_AddressLine2 | varchar(250) |   | Yes |   | ||
COM_AddressLine3 | varchar(250) |   | Yes |   | ||
COM_LogoURL | varchar(2048) |   | Yes |   | Company logo URL | |
COM_NIP | varchar(50) |   | Yes |   | Taxpayer identification number (VAT) | |
COM_Phone | varchar(50) |   | Yes |   | Company phone | |
COM_DefaultFor | varchar(MAX) |   | Yes |   | Company default for | |
COM_AdditionalFor | varchar(MAX) |   | Yes |   | Company additional for | |
COM_REGON | varchar(50) |   | Yes |   | Company REGON | |
COM_Guid | varchar(36) |   |   |   | (newid()) | Entry unique identifier for import export mechanism |
COM_IsActive | bit |   |   |   | ((1)) | If bussines entity is active |
Name | Foreign Table | Primary Key |
---|---|---|
FK_ActiveTasks_Companies | ActiveTasks | PK_Companies |
FK_HotFolders_Companies | HotFolders | PK_Companies |
FK_HotMailBoxs_Companies | HotMailBoxs | PK_Companies |
FK_PersonalDataRemovalQueueItems_Companies | PersonalDataRemovalQueueItems | PK_Companies |
FK_TilesConfigurations_Companies | TilesConfigurations | PK_Companies |
FK_WFDataSources_Companies | WFDataSources | PK_Companies |
FK_WFElements_Companies | WFElements | PK_Companies |
FK_WFSecurities_Companies | WFSecurities | PK_Companies |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_Companies | Yes | Yes | CLUSTERED | 100 |
UQ_Companies_Guid | Yes |   | NONCLUSTERED | 100 |
Description: | Stores info about refreshing caches |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
CCT_ID | int | Yes |   |   | Identifier | |
CCT_GroupID | int |   |   |   | Cache group from DicCaheGroups | |
CCT_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
CCT_RowVersion | timestamp |   |   | Yes | Timestamp | |
CCT_UpdatedBy | varchar(255) |   |   |   | Last modifier |
Name | Foreign Table | Primary Key |
---|---|---|
FK_ConfigurationChangeTimestamps_DicCacheGroups | ConfigurationChangeTimestamps | PK_DicCacheGroups |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_ConfigurationChangeTimestamps | Yes | Yes | CLUSTERED | 100 |
Description: | All columns from all configuration tables. Contents are updated via store procedure when user saves correspoding object in Designer Studio. |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
CFC_ID | int | Yes |   |   | Identifier | |
CFC_CFTID | int |   |   |   | ConfigurationTable identifier which refers to a row in ConfigurationTables table | |
CFC_ColumnName | varchar(255) |   |   |   | Column name | |
CFC_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
CFC_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
CFC_IsDeleted | bit |   |   |   | ((0)) | A flag indicating whether the row is deleted |
CFC_RowVersion | timestamp |   |   | Yes | Timestamp |
Name | Foreign Table | Primary Key |
---|---|---|
FK_ConfigurationColumns_ConfigurationTables | ConfigurationColumns | PK_ConfigurationTables |
FK_ChangeDetails_ConfigurationColumns | ChangeDetails | PK_ConfigurationColumns |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_ConfigurationColumns | Yes | Yes | CLUSTERED | 100 |
UQ_ConfigurationColumns_CFTID_Name | Yes |   | NONCLUSTERED | 100 |
Description: | List of all configuration tables. Contents are updated via store procedure when user saves corresponding object in Designer Studio. |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
CFT_ID | int | Yes |   |   | Identifier | |
CFT_Name | varchar(255) |   |   |   | Configuration table name | |
CFT_Prefix | varchar(10) |   |   |   | Configuration table prefix | |
CFT_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
CFT_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
CFT_IsDeleted | bit |   |   |   | ((0)) | A flag indicating whether the row is deleted |
CFT_RowVersion | timestamp |   |   | Yes | Timestamp |
Name | Foreign Table | Primary Key |
---|---|---|
FK_ChangeRows_ConfigurationTables | ChangeRows | PK_ConfigurationTables |
FK_ConfigurationColumns_ConfigurationTables | ConfigurationColumns | PK_ConfigurationTables |
FK_ToDoItems_ConfigurationTables | ToDoItems | PK_ConfigurationTables |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_ConfigurationTables | Yes | Yes | CLUSTERED | 100 |
UQ_ConfigurationTables_Name | Yes |   | NONCLUSTERED | 100 |
UQ_ConfigurationTables_Prefix | Yes |   | NONCLUSTERED | 100 |
Description: | Holds information and data about dynamic dll for webservises |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
CWS_ID | int | Yes |   |   | Identifier | |
CWS_Wsdl | varbinary(MAX) |   |   |   | Wsdl | |
CWS_Assembly | varbinary(MAX) |   |   |   | Assembly | |
CWS_Guid | varchar(36) |   |   |   | (newid()) | Guid |
CWS_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
CWS_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
CWS_RowVersion | timestamp |   |   | Yes | Timestamp | |
CWS_CreatedBy | varchar(255) |   |   |   | Author | |
CWS_UpdatedBy | varchar(255) |   |   |   | Last modifier | |
CWS_CacheKey | varchar(36) |   | Yes |   | Key(guid) used for cache dlls for webservice action and datasource | |
CWS_ACTID | int |   | Yes |   | Foreign key to parent Action | |
CWS_WFSID | int |   | Yes |   | Foreign key to parent DataSource |
Name | Foreign Table | Primary Key |
---|---|---|
FK_ConfiguredWebServices_WFActions | ConfiguredWebServices | PK_WFActions |
FK_ConfiguredWebServices_WFDataSources | ConfiguredWebServices | PK_WFDataSources |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_ConfiguredWebServices | Yes | Yes | CLUSTERED | 100 |
UQ_ConfiguredWebServices_Guid | Yes |   | NONCLUSTERED | 100 |
UQ_ConfiguredWebServices_CWS_ACTID_CWS_WFSID | Yes |   | NONCLUSTERED | 100 |
Description: | List of content databases connected to current configuration database. Content databases and configuration database must function on the same SQL server. |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
CD_ID | int | Yes |   |   | Identifier | |
CD_Name | varchar(200) |   |   |   | Name of content database | |
CD_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Row insert date |
CD_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Row update date |
CD_RowVersion | timestamp |   |   | Yes | Row version | |
CD_Login | varchar(200) |   | Yes |   | Database login | |
CD_Password | varchar(200) |   | Yes |   | Database password | |
CD_Type | int |   |   |   | ((1)) | Database type |
CD_Prefix | varchar(200) |   | Yes |   | Solr index prefix |
Name | Foreign Table | Primary Key |
---|---|---|
FK_ContentDatabases_ContentDatabaseType | ContentDatabases | PK_DicDatabaseTypes |
FK_ElementOperations_ContentDatabases | ElementOperations | PK_ContentDatabases |
FK_HistoricalOperations_ContentDatabases | HistoricalOperations | PK_ContentDatabases |
FK_ServiceDatabases_SD_ContentDatabaseID | ServiceDatabases | PK_ContentDatabases |
FK_SingleSolutionCals_ContentDatabases | SingleSolutionCals | PK_ContentDatabases |
FK_SubstitutionDetails_ContentDatabases | SubstitutionDetails | PK_ContentDatabases |
FK_Substitutions_ContentDatabases | Substitutions | PK_ContentDatabases |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_ContentDatabases | Yes | Yes | CLUSTERED | 100 |
UQ_ContentDatabases_Name | Yes |   | NONCLUSTERED | 100 |
Description: | Table containing DataSet configurations |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
DTS_ID | int | Yes |   |   | Identifier | |
DTS_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
DTS_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
DTS_RowVersion | timestamp |   |   | Yes | Timestamp | |
DTS_CreatedBy | varchar(255) |   |   |   | Author | |
DTS_UpdatedBy | varchar(255) |   |   |   | Last modifier | |
DTS_Guid | varchar(36) |   |   |   | (newid()) | DataSet guid |
DTS_Config | varchar(MAX) |   | Yes |   | DataSet configuration | |
DTS_APPID | int |   | Yes |   | Correlated application ID | |
DTS_Type | int |   |   |   | ((0)) | DataSet type. 0 - Standard, 1 - Dictionary, 2 - Templates, 3 - KPI |
DTS_Name | varchar(100) |   | Yes |   | DataSet name | |
DTS_ADSID | int |   | Yes |   | Foreign key to dashboard |
Name | Foreign Table | Primary Key |
---|---|---|
FK_DataSets_AppDashboards | DataSets | PK_AppDashboards |
FK_DataSets_WFApplications | DataSets | PK_WFApplications |
FK_AppReports_DataSets | AppReports | PK_DataSets |
FK_WFDataSources_DataSets | WFDataSources | PK_DataSets |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_DataSets | Yes | Yes | CLUSTERED | 0 |
UQ_DataSets_Guid | Yes |   | NONCLUSTERED | 0 |
Description: | Stores current and historical acronyms for the content database. Last one is the current value. |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
DAC_ID | int | Yes |   |   | Acronym id. | |
DAC_Acronym | varchar(6) |   |   |   | Acronym of the database. | |
DAC_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Time of insert. |
DAC_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Time of update. |
DAC_RowVersion | timestamp |   |   | Yes | Row version. |
Name | Foreign Table | Primary Key |
---|
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_DatabaseAcronyms | Yes | Yes | CLUSTERED | 100 |
IX_DatabaseAcronyms_Acronym |   |   | NONCLUSTERED | 100 |
Description: | Table includes trusted devices in the system |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
DEV_ID | int | Yes |   |   | Identifier | |
DEV_RowVersion | timestamp |   |   | Yes | Timestamp | |
DEV_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
DEV_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
DEV_Name | varchar(255) |   |   |   | Name of the device | |
DEV_UserLogin | varchar(255) |   |   |   | Login of the user to whom the registered device belongs | |
DEV_DeviceId | varchar(255) |   |   |   | Identifier of the registered device | |
DEV_REGID | int |   |   |   | Identifier of the registered phone |
Name | Foreign Table | Primary Key |
---|---|---|
FK_Devices_RegisteredPhones | Devices | PK_RegisteredPhones |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_Devices | Yes | Yes | CLUSTERED | 0 |
IX_Devices_UserLogin |   |   | NONCLUSTERED | 100 |
IX_Devices_REGID |   |   | NONCLUSTERED | 100 |
UQ_Devices_DEV_UserLogin | Yes |   | NONCLUSTERED | 0 |
Description: | Dictionary table containing available synchronized group types pertaining to the source of group information. |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
TypeID | int | Yes |   |   | Identifier | |
Name | varchar(50) |   |   |   | Translated name of AD group type presented to user | |
EnglishName | varchar(50) |   |   |   | English name of AD group type | |
ObjectName | varchar(50) |   |   |   | Enum value of AD group type | |
RowVersion | timestamp |   |   | Yes | Timestamp |
Name | Foreign Table | Primary Key |
---|---|---|
FK_CacheOrganizationStructure_DicGroupTypes | CacheOrganizationStructure | PK_DicADGroupTypes |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_DicADGroupTypes | Yes | Yes | CLUSTERED | 100 |
Description: | Dictionary table containing available synchronized user types pertaining to the source of user information. |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
TypeID | int | Yes |   |   | Identifier | |
Name | varchar(50) |   |   |   | Translated name of AD user type presented to user | |
EnglishName | varchar(50) |   |   |   | English name of AD user type | |
ObjectName | varchar(50) |   |   |   | Enum value of AD user type | |
RowVersion | timestamp |   |   | Yes | Timestamp |
Name | Foreign Table | Primary Key |
---|---|---|
FK_CacheOrganizationStructure_DicUserTypes | CacheOrganizationStructure | PK_DicADUserTypes |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_DicADUserTypes | Yes | Yes | CLUSTERED | 100 |
Description: | Dictionary table that contains kinds of actions available in the system, e.g. generate PDF, change field value, send an e-mail. |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
TypeID | int | Yes |   |   | Identifier | |
Name | varchar(50) |   |   |   | Translated name of action kind presented to user | |
ObjectName | varchar(50) |   |   |   | Enum value for action kind | |
Description | varchar(512) |   | Yes |   | Translated short explanation of action kind | |
TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
RowVersion | timestamp |   |   | Yes | Timestamp | |
EnglishName | varchar(50) |   |   |   | English name of action kind |
Name | Foreign Table | Primary Key |
---|---|---|
FK_WFActions_DicActionKinds | WFActions | PK_DicActionKinds |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_DicActionKinds | Yes | Yes | CLUSTERED | 100 |
Description: | Dictionary table that contains action types available in system. Determines the moment of execution of the action e.g.: on exit, on timeout, on path, on menu button. |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
TypeID | int | Yes |   |   | Identifier | |
Name | varchar(50) |   |   |   | English name of action type presented to user | |
ObjectName | varchar(50) |   |   |   | Enum value of action type | |
Description | varchar(512) |   | Yes |   | Short explanation of action type in english | |
TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
RowVersion | timestamp |   |   | Yes | Timestamp |
Name | Foreign Table | Primary Key |
---|---|---|
FK_WFActionExecutions_DicActionTypes | WFActionExecutions | PK_DicActionTypes |
FK_WFActions_DicActionTypes | WFActions | PK_DicActionTypes |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_DicActionTypes | Yes | Yes | CLUSTERED | 100 |
Description: | Dictionary table that contains application stages. |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
TypeID | int | Yes |   |   | Identifier | |
Name | varchar(50) |   |   |   | Translated name of application stage presented to user | |
EnglishName | varchar(50) |   |   |   | English name of action stage | |
ObjectName | varchar(50) |   |   |   | Enum value of application stage | |
TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
RowVersion | timestamp |   |   | Yes | Timestamp |
Name | Foreign Table | Primary Key |
---|---|---|
FK_WFApplications_DicApplicationStages | WFApplications | PK_DicApplicationStages |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_DicApplicationStages | Yes | Yes | CLUSTERED | 100 |
Description: | Dictionary table containing application templates |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
TypeID | int | Yes |   |   | Identifier | |
Name | varchar(50) |   |   |   | Translated name of application template presented to user | |
ObjectName | varchar(50) |   |   |   | Enum value of application template | |
Description | varchar(512) |   | Yes |   | Short explanation of application template in english | |
TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
RowVersion | timestamp |   |   | Yes | Timestamp | |
EnglishName | varchar(50) |   |   |   | English name of application template |
Name | Foreign Table | Primary Key |
---|---|---|
FK_WFApplications_DicApplicationTemplates | WFApplications | PK_DicApplicationTemplates |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_DicApplicationTemplates | Yes | Yes | CLUSTERED | 100 |
Description: | Dictionary table that contains types of task assignments. |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
TypeID | int | Yes |   |   | Identifier | |
Name | varchar(50) |   |   |   | Translated name of assign type presented to user | |
ObjectName | varchar(50) |   |   |   | Enum value of assign type | |
Description | varchar(512) |   | Yes |   | Short explanation of assign type in english | |
TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
RowVersion | timestamp |   |   | Yes | Timestamp | |
EnglishName | varchar(50) |   | Yes |   | English name of assign type |
Name | Foreign Table | Primary Key |
---|---|---|
FK_ActiveTasks_DicAssignTypes | ActiveTasks | PK_DicAssignTypes |
FK_HistoryTasks_DicAssignTypes | HistoryTasks | PK_DicAssignTypes |
FK_HistoryTasks_DicAssignTypes | HistoryTasks | PK_DicAssignTypes |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_DicAssignTypes | Yes | Yes | CLUSTERED | 100 |
Description: | Dictionary table containing automation data types |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
TypeID | int | Yes |   |   | Identifier | |
Name | varchar(50) |   |   |   | Name of automation type | |
EnglishName | varchar(50) |   |   |   | Name of automation type (English equivalent) | |
ObjectName | varchar(50) |   |   |   | Enum member | |
TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
RowVersion | timestamp |   |   | Yes | Timestamp |
Name | Foreign Table | Primary Key |
---|---|---|
FK_AutomationParameters_DicAutomationsParameterTypes | AutomationParameters | PK_DicAutomationsParameterTypes |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_DicAutomationsParameterTypes | Yes | Yes | CLUSTERED | 100 |
Description: | Dictionary table that contains available business rules return types. |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
TypeID | int | Yes |   |   | Identifier | |
Name | varchar(50) |   |   |   | Translated name of business rule edit mode type presented to user | |
EnglishName | varchar(50) |   |   |   | English name of business rule edit mode type | |
ObjectName | varchar(50) |   |   |   | Enum value of business rule edit mode type | |
TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
RowVersion | timestamp |   |   | Yes | Timestamp |
Name | Foreign Table | Primary Key |
---|---|---|
FK_WFBusinessRuleDefinitions_DicBusinessRulesEditModeTypes | WFBusinessRuleDefinitions | PK_DicBusinessRulesEditModeTypes |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_DicBusinessRulesEditModeTypes | Yes | Yes | CLUSTERED | 100 |
Description: | Dictionary table that contains available business rules return types. |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
TypeID | int | Yes |   |   | Identifier | |
Name | varchar(50) |   |   |   | Translated name of business rule return value type presented to user | |
EnglishName | varchar(50) |   |   |   | English name of business rule return value type | |
ObjectName | varchar(50) |   |   |   | Enum value of business rule return value type | |
TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
RowVersion | timestamp |   |   | Yes | Timestamp |
Name | Foreign Table | Primary Key |
---|---|---|
FK_AutomationParameters_DicBusinessRulesReturnedValueTypes | AutomationParameters | PK_DicBusinessRulesReturnedValueTypes |
FK_WFBusinessRuleDefinitions_DicBusinessRulesReturnedValueTypes | WFBusinessRuleDefinitions | PK_DicBusinessRulesReturnedValueTypes |
FK_WFBusinessRuleParameters_DicBusinessRulesReturnedValueTypes | WFBusinessRuleParameters | PK_DicBusinessRulesReturnedValueTypes |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_DicBusinessRulesReturnedValueTypes | Yes | Yes | CLUSTERED | 100 |
Description: | Dictionary table that contains business rules types. |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
TypeID | int | Yes |   |   | Identifier | |
Name | varchar(50) |   |   |   | Translated name of business rule type presented to user | |
EnglishName | varchar(50) |   |   |   | English name of business rule type | |
ObjectName | varchar(50) |   |   |   | Enum value of business rule type | |
TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
RowVersion | timestamp |   |   | Yes | Timestamp |
Name | Foreign Table | Primary Key |
---|---|---|
FK_WFBusinessRuleDefinitions_DicBusinessRulesTypes | WFBusinessRuleDefinitions | PK_DicBusinessRulesTypes |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_DicBusinessRulesTypes | Yes | Yes | CLUSTERED | 100 |
Description: | Dictionary table that stores cache groups |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
TypeID | int | Yes |   |   | Identifier | |
Name | varchar(50) |   |   |   | Translated name for cache group presented to user | |
EnglishName | varchar(50) |   |   |   | English name for cache group | |
ObjectName | varchar(50) |   |   |   | Enum value of cache group | |
RowVersion | timestamp |   |   | Yes | Timestamp |
Name | Foreign Table | Primary Key |
---|---|---|
FK_BusinessObjectsChangeTimestamps_DicCacheGroups | BusinessObjectsChangeTimestamps | PK_DicCacheGroups |
FK_ConfigurationChangeTimestamps_DicCacheGroups | ConfigurationChangeTimestamps | PK_DicCacheGroups |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_DicCacheGroups | Yes | Yes | CLUSTERED | 100 |
Description: | Dictionary table that contains types of changes. It is used in history of configuration changes. |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
TypeID | int | Yes |   |   | Identifier | |
Name | varchar(50) |   |   |   | Name of change type presented to user | |
ObjectName | varchar(50) |   |   |   | Enum value of change type | |
Description | varchar(512) |   | Yes |   | Short explanation of change type | |
TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
RowVersion | timestamp |   |   | Yes | Timestamp |
Name | Foreign Table | Primary Key |
---|---|---|
FK_ChangeRows_DicChangeTypes | ChangeRows | PK_DicChangeTypes |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_DicChangeTypes | Yes | Yes | CLUSTERED | 100 |
Description: | Dictionary table that contains subtypes for choice field |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
TypeID | int | Yes |   |   | Identifier | |
Name | varchar(50) |   |   |   | Translated name of choice field type presented to user | |
EnglishName | varchar(50) |   |   |   | English name of choice field type | |
ObjectName | varchar(50) |   |   |   | Enum value of choice field type | |
TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
RowVersion | timestamp |   |   | Yes | Timestamp |
Name | Foreign Table | Primary Key |
---|---|---|
FK_WFConfigurations_DicChoiceFieldTypes | WFConfigurations | PK_DicChoiceFieldTypes |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_DicChoiceFieldTypes | Yes | Yes | CLUSTERED | 100 |
Description: | Condition types to apply to business rule result |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
TypeID | int | Yes |   |   | ID of condition type | |
Name | varchar(50) |   |   |   | Conditions types | |
EnglishName | varchar(50) |   |   |   | Conditions types (English equivalent) | |
ObjectName | varchar(50) |   |   |   | Enum member | |
TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | ICreation date |
TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
RowVersion | timestamp |   |   | Yes | Timestamp |
Name | Foreign Table | Primary Key |
---|---|---|
FK_MassNotificationBusinessRules_DicConditionTypes | MassNotificationBusinessRules | PK_DicConditionTypes |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_DicConditionTypes | Yes | Yes | CLUSTERED | 100 |
Description: | Dictionary table that contains security access levels that can be defined for applications and BPS Studio. |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
TypeID | int | Yes |   |   | Identifier | |
TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
RowVersion | timestamp |   |   | Yes | Timestamp | |
Name | varchar(50) |   |   |   | Name of configuration security level presented to user | |
ObjectName | varchar(50) |   |   |   | Enum value of configuration security level | |
Description | varchar(512) |   | Yes |   | Short explanation of configuration security level |
Name | Foreign Table | Primary Key |
---|---|---|
FK_WFConfigurationSecurities_DicConfigurationSecurityLevels | WFConfigurationSecurities | PK_DicConfigurationSecurityLevel |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_DicConfigurationSecurityLevel | Yes | Yes | CLUSTERED | 100 |
Description: | Dictionary table that contains types of form fields. It also defines types of form field used in predefined process. |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
TypeID | int | Yes |   |   | Identifier | |
Name | varchar(50) |   |   |   | Translated name of configuration template presented to user | |
ObjectName | varchar(50) |   |   |   | Enum value of configuration template | |
Description | varchar(512) |   | Yes |   | Short explanation of configuration template | |
DefinitionTemplateID | int |   | Yes |   | Definition template id references DicDefinitionTemplates table | |
TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
RowVersion | timestamp |   |   | Yes | Timestamp | |
EnglishName | varchar(50) |   |   |   | English name of configuration template | |
IsRequied | bit |   |   |   | ((0)) | Bit value that defines necessity of confiuration template |
FTID | int |   | Yes |   | Field template ID from FieldTemplates table |
Name | Foreign Table | Primary Key |
---|---|---|
FK_DicConfigurationTemplates_FieldTemplates | DicConfigurationTemplates | PK_FieldTemplates |
FK_WFConfigurations_DicConfigurationTemplates | WFConfigurations | PK_DicConfigurationTemplates |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_DicConfigurationTemplates | Yes | Yes | CLUSTERED | 100 |
UQ_DicConfigurationTemplates_FTID | Yes |   | NONCLUSTERED | 100 |
Description: | Dictionary table that stores data cache groups |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
TypeID | int | Yes |   |   | Identifier | |
ObjectName | varchar(50) |   |   |   | Enum value of data cache group | |
RowVersion | timestamp |   |   | Yes | Timestamp |
Name | Foreign Table | Primary Key |
---|---|---|
FK_ExpiringObjectsConfigurations_DicDataCacheGroups | ExpiringObjectsConfigurations | PK_DicDataCacheGroups |
FK_ResettableObjectsChangeTimestamps_DicDataCacheGroups | ResettableObjectsChangeTimestamps | PK_DicDataCacheGroups |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_DicDataCacheGroups | Yes | Yes | CLUSTERED | 100 |
Description: | Dictionary table that contains types of data sources. It also defines predefined data sources available in system (with defined structure). |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
TypeID | int | Yes |   |   | Identifier | |
Name | varchar(50) |   |   |   | Translated name of data source template presented to user | |
ObjectName | varchar(50) |   |   |   | Enum value of data source template | |
Description | varchar(512) |   | Yes |   | Short explanation of data source template | |
TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
RowVersion | timestamp |   |   | Yes | Timestamp | |
EnglishName | varchar(50) |   |   |   | English name of data source template |
Name | Foreign Table | Primary Key |
---|---|---|
FK_WFDataSources_DicDataSourceTemplates | WFDataSources | PK_DicDataSourceTemplates |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_DicDataSourceTemplates | Yes | Yes | CLUSTERED | 100 |
Description: | Dictionary table that contains database types. |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
TypeID | int | Yes |   |   | Identifier | |
Name | varchar(50) |   |   |   | Translated name of database type presented to user | |
EnglishName | varchar(50) |   |   |   | English name of database type | |
ObjectName | varchar(50) |   |   |   | Enum value of database type | |
TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
RowVersion | timestamp |   |   | Yes | Timestamp |
Name | Foreign Table | Primary Key |
---|---|---|
FK_ContentDatabases_ContentDatabaseType | ContentDatabases | PK_DicDatabaseTypes |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_DicDatabaseTypes | Yes | Yes | CLUSTERED | 100 |
Description: | Dictionary table that contains types of predefined processes. |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
TypeID | int | Yes |   |   | Identifier | |
Name | varchar(50) |   |   |   | Translated name of definition template presented to user | |
ObjectName | varchar(50) |   |   |   | Enum value of definition template | |
Description | varchar(512) |   | Yes |   | Short explanation of definition template | |
TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
RowVersion | timestamp |   |   | Yes | Timestamp | |
EnglishName | varchar(50) |   |   |   | English name of definition template |
Name | Foreign Table | Primary Key |
---|---|---|
FK_FieldTemplates_DicDefinitionTemplates | FieldTemplates | PK_DicDefinitionTemplates |
FK_WFDefinitions_DicDefinitionTemplates | WFDefinitions | PK_DicDefinitionTemplates |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_DicDefinitionTemplates | Yes | Yes | CLUSTERED | 100 |
Description: | Dictionary table that contains data source types in Designer Desk |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
TypeID | int | Yes |   |   | Identifier | |
Name | varchar(255) |   |   |   | Translated name of desk data source type presented to user | |
EnglishName | varchar(255) |   |   |   | English name of desk data source type | |
ObjectName | varchar(50) |   |   |   | Enum velue of desk data source type | |
TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
RowVersion | timestamp |   |   | Yes | Timestamp |
Name | Foreign Table | Primary Key |
---|---|---|
FK_WFDataSources_DicDeskDataSourceTypes | WFDataSources | PK_DicDeskDataSourceTypes |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_DicDeskDataSourceTypes | Yes | Yes | CLUSTERED | 100 |
Description: | Dictionary table that contains statuses of elements. |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
TypeID | int | Yes |   |   | Identifier | |
Name | nvarchar(50) |   |   |   | Name of element status presented to user | |
ObjectName | varchar(50) |   |   |   | Enum value of element status | |
Description | nvarchar(MAX) |   | Yes |   | Short explanation of element status | |
TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
RowVersion | timestamp |   |   | Yes | Timestamp |
Name | Foreign Table | Primary Key |
---|---|---|
FK_WFElements_DicElementStatuses | WFElements | PK_DicElementStatuses |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_DicElementStatuses | Yes | Yes | CLUSTERED | 100 |
Description: | Dictionary table that contains types of columns which can be defined within item lists. |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
TypeID | int | Yes |   |   | Identifier | |
Name | varchar(50) |   |   |   | Translated name of field detail type presented to user | |
ObjectName | varchar(50) |   |   |   | Enum value of field detail type | |
Description | varchar(512) |   | Yes |   | Short explanation of field detail type | |
TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
RowVersion | timestamp |   |   | Yes | Timestamp | |
EnglishName | varchar(50) |   | Yes |   | English name of field detail type |
Name | Foreign Table | Primary Key |
---|---|---|
FK_WFDetailConfigs_DicFieldDetailTypes | WFDetailConfigs | PK_DicFieldDetailTypes |
FK_WFFieldDetailDefinitions_DicFieldDetailTypes | WFFieldDetailDefinitions | PK_DicFieldDetailTypes |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_DicFieldDetailTypes | Yes | Yes | CLUSTERED | 100 |
Description: | Dictionary table that contains operation types for SolrIndexerQueueItems |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
TypeID | int | Yes |   |   | Identifier | |
Name | varchar(50) |   |   |   | Translated name of indexing operation presented to user | |
EnglishName | varchar(50) |   |   |   | English name of indexing operation | |
ObjectName | varchar(50) |   |   |   | Enum value of indexing operation | |
TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
RowVersion | timestamp |   |   | Yes | Timestamp |
Name | Foreign Table | Primary Key |
---|---|---|
FK_SolrActivityQueueItems_DicIndexingOperations | SolrActivityQueueItems | PK_DicIndexingOperations |
FK_SolrElementQueueItems_DicIndexingOperations | SolrElementQueueItems | PK_DicIndexingOperations |
FK_SolrFileQueueItems_DicIndexingOperations | SolrFileQueueItems | PK_DicIndexingOperations |
FK_SolrUtilityQueueItems_DicIndexingOperations | SolrUtilityQueueItems | PK_DicIndexingOperations |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_DicIndexingOperations | Yes | Yes | CLUSTERED | 100 |
Description: | Dictionary table that holds log categories |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
TypeID | int | Yes |   |   | Identifier | |
Name | varchar(50) |   |   |   | Translated name of log category presented to user | |
EnglishName | varchar(50) |   |   |   | English name of log category | |
ObjectName | varchar(50) |   |   |   | Enum value of log category | |
TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
RowVersion | timestamp |   |   | Yes | Timestamp |
Name | Foreign Table | Primary Key |
---|---|---|
FK_AdminWFEventLogs_DicLogCategories | AdminWFEventLogs | PK_DicLogCategories |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_DicLogCategories | Yes | Yes | CLUSTERED | 100 |
Description: | Dictionary table that hold system sources |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
TypeID | int | Yes |   |   | Identifier | |
Name | varchar(50) |   |   |   | Translated name of log source presented to user | |
EnglishName | varchar(50) |   |   |   | English name of log source | |
ObjectName | varchar(50) |   |   |   | Enum value of log source | |
TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
RowVersion | timestamp |   |   | Yes | Timestamp |
Name | Foreign Table | Primary Key |
---|---|---|
FK_AdminWFEventLogs_DicLogSources | AdminWFEventLogs | PK_DicLogSources |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_DicLogSources | Yes | Yes | CLUSTERED | 100 |
Description: | Business rule types for mass notification configuration |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
TypeID | int | Yes |   |   | ID of rule type | |
Name | varchar(50) |   |   |   | Name of rule type | |
EnglishName | varchar(50) |   |   |   | Name of rule type (English equivalent) | |
ObjectName | varchar(50) |   |   |   | Enum member | |
TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | ICreation date |
TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
RowVersion | timestamp |   |   | Yes | Timestamp |
Name | Foreign Table | Primary Key |
---|---|---|
FK_MassNotificationBusinessRules_DicMassNotificationRuleTypes | MassNotificationBusinessRules | PK_DicMassNotificationRuleTypes |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_DicMassNotificationRuleTypes | Yes | Yes | CLUSTERED | 100 |
Description: | Dictionary table containing personal data cleaning modes |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
TypeID | int | Yes |   |   | Identifier | |
Name | varchar(50) |   |   |   | Translated name of personal data cleaning mode presented to user | |
EnglishName | varchar(50) |   |   |   | English name of personal data cleaning mode | |
ObjectName | varchar(50) |   |   |   | Enum value of personal data cleaning mode | |
TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
RowVersion | timestamp |   |   | Yes | Timestamp |
Name | Foreign Table | Primary Key |
---|---|---|
FK_WFConfigurations_DicPersonalDataCleaningModes | WFConfigurations | PK_DicPersonalDataCleaningModes |
FK_WFDefinitions_DicPersonalDataCleaningModes | WFDefinitions | PK_DicPersonalDataCleaningModes |
FK_WFDetailConfigs_DicPersonalDataCleaningModes | WFDetailConfigs | PK_DicPersonalDataCleaningModes |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_DicPersonalDataCleaningModes | Yes | Yes | CLUSTERED | 100 |
Description: | Dictionary table containing personal data types |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
TypeID | int | Yes |   |   | Identifier | |
Name | varchar(50) |   |   |   | Translated name of personal data type presented to user | |
EnglishName | varchar(50) |   |   |   | English name of personal data type | |
ObjectName | varchar(50) |   |   |   | Enum value of personal data type | |
TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
RowVersion | timestamp |   |   | Yes | Timestamp |
Name | Foreign Table | Primary Key |
---|---|---|
FK_WFConfigurations_DicPersonalDataTypes | WFConfigurations | PK_DicPersonalDataTypes |
FK_WFDetailConfigs_DicPersonalDataTypes | WFDetailConfigs | PK_DicPersonalDataTypes |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_DicPersonalDataTypes | Yes | Yes | CLUSTERED | 100 |
Description: | Dictionary table that contains available personal data usage modes |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
TypeID | int | Yes |   |   | Identifier | |
Name | varchar(50) |   |   |   | Translated name of personal data usage mode presented to user | |
EnglishName | varchar(50) |   |   |   | English name of personal data usage mode | |
ObjectName | varchar(50) |   |   |   | Enum value of personal data usage mode | |
TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
RowVersion | timestamp |   |   | Yes | Timestamp |
Name | Foreign Table | Primary Key |
---|---|---|
FK_WFDataSources_DicPersonalDataUsageModes | WFDataSources | PK_DicPersonalDataUsageModes |
FK_WFDefinitions_DicPersonalDataUsageModes | WFDefinitions | PK_DicPersonalDataUsageModes |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_DicPersonalDataUsageModes | Yes | Yes | CLUSTERED | 100 |
Description: | Dictionary table that contains roles that can be performed by Workflow (BPS) Services. |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
TypeID | int | Yes |   |   | Identifier | |
Name | varchar(50) |   |   |   | Name of role presented to user | |
ObjectName | varchar(50) |   |   |   | Enum value of role | |
Description | varchar(512) |   | Yes |   | Short explanation of role | |
TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
RowVersion | timestamp |   |   | Yes | Timestamp |
Name | Foreign Table | Primary Key |
---|---|---|
FK_ServiceRoles_RoleID_Roles_ID | ServiceRoles | PK_DicRoles |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_DicRoles | Yes | Yes | CLUSTERED | 100 |
Description: | Dictionary table that contains objects that are being configured and saved along with history of changes. |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
TypeID | int | Yes |   |   | Identifier | |
Name | varchar(50) |   |   |   | Name of save object type presented to user | |
ObjectName | varchar(50) |   |   |   | Enum value of save object type | |
RootEntity | varchar(100) |   |   |   | ||
Description | varchar(512) |   | Yes |   | Short explanation of save object type | |
TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
RowVersion | timestamp |   |   | Yes | Timestamp |
Name | Foreign Table | Primary Key |
---|---|---|
FK_ChangeOperations_DicSaveObjectTypes | ChangeOperations | PK_DicSaveObjectTypes |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_DicSaveObjectTypes | Yes | Yes | CLUSTERED | 100 |
Description: | Dictionary table that contains security access levels that can be defined for elements in the system. |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
TypeID | int | Yes |   |   | Identifier | |
Name | varchar(50) |   |   |   | Name of security level presented to user | |
ObjectName | varchar(50) |   |   |   | Enum value of security level | |
Description | varchar(512) |   | Yes |   | Short explanation of security level | |
TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
RowVersion | timestamp |   |   | Yes | Timestamp |
Name | Foreign Table | Primary Key |
---|---|---|
FK_WFSecurity_DicSecurityLevel | WFSecurities | PK_DicSecurityLevel |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_DicSecurityLevel | Yes | Yes | CLUSTERED | 100 |
Description: | Dictionary table that contains types of steps that can be definedused in the system. |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
TypeID | int | Yes |   |   | Identifier | |
Name | nvarchar(50) |   |   |   | Name of step type presented to user | |
ObjectName | varchar(50) |   |   |   | Enum value of step type | |
Description | nvarchar(512) |   | Yes |   | Short explanation of step type | |
TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
RowVersion | timestamp |   |   | Yes | Timestamp |
Name | Foreign Table | Primary Key |
---|---|---|
FK_WFSteps_DicStepTypes | WFSteps | PK_DicStepTypes |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_DicStepTypes | Yes | Yes | CLUSTERED | 100 |
Description: | Dictionary table that contains substitution trigger types |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
TypeID | int | Yes |   |   | Substitution trigger type identifier | |
Name | varchar(255) |   |   |   | Substitution trigger type name | |
EnglishName | varchar(255) |   |   |   | Substitution trigger type name (English equivalent) | |
ObjectName | varchar(50) |   |   |   | Enum member | |
TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
RowVersion | timestamp |   |   | Yes | Timestamp |
Name | Foreign Table | Primary Key |
---|
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_DicSubstitutionTriggers | Yes | Yes | CLUSTERED | 100 |
Description: | Dictionary table that contains substitution types |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
TypeID | int | Yes |   |   | Substitution type identifier | |
Name | varchar(255) |   |   |   | Substitution type name | |
EnglishName | varchar(255) |   |   |   | Substitution type name (English equivalent) | |
ObjectName | varchar(50) |   |   |   | Enum member | |
TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
RowVersion | timestamp |   |   | Yes | Timestamp |
Name | Foreign Table | Primary Key |
---|
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_DicSubstitutionTypes | Yes | Yes | CLUSTERED | 100 |
Description: | Dictionary table contains information about task flags |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
TypeID | int | Yes |   |   | Identifier | |
Name | varchar(50) |   |   |   | Flag name presented to user | |
ObjectName | varchar(50) |   |   |   | Enum value of task flag | |
TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
RowVersion | timestamp |   |   | Yes | Timestamp |
Name | Foreign Table | Primary Key |
---|---|---|
FK_ActiveTasks_DicTaskFlags | ActiveTasks | PK_DicTaskFlags |
FK_HistoryTasks_DicTaskFlags | HistoryTasks | PK_DicTaskFlags |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_DicTaskFlags | Yes | Yes | CLUSTERED | 100 |
Description: | Dictionary table that contains types of templates e.g. for emails and notifications. |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
TypeID | int | Yes |   |   | Identifier | |
Name | varchar(50) |   |   |   | Name of template type presented to user | |
ObjectName | varchar(50) |   |   |   | Enum value of template type | |
Description | varchar(512) |   | Yes |   | Short explanation of template type | |
TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
RowVersion | timestamp |   |   | Yes | Timestamp |
Name | Foreign Table | Primary Key |
---|---|---|
FK_WFMessageTemplates_DicTemplateTypes | WFMessageTemplates | PK_DicTemplateTypes |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_DicTemplateTypes | Yes | Yes | CLUSTERED | 100 |
Description: | Dictionary table contains translations for BPS objects |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
TypeID | int | Yes |   |   | Identifier | |
TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
RowVersion | timestamp |   |   | Yes | Timestamp | |
Name | varchar(50) |   |   |   | Translated name of object | |
EnglishName | varchar(50) |   |   |   | English name of object | |
ObjectName | varchar(50) |   |   |   | Enum value of object | |
TableName | varchar(50) |   |   |   | Name of table correlated with object | |
ColumnName | varchar(50) |   |   |   | Name of column correlated with object |
Name | Foreign Table | Primary Key |
---|
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_DicTranslationsObjects | Yes | Yes | CLUSTERED | 100 |
Description: | Table contains field type ID: 1-Varchar(255) 2-Text 3-Boolean 4.VarcharChoose 5-Int 6-Decimal 7-DateTime 10-DocType 11-AssignedPerson |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
TypeID | int | Yes |   |   | Identifier | |
Name | varchar(50) |   |   |   | ENG Name | |
ObjectName | varchar(50) |   |   |   | ||
Description | varchar(512) |   | Yes |   | ENG Description | |
TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Row insert date |
TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Row update date |
RowVersion | timestamp |   |   | Yes | Row version | |
EnglishName | varchar(50) |   | Yes |   |
Name | Foreign Table | Primary Key |
---|---|---|
FK_WFConfigurations_DicWFFieldTypes | WFConfigurations | PK_DicWFFieldTypes |
FK_WFFieldDefinitions_DicWFFieldTypes | WFFieldDefinitions | PK_DicWFFieldTypes |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_DicWFFieldTypes | Yes | Yes | CLUSTERED | 100 |
Description: | Dictionary table containing WebPartTypes |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
TypeID | int | Yes |   |   | Identifier | |
Name | varchar(70) |   |   |   | Translated WebPart name presented to user | |
EnglishName | varchar(70) |   |   |   | English WebPart name | |
ObjectName | varchar(70) |   |   |   | Enum WebPart value | |
TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
RowVersion | timestamp |   |   | Yes | Timestamp |
Name | Foreign Table | Primary Key |
---|---|---|
FK_AppReports_DicWebPartTypes | AppReports | PK_DicWebPartTypes |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_DicWebPartTypes | Yes | Yes | CLUSTERED | 100 |
Description: | Table connecting document types with workflows. Contains information which document types can be processed by particular workflows. |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
ASS_ID | int | Yes |   |   | Identifier | |
ASS_DTYPEID | int |   |   |   | Relation to the instance type | |
ASS_WFID | int |   |   |   | Relation to the Workflows table | |
ASS_Name | varchar(50) |   | Yes |   | Name | |
ASS_Description | varchar(500) |   | Yes |   | Description | |
ASS_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Row insert date |
ASS_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Row update date |
ASS_RowVersion | timestamp |   |   | Yes | Row version | |
ASS_Guid | varchar(36) |   |   |   | (newid()) | Global unique ID |
Name | Foreign Table | Primary Key |
---|---|---|
FK_DocTypeAssocciation_WFDocTypes | DocTypeAssocciations | PK_WFDocTypes |
FK_DocTypeAssocciation_WorkFlows | DocTypeAssocciations | PK_WorkFlows |
FK_AIAnalysisConfigurations_DocTypeAssocciations | AIAnalysisConfigurations | PK_DocTypeAssocciation |
FK_WFSecurities_DocTypeAssocciations | WFSecurities | PK_DocTypeAssocciation |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_DocTypeAssocciation | Yes | Yes | CLUSTERED | 100 |
UQ_DocTypeAssocciations_Guid | Yes |   | NONCLUSTERED | 100 |
IX_DocTypeAssocciations_ASS_WFID |   |   | NONCLUSTERED | 100 |
Description: | Stores IDs of attributes defined by user or system attributes for each process as displayed on tiles and lists in mobile applications. |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
EDC_ID | int | Yes |   |   | Row ID. | |
EDC_DEF_ID | int |   |   |   | Stores process ID (foreign key to WFDefinitions.DEF_ID). | |
EDC_Heading1WfconId | int |   | Yes |   | Stores ID of attribute which will be displayed as heading (foreign key to WFConfigurations.WFCON_ID). If it is defined, EDC_Heading1SysAttId should be null. | |
EDC_Heading1SysAttId | int |   | Yes |   | Stores ID of system attribute which will be displayed as heading. If it is defined, EDC_Heading1WfconIdshould be null. | |
EDC_Details1WfconId | int |   | Yes |   | Stores ID of attribute which will be displayed as details row 1 (foreign key to WFConfigurations.WFCON_ID). If it is defined, EDC_Details1WfconId should be null. | |
EDC_Details1SysAttId | int |   | Yes |   | Stores ID of system attribute which will be displayed as details row 1. If it is defined, EDC_Details1WfconId be null. | |
EDC_Details2WfconId | int |   | Yes |   | Stores ID of attribute which will be displayed as details row 2 (foreign key to WFConfigurations.WFCON_ID). If it is defined, EDC_Details2WfconId should be null. | |
EDC_Details2SysAttId | int |   | Yes |   | Stores ID of system attribute which will be displayed as details row 2. If it is defined, EDC_Details2WfconId be null. | |
EDC_Details3WfconId | int |   | Yes |   | Stores ID of attribute which will be displayed as details row 3 (foreign key to WFConfigurations.WFCON_ID). If it is defined, EDC_Details3WfconId should be null. | |
EDC_Details3SysAttId | int |   | Yes |   | Stores ID of system attribute which will be displayed as details row 3. If it is defined, EDC_Details3WfconId be null. | |
EDC_Details4WfconId | int |   | Yes |   | Stores ID of attribute which will be displayed as details row 4 (foreign key to WFConfigurations.WFCON_ID). If it is defined, EDC_Details4WfconId should be null. | |
EDC_Details4SysAttId | int |   | Yes |   | Stores ID of system attribute which will be displayed as details row 4. If it is defined, EDC_Details2WfconId be null. | |
EDC_Details5WfconId | int |   | Yes |   | Stores ID of attribute which will be displayed as details row 5 (foreign key to WFConfigurations.WFCON_ID). If it is defined, EDC_Details5WfconId should be null. | |
EDC_Details5SysAttId | int |   | Yes |   | Stores ID of system attribute which will be displayed as details row 5. If it is defined, EDC_Details5WfconId be null. | |
EDC_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Time of insert. |
EDC_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Time of update. |
EDC_RowVersion | timestamp |   |   | Yes | Row version. | |
EDC_Guid | varchar(36) |   |   |   | (newid()) | Global unique ID |
Name | Foreign Table | Primary Key |
---|---|---|
FK_ElementDisplayConfigs_WFDefinitions_DEF_ID | ElementDisplayConfigs | PK_WFDefinitions |
FK_ElementDisplayConfigs_WFConfigurations_Details1WfconId | ElementDisplayConfigs | PK_WFConfigurations |
FK_ElementDisplayConfigs_WFConfigurations_Details2WfconId | ElementDisplayConfigs | PK_WFConfigurations |
FK_ElementDisplayConfigs_WFConfigurations_Details3WfconId | ElementDisplayConfigs | PK_WFConfigurations |
FK_ElementDisplayConfigs_WFConfigurations_Details4WfconId | ElementDisplayConfigs | PK_WFConfigurations |
FK_ElementDisplayConfigs_WFConfigurations_Details5WfconId | ElementDisplayConfigs | PK_WFConfigurations |
FK_ElementDisplayConfigs_WFConfigurations_Heading1WfconId | ElementDisplayConfigs | PK_WFConfigurations |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_ElementDisplayConfigs | Yes | Yes | CLUSTERED | 100 |
UQ_ElementDisplayConfigs_Guid | Yes |   | NONCLUSTERED | 100 |
IX_ElementDisplayConfigs_EDC_DEF_ID |   |   | NONCLUSTERED | 100 |
Description: | List of BPS elements in which some operation was performed by External users |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
EOP_ID | int | Yes |   |   | Identifier | |
EOP_MOPID | int |   |   |   | FK to MonthlyOperations | |
EOP_CDID | int |   |   |   | FK to ContentDatabases | |
EOP_WFDID | int |   |   |   | Element ID | |
EOP_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
EOP_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
EOP_RowVersion | timestamp |   |   | Yes | Timestamp |
Name | Foreign Table | Primary Key |
---|---|---|
FK_ElementOperations_ContentDatabases | ElementOperations | PK_ContentDatabases |
FK_ElementOperations_MonthlyOperations | ElementOperations | PK_MonthlyOperations |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_ElementOperations | Yes | Yes | CLUSTERED | 0 |
IX_ElementOperations_WFDID |   |   | NONCLUSTERED | 0 |
Description: | Table that contains exchange rates from NBP’s (National Bank of Poland) service. Table is refreshed periodically. |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
EXC_ID | int | Yes |   |   | Identifier | |
EXC_Code | varchar(3) |   |   |   | Currency code | |
EXC_Conversion | int |   |   |   | Currency converter | |
EXC_PurchasePrice | decimal(18,6) |   | Yes |   | Purchase price | |
EXC_SellPrice | decimal(18,6) |   | Yes |   | Sell price | |
EXC_PublicationDate | datetime |   |   |   | Date of publication | |
EXC_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
EXC_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
EXC_RowVersion | timestamp |   |   | Yes | Timestamp | |
EXC_Name | varchar(50) |   | Yes |   | Currency name | |
EXC_Country | varchar(100) |   | Yes |   | Country name with a given currency | |
EXC_EffectDate | datetime |   |   |   | Exchange rate date | |
EXC_AveragePrice | decimal(18,6) |   | Yes |   | Average price | |
EXC_AveragePriceSource | nvarchar(100) |   | Yes |   | Table from which the average exchange rate was taken | |
EXC_SellPurchasePriceSource | nvarchar(100) |   | Yes |   | Table from which the selling and buying rate was taken | |
EXC_DataSource | int |   |   |   | Currency exchange API identifier | |
EXC_DirectQuotation | int |   |   |   | ((0)) | Currency exchange rate quotation type: direct 1 or indirect 0 |
Name | Foreign Table | Primary Key |
---|
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_ExchangeRates | Yes | Yes | CLUSTERED | 100 |
IX_ExchangeRates_EXC_EffectDateCode |   |   | NONCLUSTERED | 100 |
Description: | Stores info about configuration of resettable objects |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
EOC_ID | int | Yes |   |   | Expirable group from DicDataCacheGroups | |
EOC_ExpirationDuration | int |   |   |   | Expiration duration in seconds | |
EOC_RowVersion | timestamp |   |   | Yes | Timestamp |
Name | Foreign Table | Primary Key |
---|---|---|
FK_ExpiringObjectsConfigurations_DicDataCacheGroups | ExpiringObjectsConfigurations | PK_DicDataCacheGroups |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_ExpiringObjectsConfigurations | Yes | Yes | CLUSTERED | 100 |
Description: | Stores external user profiles from Bps Auth STS |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
EXU_ID | int | Yes |   |   | Identifier | |
EXU_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
EXU_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
EXU_RowVersion | timestamp |   |   | Yes | Timestamp | |
EXU_CreatedBy | varchar(255) |   |   |   | Author | |
EXU_UpdatedBy | varchar(255) |   |   |   | Last modifier | |
EXU_SpInternalLogin | varchar(350) |   |   |   | Stores user login in SharePoint | |
EXU_Email | varchar(255) |   |   |   | Stores external user email | |
EXU_DisplayName | varchar(255) |   |   |   | Stores external user display name | |
EXU_Domain | varchar(255) |   |   |   | Stores external user domain | |
EXU_IsSynchronized | bit |   |   |   | ((0)) | Stores value indicating if user was synchronized |
Name | Foreign Table | Primary Key |
---|
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_ExternalUsersProfiles | Yes | Yes | CLUSTERED | 100 |
Description: | Table connects process templates with predefined form fields. Defines which predefined form fields are available in which processes. |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
FT_ID | int | Yes |   |   | Identifier | |
FT_DefinitionTemplateID | int |   |   |   | Related DicDefinitionTemplates identifier | |
FT_FDEFID | int |   |   |   | Related WFFieldDefinitions identifier | |
FT_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
FT_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
FT_RowVersion | timestamp |   |   | Yes | Timestamp |
Name | Foreign Table | Primary Key |
---|---|---|
FK_FieldTemplates_DicDefinitionTemplates | FieldTemplates | PK_DicDefinitionTemplates |
FK_FieldTemplates_WFFieldDefinitions | FieldTemplates | PK_WFFieldDefinitions |
FK_DicConfigurationTemplates_FieldTemplates | DicConfigurationTemplates | PK_FieldTemplates |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_FieldTemplates | Yes | Yes | CLUSTERED | 100 |
UQ_FT_DefinitionTemplateID_FT_FDEFID | Yes |   | NONCLUSTERED | 100 |
Description: | Table connects paths with forms. Defines which paths are available in particular forms. |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
FPA_ID | int | Yes |   |   | Association identifier | |
FPA_FRMID | int |   |   |   | Form identifier | |
FPA_PATHID | int |   |   |   | Path identifier | |
FPA_IsVisible | bit |   |   |   | ((0)) | Information if a path is visible on the form |
FPA_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Row insert date |
FPA_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Row update date |
FPA_RowVersion | timestamp |   |   | Yes | Row version | |
FPA_Guid | varchar(36) |   |   |   | (newid()) | Global unique ID |
Name | Foreign Table | Primary Key |
---|---|---|
FK_FormPathAssocs_WFStepForms | FormPathAssocs | PK_WFStepForms |
FK_FormPathAssocs_WFAvaiblePaths | FormPathAssocs | PK_WFAvaiblePaths |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_FormPathAssocs | Yes | Yes | CLUSTERED | 100 |
UQ_FormPathAssocs | Yes |   | NONCLUSTERED | 100 |
UQ_FormPathAssocs_Guid | Yes |   | NONCLUSTERED | 100 |
IX_FormPathAssocs_FPA_PATHID |   |   | NONCLUSTERED | 100 |
Description: | Global system parameters for any process in database. Stores data as ID, value (text). |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
PRM_ID | int | Yes |   |   | Identifier | |
PRM_Name | varchar(50) |   |   |   | Global parameter name | |
PRM_Value | varchar(MAX) |   | Yes |   | Global parameter value | |
PRM_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
PRM_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
PRM_RowVersion | timestamp |   |   | Yes | Timestamp |
Name | Foreign Table | Primary Key |
---|
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_GlobalParameters | Yes | Yes | CLUSTERED | 100 |
UQ_GlobalParameters_Name | Yes |   | NONCLUSTERED | 100 |
Description: | All operations performed on BPS elements by External users |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
HOP_ID | int | Yes |   |   | Identifier | |
HOP_UserBpsId | varchar(255) |   |   |   | User BpsId | |
HOP_UserDisplayName | varchar(255) |   |   |   | User DisplayName | |
HOP_Month | date(10) |   |   |   | Month | |
HOP_OperationKind | int |   |   |   | Kind of operation | |
HOP_CDID | int |   |   |   | FK to ContentDatabases | |
HOP_WFDID | int |   |   |   | Element ID | |
HOP_ElementSignature | varchar(100) |   |   |   | Element Signature | |
HOP_IsPaid | bit |   |   |   | Identifier | |
HOP_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
HOP_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
HOP_RowVersion | timestamp |   |   | Yes | Timestamp |
Name | Foreign Table | Primary Key |
---|---|---|
FK_HistoricalOperations_ContentDatabases | HistoricalOperations | PK_ContentDatabases |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_HistoricalOperations | Yes | Yes | CLUSTERED | 0 |
IX_HistoricalOperations_Month |   |   | NONCLUSTERED | 0 |
IX_HistoricalOperations_UserDisplayName |   |   | NONCLUSTERED | 0 |
IX_HistoricalOperations_UserBpsId |   |   | NONCLUSTERED | 0 |
Description: | Stores complete changes informations for import-export, clone and save operations |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
IMPHD_ID | int | Yes |   |   | Identifier | |
IMPHD_IMPHID | int |   |   |   | Correlated operation information | |
IMPHD_TableName | varchar(250) |   |   |   | Modified table name | |
IMPHD_Data | varchar(MAX) |   | Yes |   | Data of all modifications | |
IMPHD_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Insertion time |
IMPHD_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Update time |
IMPHD_RowVersion | timestamp |   |   | Yes | Row version | |
IMPHD_CreatedBy | varchar(255) |   |   |   | Created by | |
IMPHD_UpdatedBy | varchar(255) |   |   |   | Modified by |
Name | Foreign Table | Primary Key |
---|---|---|
FK_HistoryImportDatas_HistoryImports_ID | HistoryImportDatas | PK_HistoryImports |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_HistoryImportDatas | Yes | Yes | CLUSTERED | 100 |
Description: | Stores active front-ends for database |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
IMPHE_ID | int | Yes |   |   | Identifier | |
IMPHE_IMPHID | int |   |   |   | Correlated operation information | |
IMPHE_TableName | varchar(250) |   |   |   | Modified table name | |
IMPHE_GUID | varchar(36) |   |   |   | Modified entity GUID | |
IMPHE_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Insertion time |
IMPHE_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Update time |
IMPHE_RowVersion | timestamp |   |   | Yes | Row version | |
IMPHE_CreatedBy | varchar(255) |   |   |   | Created by | |
IMPHE_UpdatedBy | varchar(255) |   |   |   | Modified by |
Name | Foreign Table | Primary Key |
---|---|---|
FK_HistoryImportEntities_HistoryImports_ID | HistoryImportEntities | PK_HistoryImports |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_HistoryImportEntities | Yes | Yes | CLUSTERED | 100 |
Description: | Table contains history of all exported processes |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
IMPH_ID | int | Yes |   |   | Identifier | |
IMPH_Name | varchar(140) |   | Yes |   | Import name | |
IMPH_Description | varchar(MAX) |   | Yes |   | Import description | |
IMPH_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
IMPH_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
IMPH_RowVersion | timestamp |   |   | Yes | Timestamp | |
IMPH_CreatedBy | varchar(255) |   |   |   | Author | |
IMPH_UpdatedBy | varchar(255) |   |   |   | Last modifier | |
IMPH_Log | varchar(MAX) |   | Yes |   | Import Log | |
IMPH_Operation | int |   | Yes |   | Type of import operation | |
IMPH_Duration | int |   | Yes |   | Duration of import operation | |
IMPH_AppVersion | varchar(50) |   | Yes |   | Application version in which import operation was performed | |
IMPH_DBVersion | varchar(50) |   | Yes |   | Databsse version in which import operation was performed | |
IMPH_SessionId | varchar(36) |   | Yes |   | Import sessionId | |
IMPH_Status | int |   |   |   | ((1)) | Status |
Name | Foreign Table | Primary Key |
---|---|---|
FK_HistoryImportDatas_HistoryImports_ID | HistoryImportDatas | PK_HistoryImports |
FK_HistoryImportEntities_HistoryImports_ID | HistoryImportEntities | PK_HistoryImports |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_HistoryImports | Yes | Yes | CLUSTERED | 100 |
IX_HistoryImports_SessionId |   |   | NONCLUSTERED | 100 |
Description: | Table contains history of shared workflow instances |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
HSI_ID | int | Yes |   |   | Identifier | |
HSI_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
HSI_RowVersion | timestamp |   |   | Yes | Timestamp | |
HSI_SharedBy | varchar(255) |   |   |   | User that shared workflow instance | |
HSI_Email | varchar(255) |   |   |   | Email of user the worflow instance was shared with | |
HSI_WFDID | int |   |   |   | Shared workflow instance Id | |
HSI_ACTID | int |   | Yes |   | Id of action that shared workflow instance | |
HSI_ShareAuthkey | varchar(22) |   |   |   | Share Id used for authentication | |
HSI_StartShareMode | int |   |   |   | Share mode set on creation | |
HSI_ShareMode | int |   |   |   | Current share mode | |
HSI_Login | varchar(255) |   |   |   | Virtual user login | |
HSI_DisplayName | varchar(255) |   |   |   | Virtual user display name | |
HSI_EmailSent | bit |   |   |   | Link sharing flag - shared by email otherwise manually | |
HSI_ClosedOn | datetime |   | Yes |   | Share close date and time if closed manually | |
HSI_ClosedBy | varchar(255) |   | Yes |   | User that closed sharing if closed manually | |
HSI_ExpireOn | datetime |   | Yes |   | Share expiration date and time | |
HSI_DEFID | int |   | Yes |   | Shared workflow definition Id | |
HSI_FailedAttemptsExceededDateTime | datetime |   | Yes |   | Date and time when shared instance was locked due to too many failed authorization attempts |
Name | Foreign Table | Primary Key |
---|
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_HistorySharedInstances | Yes | Yes | CLUSTERED | 0 |
IX_HistorySharedInstances_WFDID |   |   | NONCLUSTERED | 0 |
IX_HistorySharedInstances_HSI_DEFID |   |   | NONCLUSTERED | 0 |
IX_HistorySharedInstances_ShareAuthkey |   |   | NONCLUSTERED | 0 |
Description: | Contains list of tasks along with information about their type and to which elements they belong. Efelementstasks also contains historical tasks, replacements and tasks delegated manually. |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
WFT_ID | int | Yes |   |   | ||
WFT_WFDID | int |   |   |   | ||
WFT_STPID | int |   |   |   | ||
WFT_AssignTypeID | int |   |   |   | ((1)) | |
WFT_Name | varchar(50) |   | Yes |   | ||
WFT_Description | varchar(MAX) |   | Yes |   | ||
WFT_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Row insert date |
WFT_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Row update date |
WFT_RowVersion | timestamp |   |   | Yes | Row version | |
WFT_IsDeleted | bit |   |   |   | ((0)) | A flag indicating whether the row is deleted |
WFT_User | varchar(255) |   | Yes |   | ||
WFT_UserName | varchar(255) |   | Yes |   | ||
WFT_ElementWasDisplayed | bit |   |   |   | ((0)) | |
WFT_IsFinished | bit |   |   |   | ((0)) | |
WFT_ActualCreatedTasks | int |   | Yes |   | ||
WFT_WFHID | int |   | Yes |   | ||
WFT_Version | int |   |   |   | ((0)) | |
WFT_OrgID | int |   | Yes |   | Task identifier for which the current task is a substitution for | |
WFT_ManualCover | bit |   |   |   | ((0)) | Determines whether the substitution is added manually or automatically (1 = manually, 0 = automatically) |
WFT_DurationToFinish | int |   |   |   | ((0)) | |
WFT_FinishedByUser | bit |   |   |   | ((0)) | |
WFT_FinishPath | varchar(100) |   | Yes |   | ||
WFT_FinishDate | datetime |   | Yes |   | ||
WFT_FormID | int |   | Yes |   | Task form identifier | |
WFT_AllowCover | bit |   |   |   | ((1)) | |
WFT_FinishedByAdmin | bit |   | Yes |   | ||
WFT_WFHIDTaskFinished | int |   | Yes |   | ||
WFT_AssignKind | int |   | Yes |   | ||
WFT_Flag | int |   |   |   | ((1)) | |
WFT_Overdue | bit |   |   |   | ((0)) | Specifies whether task is expired |
WFT_OverdueDate | datetime |   | Yes |   | Specifies when task expired | |
WFT_DeskDescription | varchar(MAX) |   | Yes |   | Description of the business rule used to determine to which users tasks will be assigned. Used only in Designer Desk projects. | |
WFT_ExecutorLogin | varchar(255) |   | Yes |   | Login of the group user who performed the task | |
WFT_ExecutorName | varchar(255) |   | Yes |   | Display name of the group user who performed the task | |
WFT_COMID | int |   | Yes |   | Company identifier | |
WFT_ToGroup | bit |   | Yes |   | Determines if task is assigned to the group | |
WFT_CreatedBy | varchar(255) |   | Yes |   | Author | |
WFT_UpdatedBy | varchar(255) |   | Yes |   | Last modifier |
Name | Foreign Table | Primary Key |
---|---|---|
FK_HistoryTasks_DicAssignTypes | HistoryTasks | PK_DicAssignTypes |
FK_HistoryTasks_DicAssignTypes | HistoryTasks | PK_DicAssignTypes |
FK_HistoryTasks_DicTaskFlags | HistoryTasks | PK_DicTaskFlags |
FK_HistoryTasks_WFStepForms | HistoryTasks | PK_WFStepForms |
FK_HistoryTasks_HistoryTasks_OrgID | HistoryTasks | PK_HistoryTasks |
FK_HistoryTasks_WFSteps | HistoryTasks | PK_WFSteps |
FK_HistoryTasks_WFSteps | HistoryTasks | PK_WFSteps |
FK_HistoryTasks_WFElements | HistoryTasks | PK_WFData |
FK_HistoryTasks_WFElements | HistoryTasks | PK_WFData |
FK_HistoryTasks_WFHistoryElements | HistoryTasks | PK_WFHistory |
FK_HistoryTasks_WFHistoryElements_TaskFinished | HistoryTasks | PK_WFHistory |
FK_HistoryTasks_HistoryTasks_OrgID | HistoryTasks | PK_HistoryTasks |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_HistoryTasks | Yes | Yes | CLUSTERED | 100 |
IX_HistoryTasks_WFDID |   |   | NONCLUSTERED | 100 |
IX_HistoryTasks_WFHID |   |   | NONCLUSTERED | 100 |
IX_HistoryTasks_OrgID |   |   | NONCLUSTERED | 100 |
IX_HistoryTasks_WFHIDTaskFinished |   |   | NONCLUSTERED | 100 |
IX_HistoryTasks_User |   |   | NONCLUSTERED | 100 |
IX_HistoryTasks_FormID |   |   | NONCLUSTERED | 100 |
IX_HistoryTasks_WFDID_AssignTypeID_IsFinished_WFHID_User_OrgID |   |   | NONCLUSTERED | 100 |
IX_HistoryTasks_IsDeleted_WFDID_STPID_WFHID |   |   | NONCLUSTERED | 100 |
IX_HistoryTasks_STPID |   |   | NONCLUSTERED | 100 |
Description: | Table contains Hotfolders definitions. |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
HF_ID | int | Yes |   |   | Identifier | |
HF_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
HF_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
HF_RowVersion | timestamp |   |   | Yes | Timestamp | |
HF_CreatedBy | varchar(255) |   |   |   | Author | |
HF_Name | varchar(50) |   |   |   | HotFolder name | |
HF_IsActive | bit |   |   |   | Is HotFolder active | |
HF_Priority | int |   |   |   | HotFolder priority | |
HF_SourceDirectory | varchar(255) |   |   |   | Source directory | |
HF_ArchiveDirectory | varchar(255) |   |   |   | Archive directory | |
HF_ErrorDirectory | varchar(255) |   |   |   | Error directory | |
HF_FileTypesFilter | varchar(1000) |   |   |   | Mode defines which files with given extension will be processed: 0 - All, 1 - OnlyPdf, 2 - CustomRegex | |
HF_ResultFileNameTemplate | varchar(100) |   |   |   | Result file name template | |
HF_WorkflowMode | int |   |   |   | Workflow Mode: 0 - Start new workflows and convert to PDF, 1 - Add attachment based on barcode, 2 - Start new workflows without convertion to PDF | |
HF_FindBarcodes | bit |   |   |   | Find barcodes enabled | |
HF_LookingForBarcodeMode | int |   |   |   | ((0)) | Looking for barcode mode: 0 - Standard barcode, 1 - Custom barcode |
HF_CustomBarcodeRegex | varchar(1000) |   | Yes |   | Custom barcode regex | |
HF_BarcodeFirstIteration | int |   | Yes |   | Barcode first iteration | |
HF_BarcodeSecondIteration | int |   | Yes |   | Barcode second iteration | |
HF_BarcodeThirdIteration | int |   | Yes |   | Barcode third iteration | |
HF_BarcodeSearchDPIMode | int |   |   |   | ((0)) | Barcode search DPI mode |
HF_SplitResultFileDataSource | int |   |   |   | ((0)) | Split result file data source |
HF_StartingProcessID | int |   | Yes |   | Process identifier which refers to a row in WFDefinitions table | |
HF_StartingDocTypeID | int |   | Yes |   | DocType identifier which refers to a row in WFDocTypes table | |
HF_StartingWorkflowID | int |   | Yes |   | WorkFlow identifier which refers to a row in WorkFlows table | |
HF_StartingPathID | int |   | Yes |   | Initial path identifier of the newly created workflow instance | |
HF_StartingCompanyID | int |   | Yes |   | Initial company identifier of the newly created workflow instance | |
HF_BarcodeMissingMode | int |   |   |   | ((0)) | Barcode missing mode: 0 - Start new workflow, 1 - Merge with previous file, 2 - Error |
HF_ElementMissingMode | int |   |   |   | ((0)) | Element missing mode: 0 - Start new workflow, 1 - Error |
HF_SplitResultFileByBarcode | bit |   |   |   | ((0)) | Split result file by barcode |
HF_Description | varchar(1000) |   | Yes |   | HotFolder description | |
HF_UpdatedBy | varchar(255) |   |   |   | Last modifier | |
HF_Guid | varchar(36) |   |   |   | (newid()) | Entry unique identifier for import export mechanism |
HF_AssignedServer | varchar(255) |   | Yes |   | Assigned server | |
HF_BarcodeMissingJoinToExistingErrorMode | int |   |   |   | ((0)) | Action to be performed after no previous workflow element was found: 0 - Start new workflow, 1 - Error |
HF_SplitStartWorkflowMode | int |   | Yes |   | ((0)) | Mode for starting workflow documents after split |
HF_BarcodesOrder | varchar(MAX) |   | Yes |   | Barcodes order | |
HF_FilesProcessingLimitInSingleRun | int |   |   |   | ((50)) | Maximum number of processing files in single run |
HF_IterationsToWaitForLastFile | int |   |   |   | ((3)) | Number of iteration to wait for last file |
HF_MaxAttemptsNumber | int |   |   |   | ((5)) | Number of max attempts |
Name | Foreign Table | Primary Key |
---|---|---|
FK_HotFolders_Companies | HotFolders | PK_Companies |
FK_HotFolders_WFDocTypes | HotFolders | PK_WFDocTypes |
FK_HotFolders_WFAvaiblePaths | HotFolders | PK_WFAvaiblePaths |
FK_HotFolders_WFDefinitions | HotFolders | PK_WFDefinitions |
FK_HotFolders_WorkFlows | HotFolders | PK_WorkFlows |
FK_HotProcessingFieldsSettings_HotFolders | HotProcessingFieldsSettings | PK_HotFolders |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_HotFolders | Yes | Yes | CLUSTERED | 100 |
UQ_HotFolders_Guid | Yes |   | NONCLUSTERED | 100 |
Description: | Table contains HotMailBoxs definitions. |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
HM_ID | int | Yes |   |   | Identifier | |
HM_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
HM_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
HM_RowVersion | timestamp |   |   | Yes | Timestamp | |
HM_CreatedBy | varchar(255) |   |   |   | Author | |
HM_UpdatedBy | varchar(255) |   |   |   | Last modifier | |
HM_Name | varchar(255) |   |   |   | HotMailBox name | |
HM_Description | varchar(1000) |   | Yes |   | HotMailBox description | |
HM_IsActive | bit |   |   |   | Is HotMailBox active | |
HM_Priority | int |   |   |   | ((5)) | HotMailBox priority |
HM_Type | int |   |   |   | Type | |
HM_UseCustomExchangeParameters | bit |   |   |   | Use custom exchange parameters | |
HM_CustomExchangeServerVersion | varchar(50) |   | Yes |   | Custom exchange server version | |
HM_CustomExchangeServerAddress | varchar(50) |   | Yes |   | Custom exchange server adress | |
HM_ExchangeUserLogin | varchar(200) |   | Yes |   | Exchange user login | |
HM_ExchangeUserPassword | nvarchar(200) |   | Yes |   | Exchange user password | |
HM_SourceIsPublicFolder | bit |   |   |   | Mailbox source folder is public folder | |
HM_ArchiveDirectory | varchar(1000) |   |   |   | Archive directory | |
HM_ErrorDirectory | varchar(1000) |   |   |   | Error directory | |
HM_EmailSenderFilteringDataSourceID | int |   | Yes |   | Email sender filtering data source ID | |
HM_EmailSenderFilteringConfiguration | varchar(MAX) |   | Yes |   | Email sender filtering configuration | |
HM_WorkflowMode | int |   |   |   | Workflow mode: 0 - Start one workflow per email, 1 - Start one workflow per attachment, 2 - Join by barcodes in attachments, 3 - Join by ID found in email | |
HM_AttachmentsFilterRegex | varchar(MAX) |   | Yes |   | Attachment filter regex | |
HM_ResultFileNameTemplate | varchar(100) |   | Yes |   | Result workflow instance attachment file name template | |
HM_MoreThanOneToProcessMode | int |   |   |   | Process mode for more than one attachment found: 0 - To one workflow, 1 - Error | |
HM_LookingForIDMode | int |   |   |   | Looking for ID mode: 0 - In subject, 1 - In body | |
HM_LookingForIDRegex | varchar(1000) |   | Yes |   | Looking for ID regex | |
HM_ProcessEmailsWithoutAttachments | bit |   |   |   | Process emails without attachments | |
HM_VerifyAttachmentExistence | bit |   |   |   | Verify attachment existence | |
HM_UploadOriginalFile | bit |   |   |   | Upload original file | |
HM_UploadAdditionalAttachments | bit |   |   |   | Upload additional attachments | |
HM_AdditionalAttachmentsRegex | varchar(1000) |   | Yes |   | Additional attachment regex | |
HM_LookingForBarcodeMode | int |   |   |   | Looking for barcode mode: 0 - Standard BPS barcode, 1 - Custom barcode | |
HM_CustomBarcodeRegex | varchar(1000) |   | Yes |   | Custom barcode regex | |
HM_BarcodeFirstIteration | int |   | Yes |   | Barcode first iteration | |
HM_BarcodeSecondIteration | int |   | Yes |   | Barcode second iteration | |
HM_BarcodeThirdIteration | int |   | Yes |   | Barcode third iteration | |
HM_SplitResultFileByBarcode | bit |   |   |   | Split result file by barcode | |
HM_SplitResultFileDataSource | int |   |   |   | ((0)) | Split result file data source |
HM_StartingProcessID | int |   | Yes |   | Process identifier which refers to a row in WFDefinitions table | |
HM_StartingDocTypeID | int |   | Yes |   | DocType identifier which refers to a row in WFDocTypes table | |
HM_StartingWorkflowID | int |   | Yes |   | WorkFlow identifier which refers to a row in WorkFlows table | |
HM_StartingPathID | int |   | Yes |   | AvaiblePath identifier which refers to a row in WFAvaiblePaths table | |
HM_StartingCompanyID | int |   | Yes |   | Company identifier which refers to a row in Companies table | |
HM_SourceDirectory | varchar(1000) |   |   |   | Source directory | |
HM_BarcodeSearchDPIMode | int |   |   |   | Barcode search DPI mode | |
HM_OCRUploadMode | int |   |   |   | ((0)) | OCR upload mode: 0 - Separately, 1 - When all processed (obsolete) |
HM_EmailsProcessingLimitPerDay | int |   |   |   | ((0)) | Emails processing limit per day |
HM_EmailsProcessingLimitInSingleRun | int |   |   |   | ((10)) | Number of emails to precess in a single service iteration. 0 - means no limit |
HM_Guid | varchar(36) |   |   |   | (newid()) | Entry unique identifier for import export mechanism |
HM_IDNotFoundMode | int |   |   |   | ((0)) | Mode defines what action should be executed when based on the barcode from the attachment, no workflow instance has been found. ID not found mode: 0 - Error, 1 - Start new workflow. |
HM_BarcodeNotFoundMode | int |   |   |   | ((0)) | Barcode not found in attachment mode: 0 - Stop email processing, 1 - Start new workflow, 2 - Omit attachment |
HM_AssignedServer | varchar(255) |   | Yes |   | Assigned server | |
HM_UploadEmailContentMode | int |   |   |   | ((0)) | Determines mode in which mail content should be uploaded as a .msg workflow instance attachment from HotMailBox: 0 - Never, 1 - Always, 2 - If no mail attachment was found |
HM_DaysLimitToOutdate | int |   |   |   | ((30)) | Column contains number of days in past after which emails with older date will be ignored |
HM_SplitStartWorkflowMode | int |   | Yes |   | ((0)) | Mode for starting workflow documents after split |
HM_BarcodesOrder | varchar(MAX) |   | Yes |   | Barcodes order | |
HM_ArchiveIsPublicFolder | bit |   |   |   | ((0)) | Archive directory is public folder |
HM_ErrorIsPublicFolder | bit |   |   |   | ((0)) | Error directory is public folder |
HM_ApplicationID | varchar(255) |   | Yes |   | ID of MS Graph Application used by this hotmailbox | |
HM_MaxAttemptsNumber | int |   |   |   | ((5)) | Number of max attempts |
Name | Foreign Table | Primary Key |
---|---|---|
FK_HotMailBoxs_Companies | HotMailBoxs | PK_Companies |
FK_HotMailBoxs_WFDocTypes | HotMailBoxs | PK_WFDocTypes |
FK_HotMailBoxs_WFAvaiblePaths | HotMailBoxs | PK_WFAvaiblePaths |
FK_HotMailBoxs_WFDefinitions | HotMailBoxs | PK_WFDefinitions |
FK_HotMailBoxs_WorkFlows | HotMailBoxs | PK_WorkFlows |
FK_AdminHotMailboxLogs_HotMailBoxes | AdminHotMailboxLogs | PK_HotMailBoxs |
FK_HotProcessingFieldsSettings_HotMailBoxs | HotProcessingFieldsSettings | PK_HotMailBoxs |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_HotMailBoxs | Yes | Yes | CLUSTERED | 100 |
UQ_HotMailBoxs_Guid | Yes |   | NONCLUSTERED | 100 |
Description: | Table contains data about values inserted to form fields on workflow instance starting or on adding attachment to elements inside hotfolders and HotMailBoxs. |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
HPFS_ID | int | Yes |   |   | Identifier | |
HPFS_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
HPFS_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
HPFS_RowVersion | timestamp |   |   | Yes | Timestamp | |
HPFS_CreatedBy | varchar(255) |   |   |   | Author | |
HPFS_FDEFName | varchar(50) |   |   |   | Database column name from WFElements of a Form field to be set | |
HPFS_Value | varchar(MAX) |   |   |   | HotProcessingField value | |
HPFS_HMID | int |   | Yes |   | HotMailBox identifier which refers to a row in HotMailBoxs table | |
HPFS_HFID | int |   | Yes |   | HotFolder identifier which refers to a row in HotFolders table | |
HPFS_SettingMode | int |   |   |   | It is possible to choose that workflow instance selected form field will always be filled or only when it is empty: 0 - Set when empty, 1 - Always | |
HPFS_UpdatedBy | varchar(255) |   |   |   | Last modifier |
Name | Foreign Table | Primary Key |
---|---|---|
FK_HotProcessingFieldsSettings_HotFolders | HotProcessingFieldsSettings | PK_HotFolders |
FK_HotProcessingFieldsSettings_HotMailBoxs | HotProcessingFieldsSettings | PK_HotMailBoxs |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_HotProcessingFieldsSettings | Yes | Yes | CLUSTERED | 100 |
Description: | Access Tokens |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
IAT_ID | int | Yes |   |   | Identifier | |
IAT_UserId | varchar(255) |   |   |   | User identifier | |
IAT_Value | varchar(MAX) |   |   |   | Value of the token | |
IAT_Expires | datetime |   |   |   | Expiration time in UTC | |
IAT_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
IAT_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Update date |
IAT_RowVersion | timestamp |   |   | Yes | Timestamp |
Name | Foreign Table | Primary Key |
---|
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_IdentityAccessTokens | Yes | Yes | CLUSTERED | 0 |
IX_IdentityAccessTokens_UserId |   |   | NONCLUSTERED | 100 |
Description: | Stores identity user external providers logins |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
IL_ID | int | Yes |   |   | Identifier | |
IL_LoginProvider | varchar(128) |   |   |   | External provider identifier | |
IL_ProviderKey | varchar(128) |   |   |   | External provider user identifier | |
IL_IUID | int |   |   |   | Identity user identifier | |
IL_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
IL_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
IL_RowVersion | timestamp |   |   | Yes | Timestamp | |
IL_CreatedBy | varchar(255) |   |   |   | Author | |
IL_UpdatedBy | varchar(255) |   |   |   | Last modifier |
Name | Foreign Table | Primary Key |
---|---|---|
FK_IdentityLogins_IdentityUsers_IUID | IdentityLogins | PK_IdentityUsers |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_IdentityLogins | Yes | Yes | CLUSTERED | 100 |
Description: | Stores refresh tokens for portal users |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
IRT_ID | int | Yes |   |   | Identifier | |
IRT_TokenIdentifier | varchar(255) |   |   |   | Refresh token unique identifier | |
IRT_UserName | varchar(255) |   |   |   | User for which token is issued | |
IRT_ExpirationUnixTimeMiliseconds | bigint |   |   |   | Expiration time, in miliseconds in unix time | |
IRT_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
IRT_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
IRT_RowVersion | timestamp |   |   | Yes | Timestamp | |
IRT_AuthenticationMethod | varchar(50) |   | Yes |   | Column to store refresh token AuthenticationMethod claim. |
Name | Foreign Table | Primary Key |
---|
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_IdentityRefreshTokens | Yes | Yes | CLUSTERED | 100 |
IX_IdentityRefreshTokens_TokenIdentifier |   |   | NONCLUSTERED | 0 |
Description: | Stores identity roles |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
IR_ID | int | Yes |   |   | Identifier | |
IR_Name | varchar(256) |   |   |   | Identity role name | |
IR_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
IR_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
IR_RowVersion | timestamp |   |   | Yes | Timestamp | |
IR_CreatedBy | varchar(255) |   |   |   | Author | |
IR_UpdatedBy | varchar(255) |   |   |   | Last modifier |
Name | Foreign Table | Primary Key |
---|---|---|
FK_IdentityUserRoles_IdentityRoles_IRID | IdentityUserRoles | PK_IdentityRoles |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_IdentityRoles | Yes | Yes | CLUSTERED | 100 |
Description: | TicketStore session tickets |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
IST_ID | int | Yes |   |   | Identifier | |
IST_Guid | varchar(36) |   |   |   | Guid | |
IST_UserId | varchar(255) |   |   |   | User identifier | |
IST_Value | varbinary(MAX) |   |   |   | Value of the ticket | |
IST_LastActivity | datetime |   | Yes |   | Last activity time in UTC | |
IST_Expires | datetime |   | Yes |   | Expiration time in UTC | |
IST_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
IST_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
IST_RowVersion | timestamp |   |   | Yes | Timestamp |
Name | Foreign Table | Primary Key |
---|
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_IdentitySessionTickets | Yes | Yes | CLUSTERED | 0 |
UQ_IdentitySessionTickets_Guid | Yes |   | NONCLUSTERED | 0 |
IX_IdentitySessionTickets_UserId |   |   | NONCLUSTERED | 0 |
Description: | Stores relation between users and roles |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
IUR_ID | int | Yes |   |   | Identifier | |
IUR_IUID | int |   |   |   | Identity user id | |
IUR_IRID | int |   |   |   | Identity role id | |
IUR_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
IUR_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
IUR_RowVersion | timestamp |   |   | Yes | Timestamp | |
IUR_CreatedBy | varchar(255) |   |   |   | Author | |
IUR_UpdatedBy | varchar(255) |   |   |   | Last modifier |
Name | Foreign Table | Primary Key |
---|---|---|
FK_IdentityUserRoles_IdentityRoles_IRID | IdentityUserRoles | PK_IdentityRoles |
FK_IdentityUserRoles_IdentityUsers_IUID | IdentityUserRoles | PK_IdentityUsers |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_IdentityUserRoles | Yes | Yes | CLUSTERED | 100 |
Description: | Stores identity users entities |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
IU_ID | int | Yes |   |   | Identifier | |
IU_Email | varchar(256) |   | Yes |   | Users email | |
IU_EmailConfirmed | bit |   |   |   | Is email confirmed | |
IU_PasswordHash | varchar(MAX) |   | Yes |   | Password hash | |
IU_SecurityStamp | varchar(MAX) |   | Yes |   | Security stamp | |
IU_PhoneNumber | varchar(MAX) |   | Yes |   | Phone number | |
IU_PhoneNumberConfirmed | bit |   |   |   | Is phone number confirmed | |
IU_TwoFactorEnabled | bit |   |   |   | Is two factor auth enabled | |
IU_LockoutEndDateUtc | datetime |   | Yes |   | Account lockout end date | |
IU_LockoutEnabled | bit |   |   |   | Is lockout enabled | |
IU_AccessFailedCount | int |   |   |   | Access failed count | |
IU_UserName | varchar(256) |   |   |   | User name | |
IU_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
IU_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
IU_RowVersion | timestamp |   |   | Yes | Timestamp | |
IU_CreatedBy | varchar(255) |   |   |   | Author | |
IU_UpdatedBy | varchar(255) |   |   |   | Last modifier |
Name | Foreign Table | Primary Key |
---|---|---|
FK_Claims_IdentityUsers_IUID | Claims | PK_IdentityUsers |
FK_IdentityLogins_IdentityUsers_IUID | IdentityLogins | PK_IdentityUsers |
FK_IdentityUserRoles_IdentityUsers_IUID | IdentityUserRoles | PK_IdentityUsers |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_IdentityUsers | Yes | Yes | CLUSTERED | 100 |
UQ_IdentityUsers_UserName | Yes |   | NONCLUSTERED | 0 |
Description: | Table contains branch number and build version |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
IECB_ID | int | Yes |   |   | Identifier | |
IECB_BranchNumber | varchar(50) |   |   |   | Column with branch number | |
IECB_BuildVersion | int |   |   |   | Column with build version | |
IECB_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
IECB_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
IECB_RowVersion | timestamp |   |   | Yes | Timestamp | |
IECB_CreatedBy | varchar(255) |   |   |   | Author | |
IECB_UpdatedBy | varchar(255) |   |   |   | Last modifier |
Name | Foreign Table | Primary Key |
---|
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_ImportExportCompatibilities | Yes | Yes | CLUSTERED | 100 |
Description: | Table contains workflow usage data such as active task count per each day. Content is updated by BPS Service based on KPI schedule configuration. |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
KPIELEM_ID | int | Yes |   |   | Identifier | |
KPIELEM_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
KPIELEM_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
KPIELEM_RowVersion | timestamp |   |   | Yes | Timestamp | |
KPIELEM_CreatedBy | varchar(255) |   |   |   | Author | |
KPIELEM_UpdatedBy | varchar(255) |   |   |   | Last modifier | |
KPIELEM_Date | datetime |   |   |   | Day of analysis | |
KPIELEM_DEFID | int |   |   |   | Relation to process | |
KPIELEM_WFID | int |   | Yes |   | Relation to workflow | |
KPIELEM_STPID | int |   | Yes |   | Relation to step | |
KPIELEM_AllItems | int |   |   |   | All element count | |
KPIELEM_AllActiveElems | int |   |   |   | Active element count | |
KPIELEM_AllActiveTasks | int |   |   |   | Active task count | |
KPIELEM_AllOverdueTasks | int |   |   |   | Active task with exceeded execution time count | |
KPIELEM_CreatedNewElemsInCurrentDay | int |   |   |   | Element created in day of analysis count | |
KPIELEM_FinishedElemsInCurrentDay | int |   |   |   | Element finished in day of analysis count | |
KPIELEM_FinishedTasksInCurrentDay | int |   |   |   | Task finished in day of analysis count |
Name | Foreign Table | Primary Key |
---|---|---|
FK_KPIElements_WFDefinitions | KPIElements | PK_WFDefinitions |
FK_KPIElements_WFSteps | KPIElements | PK_WFSteps |
FK_KPIElements_WorkFlows | KPIElements | PK_WorkFlows |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_KPIElements | Yes | Yes | CLUSTERED | 100 |
IX_KPIElements_DEFID |   |   | NONCLUSTERED | 0 |
IX_KPIElements_WFID |   |   | NONCLUSTERED | 0 |
IX_KPIElements_STPID |   |   | NONCLUSTERED | 0 |
Description: | Table contains queue usage data such as OCR AI, textlayer, emails and timeouts. Content is updated by BPS Service based on KPI schedule configuration. |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
KPIQUE_ID | int | Yes |   |   | Identifier | |
KPIQUE_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
KPIQUE_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
KPIQUE_RowVersion | timestamp |   |   | Yes | Timestamp | |
KPIQUE_CreatedBy | varchar(255) |   |   |   | Author | |
KPIQUE_UpdatedBy | varchar(255) |   |   |   | Last modifier | |
KPIQUE_Date | datetime |   |   |   | Day of analysis | |
KPIQUE_TextLayer | int |   |   |   | TextLayer queue item count | |
KPIQUE_OCRAI | int |   |   |   | OCR AI recognition queue item count | |
KPIQUE_OCRAILearn | int |   |   |   | OCR AI learn queue item count | |
KPIQUE_Mail | int |   |   |   | Email send queue item count | |
KPIQUE_Timeouts | int |   |   |   | Active timeout queue item count | |
KPIQUE_TimeoutsInSleep | int |   |   |   | TextLayer queue item count |
Name | Foreign Table | Primary Key |
---|
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_KPIQueue | Yes | Yes | CLUSTERED | 100 |
Description: | Table contains workflow usage data by users such as active task count per each day or top 100 users with task execution time exceeded. Content is updated by BPS Service based on KPI schedule configuration. |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
KPITOP_ID | int | Yes |   |   | Identifier | |
KPITOP_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
KPITOP_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
KPITOP_RowVersion | timestamp |   |   | Yes | Timestamp | |
KPITOP_CreatedBy | varchar(255) |   |   |   | Author | |
KPITOP_UpdatedBy | varchar(255) |   |   |   | Last modifier | |
KPITOP_TopTypeID | int |   |   |   | Type of aggregation. 1 - tasks with exceed execution time 2 - delegated tasks 3 - actions in BPS, i.e. path transitions | |
KPITOP_AggregationLevelID | int |   |   |   | Aggregation level type. 0 - global level, 1 - Process level, 2 - WorkFlow level, 3 - Step level | |
KPITOP_Date | datetime |   |   |   | Day of analysis | |
KPITOP_DEFID | int |   | Yes |   | Relation to process | |
KPITOP_WFID | int |   | Yes |   | Relation to workflow | |
KPITOP_STPID | int |   | Yes |   | Relation to step | |
KPITOP_Login | varchar(255) |   |   |   | User login | |
KPITOP_UserName | varchar(255) |   |   |   | User display name | |
KPITOP_Quantity | int |   |   |   | Quantity of elements, tasks, etc. |
Name | Foreign Table | Primary Key |
---|---|---|
FK_KPITops_WFDefinitions | KPITops | PK_WFDefinitions |
FK_KPITops_WFSteps | KPITops | PK_WFSteps |
FK_KPITops_WorkFlows | KPITops | PK_WorkFlows |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_KPITops | Yes | Yes | CLUSTERED | 100 |
IX_KPITops_DEFID |   |   | NONCLUSTERED | 0 |
IX_KPITops_WFID |   |   | NONCLUSTERED | 0 |
IX_KPITops_STPID |   |   | NONCLUSTERED | 0 |
Description: | Contains business rule limiting users who get notifications |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
MNBR_ID | int | Yes |   |   | Identifier | |
MNBR_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
MNBR_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
MNBR_RowVersion | timestamp |   |   | Yes | Timestamp | |
MNBR_Guid | varchar(36) |   |   |   | (newid()) | GUID |
MNBR_MNID | int |   |   |   | Related mass notification | |
MNBR_BRDID | int |   |   |   | Reference to business rule definition | |
MNBR_Type | int |   |   |   | ((0)) | Rule type |
MNBR_ConditionType | int |   |   |   | Condition to apply to rule result |
Name | Foreign Table | Primary Key |
---|---|---|
FK_MassNotificationBusinessRules_WFBusinessRuleDefinitions | MassNotificationBusinessRules | PK_WFBusinessRuleDefinitions |
FK_MassNotificationBusinessRules_DicConditionTypes | MassNotificationBusinessRules | PK_DicConditionTypes |
FK_MassNotificationBusinessRules_MassNotifications | MassNotificationBusinessRules | PK_MassNotifications |
FK_MassNotificationBusinessRules_DicMassNotificationRuleTypes | MassNotificationBusinessRules | PK_DicMassNotificationRuleTypes |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_MassNotificationBusinessRules | Yes | Yes | CLUSTERED | 100 |
UQ_MassNotificationBusinessRules_Guid | Yes |   | NONCLUSTERED | 100 |
Description: | List of source processes for mass notification |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
MND_ID | int | Yes |   |   | Identifier | |
MND_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
MND_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
MND_RowVersion | timestamp |   |   | Yes | Timestamp | |
MND_Guid | varchar(36) |   |   |   | (newid()) | GUID |
MND_MNID | int |   |   |   | ID of related MassNotification | |
MND_DEFID | int |   |   |   | ID of selected source process |
Name | Foreign Table | Primary Key |
---|---|---|
FK_MassNotificationDefinitions_WFDefinitions | MassNotificationDefinitions | PK_WFDefinitions |
FK_MassNotificationDefinitions_MassNotifications | MassNotificationDefinitions | PK_MassNotifications |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_MassNotificationDefinitions | Yes | Yes | CLUSTERED | 100 |
UQ_MassNotificationDefinitions_Guid | Yes |   | NONCLUSTERED | 100 |
Description: | Table contains schedules defined for mass notifications |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
MNS_ID | int | Yes |   |   | Identifier | |
MNS_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
MNS_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
MNS_RowVersion | timestamp |   |   | Yes | Timestamp | |
MNS_Guid | varchar(36) |   |   |   | (newid()) | GUID |
MNS_MNID | int |   |   |   | ID of related MassNotification | |
MNS_StartTime | datetime |   |   |   | Time when notification must be sent | |
MNS_DayOfWeek | int |   | Yes |   | Day of week when notification must be sent |
Name | Foreign Table | Primary Key |
---|---|---|
FK_MassNotificationSchedules_MassNotifications | MassNotificationSchedules | PK_MassNotifications |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_MassNotificationSchedules | Yes | Yes | CLUSTERED | 100 |
UQ_MassNotificationSchedules_Guid | Yes |   | NONCLUSTERED | 100 |
Description: | Contains configured mass notifications |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
MN_ID | int | Yes |   |   | Identifier | |
MN_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
MN_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
MN_RowVersion | timestamp |   |   | Yes | Timestamp | |
MN_Guid | varchar(36) |   |   |   | (newid()) | GUID |
MN_IsActive | bit |   |   |   | ((1)) | Flag determining whether notification are active or not |
MN_Name | varchar(50) |   |   |   | Notification template name | |
MN_Topic | varchar(1000) |   |   |   | Subject of notification e-mail | |
MN_ProcessesSelectionMode | int |   |   |   | ((0)) | Flag determining whether notification applies to all processes or selected processes |
MN_DeploymentMode | bit |   |   |   | ((0)) | Flag determining whether all e-mails should be redirected to MN_OverridenRecipient address |
MN_OverridenRecipient | varchar(255) |   | Yes |   | Redirect all e-mails to selected address | |
MN_NotificationLanguage | int |   | Yes |   | Notification Language | |
MN_NewUserNotificationLanguage | int |   | Yes |   | Notification language for new users | |
MN_OverridenMailTemplate | varchar(MAX) |   | Yes |   | Mail template in case if global tempalte was overriden | |
MN_UseCustomSendRules | bit |   |   |   | ((0)) | Flag determining whether or not sending rules were overriden |
MN_OnlyInWorkingDays | bit |   |   |   | ((0)) | Flag restricting sending to work days only |
MN_MailTemplateEditMode | int |   |   |   | ((0)) | Column which contains informations about chosen mail template edit mode |
MN_IsOverridenMailTemplate | bit |   |   |   | ((0)) | Column contains information if mail template is overriden |
MN_NewUserNotificationLanguageType | int |   |   |   | ((0)) | Type of new user language selection |
MN_NotificationLanguageType | int |   |   |   | ((0)) | Type of language selection |
Name | Foreign Table | Primary Key |
---|---|---|
FK_MassNotifications_TranslateLanguages_NewUserNotificationLanguage | MassNotifications | PK_TransalateLanguages |
FK_MassNotifications_TranslateLanguages_NotificationLanguage | MassNotifications | PK_TransalateLanguages |
FK_MassNotificationBusinessRules_MassNotifications | MassNotificationBusinessRules | PK_MassNotifications |
FK_MassNotificationDefinitions_MassNotifications | MassNotificationDefinitions | PK_MassNotifications |
FK_MassNotificationSchedules_MassNotifications | MassNotificationSchedules | PK_MassNotifications |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_MassNotifications | Yes | Yes | CLUSTERED | 100 |
UQ_MassNotifications_Guid | Yes |   | NONCLUSTERED | 100 |
Description: | Table contains mobile push notifications queue |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
PNQ_ID | int | Yes |   |   | Identifier | |
PNQ_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
PNQ_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
PNQ_RowVersion | timestamp |   |   | Yes | Timestamp | |
PNQ_Priority | int |   |   |   | Priority | |
PNQ_ThreadId | int |   | Yes |   | Processing Thread Id | |
PNQ_Status | int |   |   |   | ((0)) | Status: ProcessingPending = 0 queue element is waiting to be processed by service, Processing = 1 queue element is now being processed, ProcessingSuccess = 2 queue element has been processed sucessfully, ProcessingError = 100 error while processing - number of allowed attempts exceeded, ProcessingSuspended = 200 processing of the queue element was suspended |
PNQ_AttemptsNumber | int |   |   |   | ((0)) | Attempts number |
PNQ_LastAttemptTime | datetime |   | Yes |   | Last attempt time | |
PNQ_ProcessingFinishedTime | datetime |   | Yes |   | Processing finished time | |
PNQ_ServiceName | varchar(255) |   | Yes |   | Processing service name | |
PNQ_LastError | varchar(MAX) |   | Yes |   | Last error | |
PNQ_UserLogin | varchar(250) |   | Yes |   | Stores push receiver login | |
PNQ_NotificationType | int |   |   |   | Type of notification | |
PNQ_NotificationData | varchar(MAX) |   | Yes |   | JSON with data | |
PNQ_SectionGuid | varchar(36) |   | Yes |   | Action section GUID | |
PNQ_ActionExecutionGuid | varchar(36) |   | Yes |   | Action execution log GUID | |
PNQ_ACTID | int |   | Yes |   | Foreign key to WFActions | |
PNQ_WFDID | int |   | Yes |   | Workflow instance identifier. Foreign key to WFElements. |
Name | Foreign Table | Primary Key |
---|---|---|
FK_MobilePushNotificationsQueueItems_WFElements | MobilePushNotificationsQueueItems | PK_WFData |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_MobilePushNotificationsQueueItems | Yes | Yes | CLUSTERED | 0 |
IX_MobilePushNotificationsQueueItems_ACTID |   |   | NONCLUSTERED | 100 |
IX_MobilePushNotificationsQueueItems_WFDID |   |   | NONCLUSTERED | 100 |
Description: | Number of operations used by External users in a particular month |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
MOP_ID | int | Yes |   |   | Identifier | |
MOP_User | varchar(255) |   |   |   | User | |
MOP_Month | date(10) |   |   |   | Month | |
MOP_Operations | bigint |   |   |   | Number of used operations | |
MOP_Signature | binary(256) |   | Yes |   | Digital signature | |
MOP_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
MOP_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
MOP_RowVersion | timestamp |   |   | Yes | Timestamp |
Name | Foreign Table | Primary Key |
---|---|---|
FK_ElementOperations_MonthlyOperations | ElementOperations | PK_MonthlyOperations |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_MonthlyOperations | Yes | Yes | CLUSTERED | 0 |
UQ_MonthlyOperations_User_Month | Yes |   | NONCLUSTERED | 0 |
IX_MonthlyOperations_Month |   |   | NONCLUSTERED | 0 |
IX_MonthlyOperations_User |   |   | NONCLUSTERED | 0 |
Description: | Contains information about NavBarItem order |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
NBO_ID | int | Yes |   |   | Identifier | |
NBO_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
NBO_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
NBO_RowVersion | timestamp |   |   | Yes | Timestamp | |
NBO_CreatedBy | varchar(255) |   |   |   | Author | |
NBO_UpdatedBy | varchar(255) |   |   |   | Last modifier | |
NBO_NBIID | int |   |   |   | Foreign key to NavBatItems table | |
NBO_Guid | varchar(36) |   |   |   | NavBarItemOrder guid | |
NBO_Order | int |   |   |   | Order of NavBarItem |
Name | Foreign Table | Primary Key |
---|---|---|
FK_NavBarItemOrders_NavBarItems | NavBarItemOrders | PK_NavBarItems |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_NavBarItemOrders | Yes | Yes | CLUSTERED | 0 |
UQ_NavBarItemOrders_Guid | Yes |   | NONCLUSTERED | 0 |
IX_NavBarItemOrders_NBO_NBIID |   |   | NONCLUSTERED | 100 |
Description: | Contains info about navigation items |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
NBI_ID | int | Yes |   |   | Identifier | |
NBI_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
NBI_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
NBI_RowVersion | timestamp |   |   | Yes | Timestamp | |
NBI_CreatedBy | varchar(255) |   |   |   | Author | |
NBI_UpdatedBy | varchar(255) |   |   |   | Last modifier | |
NBI_APPID | int |   |   |   | Application id | |
NBI_ParentID | int |   | Yes |   | Parent navigation item id | |
NBI_Guid | varchar(36) |   |   |   | Navigation item guid | |
NBI_Name | varchar(255) |   | Yes |   | Navigation item name | |
NBI_Type | int |   |   |   | Navigation item type | |
NBI_Icon | varchar(255) |   | Yes |   | Navigation item icon | |
NBI_IsHidden | bit |   |   |   | Information about navigation item visibility | |
NBI_BreakSecurityInheritance | bit |   |   |   | information about navigation item security inheritance |
Name | Foreign Table | Primary Key |
---|---|---|
FK_NavBarItems_WFApplications | NavBarItems | PK_WFApplications |
FK_NavBarItems_NavBarItems | NavBarItems | PK_NavBarItems |
FK_AppDashboards_NavBarItems | AppDashboards | PK_NavBarItems |
FK_AppReports_NavBarItems | AppReports | PK_NavBarItems |
FK_AppReportViews_NavBarItems | AppReportViews | PK_NavBarItems |
FK_AppStarts_NavBarItems | AppStarts | PK_NavBarItems |
FK_NavBarItemOrders_NavBarItems | NavBarItemOrders | PK_NavBarItems |
FK_NavBarItems_NavBarItems | NavBarItems | PK_NavBarItems |
FK_WFConfigurationSecurities_NavBarItems | WFConfigurationSecurities | PK_NavBarItems |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_NavBarItems | Yes | Yes | CLUSTERED | 0 |
UQ_NavBarItems_Guid | Yes |   | NONCLUSTERED | 0 |
IX_NavBarItems_NBI_APPID |   |   | NONCLUSTERED | 100 |
Description: | Table contains OCR AI field definitions. |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
OAD_ID | int | Yes |   |   | Row ID | |
OAD_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Time of insert |
OAD_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Time of update |
OAD_RowVersion | timestamp |   |   | Yes | Row version | |
OAD_OAPID | int |   |   |   | Project ID | |
OAD_FieldId | varchar(127) |   |   |   | OCR AI field key | |
OAD_FieldName | varchar(127) |   |   |   | OCR AI field friendly name | |
OAD_IsCustom | bit |   |   |   | ((0)) | Marks if field was created by user |
Name | Foreign Table | Primary Key |
---|---|---|
FK_OcrAiFieldDefinitions_OcrAiProjects | OcrAiFieldDefinitions | PK_OcrAiProjects |
FK_OcrAiFields_OcrAiFieldDefinitions | OcrAiFields | PK_OcrAiFieldDefinitions |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_OcrAiFieldDefinitions | Yes | Yes | CLUSTERED | 100 |
UQ_OcrAiFieldDefinitions_OcrAiProjects | Yes |   | NONCLUSTERED | 100 |
Description: | Table contains OCR AI fields data. |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
OAF_ID | int | Yes |   |   | Row ID | |
OAF_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Time of insert |
OAF_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Time of update |
OAF_RowVersion | timestamp |   |   | Yes | Row version | |
OAF_OADID | int |   |   |   | Field Definition ID | |
OAF_WagFile | varchar(MAX) |   |   |   | OCR AI neural network | |
OAF_FieldFile | varchar(MAX) |   |   |   | OCR AI neural network configuration | |
OAF_OAVID | int |   |   |   | Project Version ID | |
OAF_RecPositive | int |   | Yes |   | Count of correctly recognized values in sample | |
OAF_RecNegative | int |   | Yes |   | Count of incorrectly recognized values in sample | |
OAF_UnrecPositive | int |   | Yes |   | Count of correctly unrecognized values in sample | |
OAF_UnrecNegative | int |   | Yes |   | Count of incorrectly unrecognized values in sample |
Name | Foreign Table | Primary Key |
---|---|---|
FK_OcrAiFields_OcrAiFieldDefinitions | OcrAiFields | PK_OcrAiFieldDefinitions |
FK_OcrAiFields_OcrAiProjectVersions | OcrAiFields | PK_OcrAiProjectVersionsDefinitions |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_OcrAiWeights | Yes | Yes | CLUSTERED | 100 |
UQ_OcrAiFields_OcrAiFieldDefinitions_OcrAiProjectVersions | Yes |   | NONCLUSTERED | 100 |
Description: | Table contains OCR AI Learn queue for attachments. |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
OALQ_ID | int | Yes |   |   | Row ID | |
OALQ_ATTID | int |   |   |   | Foreign key to WFDataAttachmets | |
OALQ_ACTID | int |   |   |   | Foreign key to WFActions | |
OALQ_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Time of insert |
OALQ_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Time of update |
OALQ_RowVersion | timestamp |   |   | Yes | Row version | |
OALQ_Priority | int |   |   |   | Priority | |
OALQ_ServiceName | varchar(255) |   | Yes |   | Processing service name | |
OALQ_Status | int |   |   |   | ((0)) | Status: ProcessingPending = 0 queue element is waiting to be processed by service, Processing = 1 queue element is now being processed, MovePending = 2 queue element has been processed sucessfully. Waiting for the path transition, Moving = 3 queue element is undergoing path transition after sucessful processing, MoveSuccess = 4 path transition successful, ProcessingError = 100 error during processing - number of allowed attempts exceeded, MoveError = 101 error on path transition - number of allowed attempts exceeded, ProcessingSuspended = 200 processing of the queue element was suspended |
OALQ_AttemptsNumber | int |   |   |   | ((0)) | Attempts number |
OALQ_Fields | varchar(MAX) |   |   |   | Workflow fields for learn (eg. AttText1) | |
OALQ_LastAttemptTime | datetime |   | Yes |   | Last attempt time | |
OALQ_LastError | varchar(MAX) |   | Yes |   | Last error | |
OALQ_ThreadId | int |   | Yes |   | Processing Thread Id for Ocr AI Learn | |
OALQ_ProcessingFinishedTime | datetime |   | Yes |   | Processing finished time | |
OALQ_LastUploadAttemptTime | datetime |   | Yes |   | Last uplaod attempt time | |
OALQ_UploadFinishedTime | datetime |   | Yes |   | Upload finished time | |
OALQ_SectionGuid | varchar(36) |   | Yes |   | Action section GUID |
Name | Foreign Table | Primary Key |
---|---|---|
FK_OcrAiLearnQueueItems_WFActions | OcrAiLearnQueueItems | PK_WFActions |
FK_OcrAiLearnQueueItems_WFDataAttachmets | OcrAiLearnQueueItems | PK_WFDataAttachmets |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_OcrAiLearnQueueItems | Yes | Yes | CLUSTERED | 100 |
Description: | Table contains info about OCR AI projects versions. |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
OAV_ID | int | Yes |   |   | Row ID | |
OAV_OAPID | int |   |   |   | Project ID | |
OAV_DistinguisherValue | varchar(127) |   | Yes |   | Distinguisher | |
OAV_VersionNumber | int |   |   |   | Project version number | |
OAV_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Time of insert |
OAV_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Time of update |
OAV_RowVersion | timestamp |   |   | Yes | Row version | |
OAV_ProjectName | varchar(255) |   | Yes |   | Project name |
Name | Foreign Table | Primary Key |
---|---|---|
FK_OcrAiProjectVersions_OcrAiProjects | OcrAiProjectVersions | PK_OcrAiProjects |
FK_OcrAiFields_OcrAiProjectVersions | OcrAiFields | PK_OcrAiProjectVersionsDefinitions |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_OcrAiProjectVersionsDefinitions | Yes | Yes | CLUSTERED | 100 |
UQ_OcrAiProjectVersions | Yes |   | NONCLUSTERED | 100 |
Description: | Table contains OCR AI project files. |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
OAP_ID | int | Yes |   |   | Row ID | |
OAP_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Time of insert |
OAP_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Time of update |
OAP_RowVersion | timestamp |   |   | Yes | Row version | |
OAP_Name | varchar(127) |   |   |   | Project name | |
OAP_File | image(2147483647) |   |   |   | Project file | |
OAP_FileName | varchar(255) |   | Yes |   | Project file name | |
OAP_FileVersion | varchar(50) |   | Yes |   | Project file version | |
OAP_Guid | varchar(36) |   |   |   | (newid()) | Guid |
Name | Foreign Table | Primary Key |
---|---|---|
FK_OcrAiFieldDefinitions_OcrAiProjects | OcrAiFieldDefinitions | PK_OcrAiProjects |
FK_OcrAiProjectsToAttachments_OcrAiProjects | OcrAiProjectsToAttachments | PK_OcrAiProjects |
FK_OcrAiProjectVersions_OcrAiProjects | OcrAiProjectVersions | PK_OcrAiProjects |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_OcrAiProjects | Yes | Yes | CLUSTERED | 100 |
UQ_OcrAiProjects_Guid | Yes |   | NONCLUSTERED | 100 |
Description: | Table contains OCR AI Learn Data |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
OAPA_ID | int | Yes |   |   | Row ID | |
OAPA_ATTID | int |   |   |   | Attachment ID | |
OAPA_OAPID | int |   |   |   | Project ID | |
OAPA_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Time of insert |
OAPA_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Time of update |
OAPA_RowVersion | timestamp |   |   | Yes | Row version |
Name | Foreign Table | Primary Key |
---|---|---|
FK_OcrAiProjectsToAttachments_WFDataAttachmets | OcrAiProjectsToAttachments | PK_WFDataAttachmets |
FK_OcrAiProjectsToAttachments_OcrAiProjects | OcrAiProjectsToAttachments | PK_OcrAiProjects |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_OcrAiProjectsToAttachments | Yes | Yes | CLUSTERED | 100 |
UQ_OcrAiProjectsToAttachments_WFDataAttachmets_OcrAiProjects | Yes |   | NONCLUSTERED | 100 |
Description: | Table contains OCR AI queue for attachments. |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
OAQ_ID | int | Yes |   |   | Row ID | |
OAQ_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Time of insert |
OAQ_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Time of update |
OAQ_RowVersion | timestamp |   |   | Yes | Row version | |
OAQ_Priority | int |   |   |   | Priority | |
OAQ_ServiceName | varchar(255) |   | Yes |   | Processing service name | |
OAQ_ATTID | int |   |   |   | Foreign key to WFDataAttachmets | |
OAQ_Status | int |   |   |   | ((0)) | Status: ProcessingPending = 0 queue element is waiting to be processed by service, Processing = 1 queue element is now being processed, MovePending = 2 queue element has been processed sucessfully. Waiting for the path transition, Moving = 3 queue element is undergoing path transition after sucessful processing, MoveSuccess = 4 path transition successful, ProcessingError = 100 error during processing - number of allowed attempts exceeded, MoveError = 101 error on path transition - number of allowed attempts exceeded, ProcessingSuspended = 200 processing of the queue element was suspended |
OAQ_AttemptsNumber | int |   |   |   | ((0)) | Attempts number |
OAQ_LastAttemptTime | datetime |   | Yes |   | Last attempt time | |
OAQ_LastError | varchar(MAX) |   | Yes |   | Last error | |
OAQ_ThreadId | int |   | Yes |   | Processing Thread Id for Text Layer in OCR | |
OAQ_ACTID | int |   |   |   | Foreign key to WFActions | |
OAQ_LastUploadAttemptTime | datetime |   | Yes |   | Last uplaod attempt time | |
OAQ_ProcessingFinishedTime | datetime |   | Yes |   | Processing finished time | |
OAQ_UploadFinishedTime | datetime |   | Yes |   | Upload finished time | |
OAQ_SectionGuid | varchar(36) |   | Yes |   | Action section GUID |
Name | Foreign Table | Primary Key |
---|---|---|
FK_OcrAiQueueItems_WFActions | OcrAiQueueItems | PK_WFActions |
FK_OcrAiQueueItems_WFDataAttachmets | OcrAiQueueItems | PK_WFDataAttachmets |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_OcrAiQueueItems | Yes | Yes | CLUSTERED | 100 |
UQ_OcrAiQueueItems_WFDataAttachmets | Yes |   | NONCLUSTERED | 100 |
Description: | Table contains user favorites places in structure. Table is used in Outlook add-in. |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
OFA_ID | int | Yes |   |   | Identifier | |
OFA_Name | varchar(50) |   |   |   | The name of the favorite outlook item | |
OFA_MoveType | int |   |   |   | Type | |
OFA_MODID | int |   | Yes |   | Related AppExploreDefinitions identifier | |
OFA_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
OFA_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
OFA_User | varchar(255) |   |   |   | User login | |
OFA_UserName | varchar(255) |   |   |   | User name | |
OFA_RowVersion | timestamp |   |   | Yes | Timestamp |
Name | Foreign Table | Primary Key |
---|---|---|
FK_OutlookFavorites_MoveDefinitions | OutlookFavorites | PK_AppExploreDefinitions |
FK_OutlookFavoritesParts_OutlookFavorites | OutlookFavoritesParts | PK_OutlookFavorites |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_OutlookFavorites | Yes | Yes | CLUSTERED | 100 |
Description: | Table contains individual selection in transition structure. Used in Outlook add-in. |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
OFP_ID | int | Yes |   |   | Favorite part identifier | |
OFP_OFAID | int |   |   |   | Identifier of the related favorite | |
OFP_Level | int |   |   |   | Level in structure | |
OFP_ChoiceValue | varchar(255) |   | Yes |   | Chosen value | |
OFP_ChoiceName | varchar(255) |   | Yes |   | Display name of the chosen value | |
OFP_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Date of adding |
OFP_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Modification date |
OFP_Sort | varchar(255) |   | Yes |   | Chosen sorting | |
OFP_WFDID | int |   | Yes |   | Identifier of the related element | |
OFP_RowVersion | timestamp |   |   | Yes | Row version |
Name | Foreign Table | Primary Key |
---|---|---|
FK_OutlookFavoritesParts_OutlookFavorites | OutlookFavoritesParts | PK_OutlookFavorites |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_OutlookFavoritesParts | Yes | Yes | CLUSTERED | 100 |
Description: | table for storing locations of path tranistions |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
PTL_ID | int | Yes |   |   | Identifier | |
PTL_WFDID | int |   |   |   | Element ID | |
PTL_WFHID | int |   |   |   | History version ID | |
PTL_Latitude | decimal(8,5) |   |   |   | Lattitude part of location | |
PTL_Longitude | decimal(8,5) |   |   |   | Longitude part of location | |
PTL_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
PTL_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
PTL_RowVersion | timestamp |   |   | Yes | Timestamp | |
PTL_CreatedBy | varchar(255) |   |   |   | Author | |
PTL_UpdatedBy | varchar(255) |   |   |   | Last modifier | |
PTL_IsFromNativeMobileApplication | bit |   |   |   | Determines whether the location comes from a mobile application |
Name | Foreign Table | Primary Key |
---|---|---|
FK_PathTransitionLocations_WFElements | PathTransitionLocations | PK_WFData |
FK_PathTransitionLocations_WFHistoryElements | PathTransitionLocations | PK_WFHistory |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_PathTransitionLocations | Yes | Yes | CLUSTERED | 0 |
IX_PathTransitionLocations_PTL_WFDID |   |   | NONCLUSTERED | 100 |
IX_PathTransitionLocations_PTL_WFHID |   |   | NONCLUSTERED | 100 |
Description: | Performance indicators executions |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
PIE_ID | int | Yes |   |   | Identifier | |
PIE_PIID | int |   |   |   | Performance indicator ID | |
PIE_WFDID | int |   |   |   | Workflow Element ID | |
PIE_HistoryVersion | int |   |   |   | Workflow element history version number | |
PIE_EventType | int |   |   |   | Event type - 0 start, 1 stop | |
PIE_Date | datetime |   |   |   | Current Date time | |
PIE_ExpectedTime | bigint |   | Yes |   | Expected time | |
PIE_ActualTime | bigint |   | Yes |   | Actual time | |
PIE_StartValue | bigint |   | Yes |   | Start value | |
PIE_Mode | int |   |   |   | Mode | |
PIE_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
PIE_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
PIE_RowVersion | timestamp |   |   | Yes | Timestamp | |
PIE_CreatedBy | varchar(255) |   |   |   | Author | |
PIE_UpdatedBy | varchar(255) |   |   |   | Last modifier | |
PIE_ActionMode | int |   |   |   | ((0)) | Stores action operating mode |
PIE_IsCalculated | bit |   |   |   | ((0)) | True if indicator execution was stopped and calculated. Only last execution can have this value |
Name | Foreign Table | Primary Key |
---|---|---|
FK_PerformanceIndicatorExecutions_PerformanceIndicators | PerformanceIndicatorExecutions | PK_PerformanceIndicators |
FK_PerformanceIndicatorExecutions_WFElements | PerformanceIndicatorExecutions | PK_WFData |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_PerformanceIndicatorExecutions | Yes | Yes | CLUSTERED | 0 |
IX_PerformanceIndicatorExecutions_WFDID_PIID |   |   | NONCLUSTERED | 0 |
Description: | Table contains data of performance indicators configurations |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
PI_ID | int | Yes |   |   | Identifier | |
PI_Name | varchar(255) |   |   |   | Performance indicator name | |
PI_Guid | varchar(36) |   |   |   | (newid()) | Performance indicator guid |
PI_DEFID | int |   |   |   | Process which have performance indicator | |
PI_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
PI_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
PI_RowVersion | timestamp |   |   | Yes | Timestamp | |
PI_CreatedBy | varchar(255) |   |   |   | Author | |
PI_UpdatedBy | varchar(255) |   |   |   | Last modifier | |
PI_DocumentationDescription | varchar(MAX) |   | Yes |   | Performance indicator documentation description | |
PI_IsArchive | bit |   |   |   | ((0)) | Is performance indicator archived |
PI_ExpectedValue | int |   |   |   | Exptected value in seconds | |
PI_Mode | int |   |   |   | Calculation mode | |
PI_IndicatorBRDID | int |   | Yes |   | Custom calculation business rule ID | |
PI_WorkStartCustom | bit |   |   |   | ((0)) | Check if work start hours are custom |
PI_WorkEndCustom | bit |   |   |   | ((0)) | Check if work end hours are custom |
PI_WorkStartHour | datetime |   |   |   | ('1970-01-01 09:00:00.000') | Work start hours |
PI_WorkEndHour | datetime |   |   |   | ('1970-01-01 17:00:00.000') | Work end hours |
PI_WorkingDayLength | datetime |   |   |   | ('1970-01-01 08:00:00.000') | Working day length for business rule |
Name | Foreign Table | Primary Key |
---|---|---|
FK_PerformanceIndicators_WFDefinitions | PerformanceIndicators | PK_WFDefinitions |
FK_PerformanceIndicators_WFBusinessRuleDefinitions | PerformanceIndicators | PK_WFBusinessRuleDefinitions |
FK_PerformanceIndicatorExecutions_PerformanceIndicators | PerformanceIndicatorExecutions | PK_PerformanceIndicators |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_PerformanceIndicators | Yes | Yes | CLUSTERED | 0 |
UQ_PerformanceIndicators_Guid | Yes |   | NONCLUSTERED | 0 |
IX_PerformanceIndicators_PI_DEFID |   |   | NONCLUSTERED | 0 |
Description: | Service queue for personal data removal action |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
PDQ_ID | int | Yes |   |   | Identifier | |
PDQ_DictionaryTable | varchar(255) |   |   |   | Personal data dictionary table name | |
PDQ_DictionaryID | int |   |   |   | Personal data dictionary identifier | |
PDQ_SearchKey | varchar(255) |   |   |   | Identifier of element in dictionary | |
PDQ_ActionID | int |   |   |   | Personal data removal action ID | |
PDQ_Author | varchar(50) |   |   |   | Person who triggered the action | |
PDQ_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
PDQ_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
PDQ_RowVersion | timestamp |   |   | Yes | Timestamp | |
PDQ_Priority | int |   |   |   | Priority | |
PDQ_ServiceName | varchar(255) |   | Yes |   | Processing service name | |
PDQ_Status | int |   |   |   | ((0)) | Status: ProcessingPending = 0 queue element is waiting to be processed by service, Processing = 1 queue element is now being processed, ProcessingSuccess = 2 queue element has been processed sucessfully, ProcessingError = 100 error while processing - number of allowed attempts exceeded, ProcessingSuspended = 200 processing of the queue element was suspended |
PDQ_AttemptsNumber | int |   |   |   | ((0)) | Attempts number |
PDQ_LastAttemptTime | datetime |   | Yes |   | Last attempt time | |
PDQ_LastError | varchar(MAX) |   | Yes |   | Last error | |
PDQ_ThreadId | int |   | Yes |   | Processing Thread Id | |
PDQ_ProcessingFinishedTime | datetime |   | Yes |   | Processing finished time | |
PDQ_SectionGuid | varchar(36) |   | Yes |   | Action section GUID | |
PDQ_ActionElementID | int |   | Yes |   | ID of an element on which action was fired | |
PDQ_COMID | int |   |   |   | Company ID |
Name | Foreign Table | Primary Key |
---|---|---|
FK_PersonalDataRemovalQueueItems_WFActions | PersonalDataRemovalQueueItems | PK_WFActions |
FK_PersonalDataRemovalQueueItems_Companies | PersonalDataRemovalQueueItems | PK_Companies |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_PersonalDataRemovalQueueItems | Yes | Yes | CLUSTERED | 100 |
Description: | Table that stores the date of plugin files |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
PLF_ID | int | Yes |   |   | Identifier | |
PLF_FileName | varchar(255) |   |   |   | Plugin file name | |
PLF_FullName | varchar(MAX) |   |   |   | Plugin full assembly name | |
PLF_PLPID | int |   |   |   | Related plugin package id | |
PLF_Content | image(2147483647) |   |   |   | File content | |
PLF_Guid | varchar(36) |   |   |   | (newid()) | Global unique ID |
PLF_RowVersion | timestamp |   |   | Yes | Timestamp | |
PLF_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
PLF_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
PLF_ContentHash | binary(32) |   | Yes |   | File content hash | |
PLF_Extension | varchar(50) |   |   |   | ('dll') | Plugin file extension |
PLF_Environment | int |   |   |   | Runtime environment of file, Common = 1, Portal = 2, Service = 3 |
Name | Foreign Table | Primary Key |
---|---|---|
FK_PluginFiles_PluginPackages | PluginFiles | PK_PluginPackages |
FK_WFPlugins_PluginFiles_Modern | WFPlugIns | PK_PluginFiles |
FK_WFPlugins_PluginFiles | WFPlugIns | PK_PluginFiles |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_PluginFiles | Yes | Yes | CLUSTERED | 100 |
UQ_PluginFiles_Guid | Yes |   | NONCLUSTERED | 100 |
Description: | Table that stores the date of plugin packages |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
PLP_ID | int | Yes |   |   | Identifier | |
PLP_Name | varchar(MAX) |   |   |   | Package name | |
PLP_Guid | varchar(36) |   |   |   | (newid()) | Global unique ID |
PLP_Version | int |   |   |   | Package version | |
PLP_Metadata | varchar(MAX) |   |   |   | Package metadata | |
PLP_RowVersion | timestamp |   |   | Yes | Timestamp | |
PLP_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
PLP_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
PLP_IsSystem | bit |   |   |   | Default package extension provided by bps | |
PLP_IsNative | bit |   |   |   | ((0)) | Plugin package containing native libraries |
PLP_BpsVersion | varchar(50) |   | Yes |   | The version of BPS with which the package is compatible |
Name | Foreign Table | Primary Key |
---|---|---|
FK_PluginFiles_PluginPackages | PluginFiles | PK_PluginPackages |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_PluginPackages | Yes | Yes | CLUSTERED | 100 |
UQ_PluginPackages_Guid | Yes |   | NONCLUSTERED | 100 |
Description: | Stores credentials for authentication providers in portal |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
PAP_ID | int | Yes |   |   | Identifier | |
PAP_Type | int |   |   |   | Type of provider | |
PAP_Active | bit |   |   |   | ((1)) | Is provider active |
PAP_Name | varchar(250) |   |   |   | Caption of provider | |
PAP_ClientId | varchar(MAX) |   | Yes |   | Client id | |
PAP_ClientSecret | varchar(MAX) |   | Yes |   | Client secret | |
PAP_PublicHost | varchar(MAX) |   | Yes |   | Public host | |
PAP_Issuer | varchar(MAX) |   | Yes |   | Issuer | |
PAP_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
PAP_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
PAP_RowVersion | timestamp |   |   | Yes | Timestamp | |
PAP_CreatedBy | varchar(255) |   |   |   | Author | |
PAP_UpdatedBy | varchar(255) |   |   |   | Last modifier | |
PAP_IsMultiTenant | bit |   |   |   | ((0)) | Is provider configured for multi tenant |
PAP_LogoutRedirectUrl | varchar(2048) |   | Yes |   | Redirect URL after logout | |
PAP_ActiveInStudio | bit |   |   |   | ((0)) | Is provider active for Designer Studio |
PAP_Scheme | varchar(50) |   |   |   | ||
PAP_Scopes | varchar(2000) |   | Yes |   | ||
PAP_UserIdCustomClaim | varchar(1000) |   | Yes |   | UserId custom claim value | |
PAP_UserIdClaimType | int |   |   |   | ((0)) | UserId claim type |
PAP_DontUseProxy | bit |   |   |   | ((0)) | Is users authentication provider use proxy |
Name | Foreign Table | Primary Key |
---|
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_PortalAuthenticationProviders | Yes | Yes | CLUSTERED | 100 |
UQ_PortalAuthenticationProviders_PAP_Scheme | Yes |   | NONCLUSTERED | 100 |
Description: | List of favourities for portal |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
PFV_ID | int | Yes |   |   | Identifier | |
PFV_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Date of row insertion |
PFV_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Date of row update |
PFV_RowVersion | timestamp |   |   | Yes | Row version | |
PFV_Guid | varchar(36) |   |   |   | (newid()) | Entry unique identifier for import export mechanism |
PFV_UserLogin | varchar(256) |   | Yes |   | Login of user | |
PFV_Name | nvarchar(50) |   |   |   | Favourite name | |
PFV_Order | int |   |   |   | Order | |
PFV_Url | varchar(2048) |   |   |   | Favourite url |
Name | Foreign Table | Primary Key |
---|
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_PortalFavourites | Yes | Yes | CLUSTERED | 100 |
Description: | Table containing WEBCON BPS Portal language packs along with greeting text |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
PLA_ID | int | Yes |   |   | Identifier | |
PLA_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
PLA_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
PLA_RowVersion | timestamp |   |   | Yes | Timestamp | |
PLA_CreatedBy | varchar(255) |   |   |   | Author | |
PLA_UpdatedBy | varchar(255) |   |   |   | Last modifier | |
PLA_DisplayName | nvarchar(MAX) |   |   |   | Package display name | |
PLA_LanguageCode | varchar(50) |   |   |   | Package language-country code | |
PLA_UseCustomPortalTranslatesPackage | bit |   |   |   | ((0)) | Flag indicating whether to use custom WEBCON BPS Portal translates package file instead of default |
PLA_IsSystem | bit |   |   |   | ((0)) | Flag indicating whether package is system one, which makes language package indelible and name uneditable |
PLA_IsActive | bit |   |   |   | ((0)) | Flag indicating whether package is active. Active packages may be selected by end users |
PLA_PortalTranslates | nvarchar(MAX) |   | Yes |   | Custom portal translates pack | |
PLA_BusinessLogicTranslates | nvarchar(MAX) |   | Yes |   | Custom business logic translates pack | |
PLA_IsDefault | bit |   |   |   | ((0)) | Defines default language for language packs |
PLA_PortalCustomTranslates | nvarchar(MAX) |   | Yes |   | Custom Portal translates |
Name | Foreign Table | Primary Key |
---|---|---|
FK_UserProfiles_PortalLanguagePacks | UserProfiles | PK_PortalLanguagePacks |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_PortalLanguagePacks | Yes | Yes | CLUSTERED | 100 |
Description: | Information about remote attachments |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
PUA_ID | int | Yes |   |   | Identifier | |
PUA_ATTID | int |   |   |   | WFDataAttachmets foreign key | |
PUA_WFCID | int |   |   |   | WFDataConnections foreign key | |
PUA_FilePath | varchar(400) |   | Yes |   | File path on remote disk | |
PUA_RowVersion | timestamp |   |   | Yes | Timestamp | |
PUA_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
PUA_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
PUA_CreatedBy | varchar(255) |   |   |   | Author | |
PUA_UpdatedBy | varchar(255) |   |   |   | Last modifier |
Name | Foreign Table | Primary Key |
---|---|---|
FK_PublishedAttachments_WFDataAttachments | PublishedAttachments | PK_WFDataAttachmets |
FK_PublishedAttachments_WFDataConnections | PublishedAttachments | PK_WFDataConnections |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_PublishedAttachments | Yes | Yes | CLUSTERED | 100 |
IDX_NCL_PublishedAttachments_WFCID |   |   | NONCLUSTERED | 100 |
IDX_NCL_PublishedAttachments_ATTID |   |   | NONCLUSTERED | 100 |
IX_PublishedAttachments_PUA_ATTID |   |   | NONCLUSTERED | 0 |
Description: | The table contains a collection of BPS application IDs per BPS user. Push notifications for specific users are not going to be sent to BPS applications that are listed in this table. |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
PNA_ID | int | Yes |   |   | Identifier | |
PNA_BpsID | varchar(450) |   |   |   | BPS identifier | |
PNA_AppID | int |   |   |   | Application identifier | |
PNA_Guid | varchar(255) |   |   |   | Globally Unique Identifier | |
PNA_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
PNA_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
PNA_UpdatedBy | varchar(255) |   | Yes |   | Last modifier | |
PNA_RowVersion | timestamp |   |   | Yes | Timestamp |
Name | Foreign Table | Primary Key |
---|---|---|
FK_PushNotificationsApplications | PushNotificationsApplications | PK_WFApplications |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_PushNotificationsApplications | Yes | Yes | CLUSTERED | 100 |
UQ_PushNotificationsApplications | Yes |   | NONCLUSTERED | 0 |
Description: | Stores apps registered on the server |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
RAP_ID | int | Yes |   |   | Identifier | |
RAP_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
RAP_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
RAP_RowVersion | timestamp |   |   | Yes | Timestamp | |
RAP_CreatedBy | varchar(255) |   |   |   | Author | |
RAP_UpdatedBy | varchar(255) |   |   |   | Last modifier | |
RAP_ClientId | varchar(50) |   |   |   | ClientId for the app | |
RAP_ClientSecret | varchar(MAX) |   | Yes |   | ClientSecret for the app | |
RAP_AppLogin | varchar(250) |   |   |   | Login for app when it is not impersonating | |
RAP_AppEmail | varchar(250) |   | Yes |   | Email of app (distribution group) | |
RAP_AllowImpersonate | bit |   |   |   | ((0)) | If app is allowed to impersonate users |
RAP_AppName | varchar(250) |   | Yes |   | Name for the app | |
RAP_ImpersonationApps | varchar(MAX) |   | Yes |   | List of applications with impersonation permissions | |
RAP_Configuration | varchar(MAX) |   | Yes |   | Additional configuration of app | |
RAP_AppType | int |   |   |   | Holds value for application type. AppContext = 1, UserContext = 2, DistributedService = 3 | |
RAP_AgentConfiguration | varchar(MAX) |   | Yes |   | Serialized configuration of service agents applications | |
RAP_IsSystem | bit |   |   |   | ((0)) | System application provided by webcon |
Name | Foreign Table | Primary Key |
---|---|---|
FK_RegisteredAppsGrants_RegisteredApps_RAPID | RegisteredAppsGrants | PK_RegisteredApps |
FK_RegisteredAppsScopes_RegisteredApps_RAPID | RegisteredAppsScopes | PK_RegisteredApps |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_RegisteredApps | Yes | Yes | CLUSTERED | 100 |
UQ_RAP_AppLogin | Yes |   | NONCLUSTERED | 100 |
Description: | Storage for registered applications' grant types |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
RAG_ID | bigint | Yes |   |   | Identifier | |
RAG_RAPID | int |   |   |   | Id of related registered app | |
RAG_Key | nvarchar(200) |   |   |   | Unique identifier for the persisted grant | |
RAG_Type | nvarchar(50) |   |   |   | Type of the grant | |
RAG_BpsID | nvarchar(200) |   | Yes |   | Id of user to which the grant belongs | |
RAG_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
RAG_Expiration | datetime |   | Yes |   | The expiration of the grant | |
RAG_Data | nvarchar(MAX) |   | Yes |   | The grant specific serialized data | |
RAG_RowVersion | timestamp |   |   | Yes | Timestamp |
Name | Foreign Table | Primary Key |
---|---|---|
FK_RegisteredAppsGrants_RegisteredApps_RAPID | RegisteredAppsGrants | PK_RegisteredApps |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_RegisteredAppsGrants | Yes | Yes | CLUSTERED | 100 |
IX_RegisteredAppsGrants_Key |   |   | NONCLUSTERED | 100 |
IX_RegisteredAppsGrants_BpsID |   |   | NONCLUSTERED | 100 |
Description: | Contains configured scopes for registered apps |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
RSC_ID | int | Yes |   |   | Identifier | |
RSC_RAPID | int |   |   |   | Id of related registered app | |
RSC_Scope | int |   |   |   | Value of WebCon.BPSCloud.Model.Identity.Api.ScopeType enum | |
RSC_ScopeGuid | nvarchar(36) |   | Yes |   | Application or process guid for selected scops | |
RSC_RowVersion | timestamp |   |   | Yes | Timestamp |
Name | Foreign Table | Primary Key |
---|---|---|
FK_RegisteredAppsScopes_RegisteredApps_RAPID | RegisteredAppsScopes | PK_RegisteredApps |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_RegisteredAppsScopes | Yes | Yes | CLUSTERED | 100 |
Description: | Table contains phones IDs that were registered to receive PUSH notifications about new or changed tasks. |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
REG_ID | int | Yes |   |   | Identifier | |
REG_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
REG_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
REG_RowVersion | timestamp |   |   | Yes | Timestamp | |
REG_PhoneToken | varchar(255) |   | Yes |   | Token for the device | |
REG_LoginName | varchar(255) |   |   |   | Login | |
REG_PhoneUDID | varchar(255) |   |   |   | Phones UDID | |
REG_Platform | varchar(1000) |   | Yes |   | Device platform | |
REG_LastUse | datetime |   |   |   | Date and time when user last time logged in with mobile device |
Name | Foreign Table | Primary Key |
---|---|---|
FK_Devices_RegisteredPhones | Devices | PK_RegisteredPhones |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_RegisteredPhones | Yes | Yes | CLUSTERED | 100 |
UQ_RegisteredPhones | Yes |   | NONCLUSTERED | 0 |
Description: | Stores info about refreshing resettable objects |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
RCT_ID | int | Yes |   |   | Resettable group from DicDataCacheGroups | |
RCT_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
RCT_RowVersion | timestamp |   |   | Yes | Timestamp | |
RCT_UpdatedBy | varchar(255) |   |   |   | Last modifier |
Name | Foreign Table | Primary Key |
---|---|---|
FK_ResettableObjectsChangeTimestamps_DicDataCacheGroups | ResettableObjectsChangeTimestamps | PK_DicDataCacheGroups |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_ResettableObjectsChangeTimestamps | Yes | Yes | CLUSTERED | 100 |
Description: | Table that contains schedules. |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
SCH_ID | int | Yes |   |   | Identifier | |
SCH_Type | int |   |   |   | Schedule type | |
SCH_StartTime | datetime |   |   |   | Start time | |
SCH_EndTime | datetime |   | Yes |   | End time | |
SCH_DayOfWeek | int |   | Yes |   | Day of week | |
SCH_IsNextDay | bit |   | Yes |   | Column wih information, if end time is on next day | |
SCH_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
SCH_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
SCH_CreatedBy | varchar(255) |   |   |   | Author | |
SCH_UpdatedBy | varchar(255) |   |   |   | Last modifier | |
SCH_RowVersion | timestamp |   |   | Yes | Timestamp |
Name | Foreign Table | Primary Key |
---|
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_Schedules | Yes | Yes | CLUSTERED | 100 |
Description: | Table for temporary data storage used by SDK. |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
TE_ID | int | Yes |   |   | Identifier | |
TE_GroupID | varchar(36) |   |   |   | Group identifier | |
TE_Status | int |   | Yes |   | Status | |
TE_Date | datetime |   | Yes |   | Date | |
TE_Value | varchar(MAX) |   | Yes |   | Value | |
TE_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
TE_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
TE_RowVersion | timestamp |   |   | Yes | Timestamp |
Name | Foreign Table | Primary Key |
---|
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_SdkTemporaryEntities | Yes | Yes | CLUSTERED | 0 |
IX_SdkTemporaryEntities_GroupID |   |   | NONCLUSTERED | 100 |
Description: | Stores information about service activites. |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
SAI_ID | int | Yes |   |   | Activity entry id. | |
SAI_ServiceID | int |   |   |   | Id of service to which information relates. | |
SAI_RolesRunnerID | int |   | Yes |   | Id of service which runs related service roles. | |
SAI_CancelationTime | datetime |   | Yes |   | Time of last cancelation. | |
SAI_IsInSafeMode | bit |   |   |   | ((0)) | Information about running in safe mode. |
SAI_LicenceServiceLocation | varchar(200) |   | Yes |   | Location of licence service. | |
SAI_WCFServiceLocation | varchar(200) |   | Yes |   | Location of WCF service. | |
SAI_ReturnRequest | bit |   |   |   | ((0)) | Information whether service requests for return of its roles. |
SAI_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Time of insert. |
SAI_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Time of last update. |
SAI_RowVersion | timestamp |   |   | Yes | Row version | |
SAI_IsInServiceHour | bit |   |   |   | ((0)) | Information about maintenance mode. |
Name | Foreign Table | Primary Key |
---|---|---|
FK_Services_ID_ServiceActivityInfos_RolesRunnerID | ServiceActivityInfos | Services_PK |
FK_Services_ID_ServiceActivityInfos_ServiceID | ServiceActivityInfos | Services_PK |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_ServiceActivityInfos | Yes | Yes | CLUSTERED | 100 |
IX_U_ServiceActivityInfos_ServiceID | Yes |   | NONCLUSTERED | 100 |
Description: | Table contains backup data about service roles in case of service failure. |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
SB_ID | int | Yes |   |   | Identifier | |
SB_BackupServiceID | int |   |   |   | Service from the SB_BackupServiceID column will take over the roles of the service from the SB_SourceServiceID column for the same row on the failover procedure. Identifier which refers to a row in Services table | |
SB_SourceServiceID | int |   |   |   | Service from the SB_SourceServiceID column whose roles will be taken over by service from the SB_BackupServiceID column for the same row on the failover procedure. Identifier which refers to a row in Services table | |
SB_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
SB_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
SB_RowVersion | timestamp |   |   | Yes | Timestamp |
Name | Foreign Table | Primary Key |
---|---|---|
FK_ServiceBackups_BackupServiceID_Services_ID | ServiceBackups | Services_PK |
FK_ServiceBackups_SourceServiceID_Services_ID | ServiceBackups | Services_PK |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_ServicesFailover | Yes | Yes | CLUSTERED | 100 |
UQ_ServiceBackups_BackupServiceID_SourceServiceID | Yes |   | NONCLUSTERED | 100 |
Description: | Table contains correlated content databases for services |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
SD_ID | int | Yes |   |   | Row identifier | |
SD_ServiceID | int |   |   |   | Service identifier | |
SD_ContentDatabaseID | int |   |   |   | Content database identifier | |
SD_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
SD_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
SD_RowVersion | timestamp |   |   | Yes | Timestamp |
Name | Foreign Table | Primary Key |
---|---|---|
FK_ServiceDatabases_SD_ContentDatabaseID | ServiceDatabases | PK_ContentDatabases |
FK_ServiceDatabases_SD_ServiceID | ServiceDatabases | Services_PK |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_ServiceDatabases | Yes | Yes | CLUSTERED | 100 |
UQ_ServiceDatabases_ContentDatabaseID_ServiceID | Yes |   | NONCLUSTERED | 100 |
Description: | Table contains events related to communication between service and programs dependent on service. |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
SE_ID | int | Yes |   |   | Identifier | |
SE_ServiceID | int |   |   |   | Service identifier which refers to a row in Services table | |
SE_RestartRequest | bit |   |   |   | ((0)) | Restart request |
SE_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
SE_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
SE_RowVersion | timestamp |   |   | Yes | Timestamp |
Name | Foreign Table | Primary Key |
---|---|---|
FK_ServiceEvents_Services | ServiceEvents | Services_PK |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_ServiceEvents | Yes | Yes | CLUSTERED | 100 |
UQ_ServiceEvents_Services | Yes |   | NONCLUSTERED | 100 |
Description: | Table contains last activation date (including time) for each service. If WorkFlow service is running constantly then column HB_Value is refreshed. |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
HB_ID | int | Yes |   |   | Identifier | |
HB_ServiceID | int |   |   |   | Service identifier which refers to a row in Services table | |
HB_Value | datetime |   |   |   | ('19000101') | Service last activity time |
HB_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
HB_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
HB_RowVersion | timestamp |   |   | Yes | Timestamp | |
HB_RestartRequest | bit |   |   |   | ((0)) | Restart request |
Name | Foreign Table | Primary Key |
---|---|---|
FK_ServiceHeartbeats_Services | ServiceHeartbeats | Services_PK |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_ServiceHeartbeats | Yes | Yes | CLUSTERED | 100 |
UQ_ServiceHeartbeats_Services | Yes |   | NONCLUSTERED | 100 |
Description: | Table connects services with their roles. Defines active roles for each service. |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
SR_ID | int | Yes |   |   | Identifier | |
SR_RoleID | int |   |   |   | Service role identifier which refers to a row in DicRoles table | |
SR_ServiceID | int |   |   |   | Service identifier which refers to a row in Services table | |
SR_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
SR_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
SR_RowVersion | timestamp |   |   | Yes | Timestamp |
Name | Foreign Table | Primary Key |
---|---|---|
FK_ServiceRoles_RoleID_Roles_ID | ServiceRoles | PK_DicRoles |
FK_ServiceRoles_ServiceID_Services_ID | ServiceRoles | Services_PK |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_ServiceRoles | Yes | Yes | CLUSTERED | 100 |
UQ_ServiceRoles_RoleID_ServiceID | Yes |   | NONCLUSTERED | 100 |
Description: | Table contains WorkFlow services configuration installed on defined environment. |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
S_ID | int | Yes |   |   | Identifier | |
S_Name | varchar(200) |   |   |   | Service name | |
S_IsBackup | bit |   |   |   | ((1)) | Indicates if service is a backup |
S_MaxOcrThreadsCount | int |   |   |   | ((1)) | Maximum number of OCR threads |
S_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
S_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
S_RowVersion | timestamp |   |   | Yes | Timestamp | |
S_LogDiagnostics | bit |   |   |   | ((0)) | Diagnostics logs |
S_TemporaryFilesDirectory | varchar(MAX) |   | Yes |   | Column contains path to directory in which service will keep its temporary files | |
S_OcrTextLayerThreads | int |   |   |   | ((1)) | Number of threads in service OCR Text Layer |
S_OcrMaestroThreads | int |   |   |   | ((1)) | Number of threads in service Maestro OCR |
S_OcrAiLearnThreads | int |   |   |   | ((1)) | Number of threads in service OCR AI Learn |
S_OcrAiLearnFieldThreads | int |   |   |   | ((1)) | Number of threads in service OCR AI for field parallel learn in one document |
S_RecurrentActionsThreads | int |   |   |   | ((4)) | Number of threads in service Recurrent actions |
S_ArchiveThreads | int |   |   |   | ((1)) | Number of threads in service Archive elements |
S_ArchivingDeleteTimeout | int |   |   |   | ((300)) | Archiving delete Webcon BPS timeout in seconds |
S_UseHddInArchiving | bit |   |   |   | ((0)) | Archiving use hdd to store temp files |
S_MobilePushNotificationsThreads | int |   |   |   | ((4)) | Number of threads in service Mobile Push Notifications |
S_PersonalDataRemovalThreads | int |   |   |   | ((1)) | Number of threads for personal data removal action |
S_SolrIndexerBatchSize | int |   |   |   | ((500)) | Number of workflow instances to download at once by service Solr Indexer |
S_AiAnalysisThreads | int |   |   |   | ((4)) | Number of AI Analysis threads |
S_SolrIndexerSqlTimeout | int |   |   |   | ((300)) | SQL timeout in seconds for Solr Indexer |
S_SolrIndexerConnectionErrorAttemptsNumber | int |   |   |   | ((10)) | Number of attempts for thread when SOLR connection error occured |
S_SolrIndexerConnectionErrorThreadSleep | int |   |   |   | ((60)) | Time in seconds for thread to sleep when SOLR connection error occured |
S_ExecutionTimeout | int |   |   |   | ((120)) | Time in seconds to timeout for path transition or save operation |
S_SolrIndexerRequestTimeout | int |   |   |   | ((300)) | HTTP connection to SOLR server timeout in seconds for Solr Indexer |
S_WcfLocation | varchar(255) |   |   |   | WCF endpoint address configuration | |
S_SolrIndexerQueueQueryPlanResetTimeout | int |   |   |   | ((900)) | Solr indexer queue query plan reset timeout |
S_MasterQueueInterval | int |   |   |   | ((10)) | Common queues interval |
S_TimeoutActionsThreads | int |   |   |   | ((1)) | Number of threads in service element Webcon BPS timeout actions |
S_MassNotificationsThreads | int |   |   |   | ((1)) | Number of mass notification threads |
S_WcfCertConfig | varbinary(MAX) |   | Yes |   | Certificate used to authenticate the Portal to the WCF Service. | |
S_LicenceServiceLocation | varchar(255) |   |   |   | WCF license endpoint address configuration | |
S_OcrTextLayerLogPath | varchar(255) |   | Yes |   | FineReader component additional logs full path | |
S_NetBiosName | nvarchar(256) |   |   |   | Service user name in NETBios format | |
S_UserPrincipalName | nvarchar(1024) |   | Yes |   | Service user name in UPN format | |
S_EmailsThreads | int |   |   |   | ((1)) | Number of Emails threads |
S_SolrActivitiesIndexerThreads | int |   |   |   | ((4)) | Number of threads in service Solr Activities Indexer |
S_SolrElementsIndexerThreads | int |   |   |   | ((4)) | Number of threads in service Solr Elements Indexer |
S_SolrUtilityIndexerThreads | int |   |   |   | ((1)) | Number of threads in service Solr Utility Indexer |
S_SolrFilesIndexerThreads | int |   |   |   | ((4)) | Number of threads in service Solr Files Indexer |
S_SolrLogLevel | int |   |   |   | ((1)) | Defines logging level for solr queues |
Name | Foreign Table | Primary Key |
---|---|---|
FK_Services_ID_ServiceActivityInfos_RolesRunnerID | ServiceActivityInfos | Services_PK |
FK_Services_ID_ServiceActivityInfos_ServiceID | ServiceActivityInfos | Services_PK |
FK_ServiceBackups_BackupServiceID_Services_ID | ServiceBackups | Services_PK |
FK_ServiceBackups_SourceServiceID_Services_ID | ServiceBackups | Services_PK |
FK_ServiceDatabases_SD_ServiceID | ServiceDatabases | Services_PK |
FK_ServiceEvents_Services | ServiceEvents | Services_PK |
FK_ServiceHeartbeats_Services | ServiceHeartbeats | Services_PK |
FK_ServiceRoles_ServiceID_Services_ID | ServiceRoles | Services_PK |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
Services_PK | Yes | Yes | CLUSTERED | 100 |
UQ_Services_Name | Yes |   | NONCLUSTERED | 100 |
Description: | Table includes authorization sessions in the system |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
SES_ID | int | Yes |   |   | Identifier | |
SES_RowVersion | timestamp |   |   | Yes | Timestamp | |
SES_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
SES_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
SES_SessionId | varchar(36) |   |   |   | Identifier of the authorization session | |
SES_SessionKey | varchar(255) |   | Yes |   | Key of the authorization session | |
SES_IsAuthorized | bit |   |   |   | ((0)) | A flag indicating whether the session is authorized |
SES_ExpirationTime | datetime |   |   |   | Date after which the session expires | |
SES_UserLogin | varchar(255) |   |   |   | Login of user that the session belongs to | |
SES_AdditionalData | varchar(MAX) |   | Yes |   | Contains information about objects related to this session | |
SES_Type | int |   |   |   | Session type | |
SES_Attempts | int |   |   |   | ((0)) | A number of session authorization attempts |
SES_IsCanceled | bit |   |   |   | ((0)) | A flag indicating whether the session is canceled |
SES_AuthorizationCodeIdentifierData | varchar(MAX) |   | Yes |   | Contains information identifying the session code | |
SES_DurationType | int |   |   |   | ((0)) | Duration type: 0 - Default, 1 - Long term |
Name | Foreign Table | Primary Key |
---|
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_Sessions | Yes | Yes | CLUSTERED | 0 |
IX_Sessions_SessionId |   |   | NONCLUSTERED | 100 |
IX_Sessions_UserLogin |   |   | NONCLUSTERED | 100 |
Description: | Table contains shared workflow instances |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
SHI_ID | int | Yes |   |   | Identifier | |
SHI_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
SHI_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
SHI_RowVersion | timestamp |   |   | Yes | Timestamp | |
SHI_SharedBy | varchar(255) |   |   |   | User that shared workflow instance | |
SHI_Email | varchar(255) |   |   |   | Email of user the worflow instance was shared with | |
SHI_WFDID | int |   |   |   | Shared workflow instance Id | |
SHI_ACTID | int |   | Yes |   | Id of action that shared workflow instance | |
SHI_ShareAuthkey | varchar(22) |   |   |   | Share Id used for authentication | |
SHI_StartShareMode | int |   |   |   | Share mode set on creation | |
SHI_ShareMode | int |   |   |   | Current share mode | |
SHI_Login | varchar(255) |   |   |   | Virtual user login | |
SHI_DisplayName | varchar(255) |   |   |   | Virtual user display name | |
SHI_EmailSent | bit |   |   |   | Link sharing flag - shared by email otherwise manually | |
SHI_ClosedOn | datetime |   | Yes |   | Share close date and time if closed manually | |
SHI_ClosedBy | varchar(255) |   | Yes |   | User that closed sharing if closed manually | |
SHI_ExpireOn | datetime |   | Yes |   | Share expiration date and time | |
SHI_DEFID | int |   |   |   | Shared workflow definition Id | |
SHI_FailedAttemptsExceededDateTime | datetime |   | Yes |   | Date and time when shared instance was locked due to too many failed authorization attempts |
Name | Foreign Table | Primary Key |
---|---|---|
FK_SharedInstances_WFDefinitions | SharedInstances | PK_WFDefinitions |
FK_SharedInstances_WFElements | SharedInstances | PK_WFData |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_SharedInstances | Yes | Yes | CLUSTERED | 0 |
IX_SharedInstances_ShareAuthkey |   |   | NONCLUSTERED | 0 |
IX_SharedInstances_WFDID |   |   | NONCLUSTERED | 0 |
IX_SharedInstances_SHI_DEFID |   |   | NONCLUSTERED | 0 |
IX_SharedInstances_Login |   |   | NONCLUSTERED | 0 |
Description: | The table contains information about Single Solution licenses assigned to individual users |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
SSC_ID | int | Yes |   |   | Row identifier | |
SSC_UCLID | int |   |   |   | Identifier of related row from UsersCals table | |
SSC_CDID | int |   |   |   | Identifier of related row from ContentDatabases table used to distinct Process | |
SSC_ProcessID | int |   |   |   | Process identifier | |
SSC_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
SSC_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
SSC_RowVersion | timestamp |   |   | Yes | Timestamp |
Name | Foreign Table | Primary Key |
---|---|---|
FK_SingleSolutionCals_ContentDatabases | SingleSolutionCals | PK_ContentDatabases |
FK_SingleSolutionCals_UsersCals | SingleSolutionCals | PK_UsersCals |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_SingleSolutionCals | Yes | Yes | CLUSTERED | 100 |
Unique_ProcessID_CDID_UCLID_SingleSolutionCals | Yes |   | NONCLUSTERED | 0 |
IX_SingleSolutionCals_SSC_UCLID |   |   | NONCLUSTERED | 0 |
Description: | Service queue for SOLR indexing operations for activities |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
SAQ_ID | int | Yes |   |   | Identifier | |
SAQ_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
SAQ_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
SAQ_RowVersion | timestamp |   |   | Yes | Timestamp | |
SAQ_Priority | int |   |   |   | Priority | |
SAQ_Status | int |   |   |   | ((0)) | Status: ProcessingPending = 0 queue element is waiting to be processed by service, Processing = 1 queue element is now being processed, ProcessingSuccess = 2 queue element has been processed sucessfully, ProcessingError = 100 error while processing - number of allowed attempts exceeded, ProcessingSuspended = 200 processing of the queue element was suspended |
SAQ_ServiceName | varchar(255) |   | Yes |   | Processing service name | |
SAQ_AttemptsNumber | int |   |   |   | ((0)) | Attempts number |
SAQ_LastAttemptTime | datetime |   | Yes |   | Last attempt time | |
SAQ_LastError | varchar(MAX) |   | Yes |   | Last error | |
SAQ_ThreadId | int |   | Yes |   | Processing Thread Id for SOLR indexing | |
SAQ_ProcessingFinishedTime | datetime |   | Yes |   | Processing finished time | |
SAQ_Operation | int |   |   |   | Operation type Id | |
SAQ_ActivityXml | varchar(MAX) |   |   |   | Additional data used when indexing BPS activities | |
SAQ_APPID | int |   | Yes |   | Application Id | |
SAQ_WFDID | int |   | Yes |   | Element Id |
Name | Foreign Table | Primary Key |
---|---|---|
FK_SolrActivityQueueItems_DicIndexingOperations | SolrActivityQueueItems | PK_DicIndexingOperations |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_SolrActivityQueueItems | Yes | Yes | CLUSTERED | 100 |
Description: | Service queue for SOLR indexing elements operations |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
SEQ_ID | int | Yes |   |   | Identifier | |
SEQ_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
SEQ_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
SEQ_RowVersion | timestamp |   |   | Yes | Timestamp | |
SEQ_Priority | int |   |   |   | Priority | |
SEQ_Status | int |   |   |   | ((0)) | Status: ProcessingPending = 0 queue element is waiting to be processed by service, Processing = 1 queue element is now being processed, ProcessingSuccess = 2 queue element has been processed sucessfully, ProcessingError = 100 error while processing - number of allowed attempts exceeded, ProcessingSuspended = 200 processing of the queue element was suspended |
SEQ_ServiceName | varchar(255) |   | Yes |   | Processing service name | |
SEQ_AttemptsNumber | int |   |   |   | ((0)) | Attempts number |
SEQ_LastAttemptTime | datetime |   | Yes |   | Last attempt time | |
SEQ_LastError | varchar(MAX) |   | Yes |   | Last error | |
SEQ_ThreadId | int |   | Yes |   | Processing Thread Id for SOLR indexing | |
SEQ_ProcessingFinishedTime | datetime |   | Yes |   | Processing finished time | |
SEQ_Operation | int |   |   |   | Operation type Id | |
SEQ_WFDID | int |   |   |   | Single indexed workflow instance id or inclusive first element in range | |
SEQ_BatchEnd_WFDID | int |   | Yes |   | Exclusive last element in range | |
SEQ_DateFrom | datetime |   | Yes |   | Date range from which elements will be indexed. | |
SEQ_DateTo | datetime |   | Yes |   | Date range to which elements will be indexed. | |
SEQ_DEFID | int |   | Yes |   | ID of process to index |
Name | Foreign Table | Primary Key |
---|---|---|
FK_SolrElementQueueItems_DicIndexingOperations | SolrElementQueueItems | PK_DicIndexingOperations |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_SolrElementQueueItems | Yes | Yes | CLUSTERED | 100 |
Description: | Service queue for SOLR indexing attachemnts operations |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
SFQ_ID | int | Yes |   |   | Identifier | |
SFQ_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
SFQ_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
SFQ_RowVersion | timestamp |   |   | Yes | Timestamp | |
SFQ_Priority | int |   |   |   | Priority | |
SFQ_Status | int |   |   |   | ((0)) | Status: ProcessingPending = 0 queue element is waiting to be processed by service, Processing = 1 queue element is now being processed, ProcessingSuccess = 2 queue element has been processed sucessfully, ProcessingError = 100 error while processing - number of allowed attempts exceeded, ProcessingSuspended = 200 processing of the queue element was suspended |
SFQ_ServiceName | varchar(255) |   | Yes |   | Processing service name | |
SFQ_AttemptsNumber | int |   |   |   | ((0)) | Attempts number |
SFQ_LastAttemptTime | datetime |   | Yes |   | Last attempt time | |
SFQ_LastError | varchar(MAX) |   | Yes |   | Last error | |
SFQ_ThreadId | int |   | Yes |   | Processing Thread Id for SOLR indexing | |
SFQ_ProcessingFinishedTime | datetime |   | Yes |   | Processing finished time | |
SFQ_Operation | int |   |   |   | Operation type Id | |
SFQ_WFDID | int |   |   |   | Element Id | |
SFQ_ATTID | int |   |   |   | Attachment Id |
Name | Foreign Table | Primary Key |
---|---|---|
FK_SolrFileQueueItems_DicIndexingOperations | SolrFileQueueItems | PK_DicIndexingOperations |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_SolrFileQueueItems | Yes | Yes | CLUSTERED | 100 |
Description: | Service queue for utility SOLR indexing operations |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
SUQ_ID | int | Yes |   |   | Identifier | |
SUQ_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
SUQ_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
SUQ_RowVersion | timestamp |   |   | Yes | Timestamp | |
SUQ_Priority | int |   |   |   | Priority | |
SUQ_Status | int |   |   |   | ((0)) | Status: ProcessingPending = 0 queue element is waiting to be processed by service, Processing = 1 queue element is now being processed, ProcessingSuccess = 2 queue element has been processed sucessfully, ProcessingError = 100 error while processing - number of allowed attempts exceeded, ProcessingSuspended = 200 processing of the queue element was suspended |
SUQ_ServiceName | varchar(255) |   | Yes |   | Processing service name | |
SUQ_AttemptsNumber | int |   |   |   | ((0)) | Attempts number |
SUQ_LastAttemptTime | datetime |   | Yes |   | Last attempt time | |
SUQ_LastError | varchar(MAX) |   | Yes |   | Last error | |
SUQ_ThreadId | int |   | Yes |   | Processing Thread Id for SOLR indexing | |
SUQ_ProcessingFinishedTime | datetime |   | Yes |   | Processing finished time | |
SUQ_Operation | int |   |   |   | Operation type Id | |
SUQ_APPID | int |   | Yes |   | ID of application to index | |
SUQ_DEFID | int |   | Yes |   | ID of process to index | |
SUQ_DateFrom | datetime |   | Yes |   | Date range from which elements will be indexed. | |
SUQ_DateTo | datetime |   | Yes |   | Date range to which elements will be indexed. | |
SUQ_DequeueTime | datetime |   | Yes |   | Delay of executing operation from studio |
Name | Foreign Table | Primary Key |
---|---|---|
FK_SolrUtilityQueueItems_DicIndexingOperations | SolrUtilityQueueItems | PK_DicIndexingOperations |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_SolrUtilityQueueItems | Yes | Yes | CLUSTERED | 100 |
Description: | Table containing substitution details |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
SUBD_ID | int | Yes |   |   | Identifier | |
SUBD_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
SUBD_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
SUBD_RowVersion | timestamp |   |   | Yes | Timestamp | |
SUBD_CreatedBy | varchar(255) |   |   |   | Author | |
SUBD_UpdatedBy | varchar(255) |   |   |   | Last modifier | |
SUBD_SUBID | int |   |   |   | Reference to substitution | |
SUBD_CDID | int |   | Yes |   | Database identifier | |
SUBD_APPID | int |   | Yes |   | Application identifier | |
SUBD_DEFID | int |   |   |   | Process identifier |
Name | Foreign Table | Primary Key |
---|---|---|
FK_SubstitutionDetails_ContentDatabases | SubstitutionDetails | PK_ContentDatabases |
FK_SubstitutionDetails_Substitutions | SubstitutionDetails | PK_Substitutions |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_SubstitutionDetails | Yes | Yes | CLUSTERED | 100 |
Description: | Stores definitions of substitutions in the system, both general and specific for certain processes. Stores active and inactive substitutions. |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
SUB_ID | int | Yes |   |   | Identifier | |
SUB_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
SUB_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
SUB_RowVersion | timestamp |   |   | Yes | Timestamp | |
SUB_CreatedBy | varchar(255) |   |   |   | Author | |
SUB_UpdatedBy | varchar(255) |   |   |   | Last modifier | |
SUB_IsDeleted | bit |   |   |   | ((0)) | Is record deleted |
SUB_Person | nvarchar(255) |   |   |   | Person being substituted | |
SUB_Substitute | varchar(255) |   |   |   | Person substituting | |
SUB_SubstitutionStart | datetime |   |   |   | Substitution start date | |
SUB_SubstitutionEnd | datetime |   |   |   | Substitution end date | |
SUB_IsActive | bit |   |   |   | ((1)) | Is substitution active |
SUB_COMID | int |   | Yes |   | Identifier of company with substitution | |
SUB_CDID | int |   | Yes |   | content database id on which company structure is defined or that defines dbid for workflow element | |
SUB_SubstitutionType | int |   |   |   | ((1)) | Substitution type |
SUB_SubstitutionTriggerType | int |   |   |   | ((1)) | Substitution trigger type |
SUB_WFDID | int |   | Yes |   | Substitution reference to workflow element (set only if triggered by action) |
Name | Foreign Table | Primary Key |
---|---|---|
FK_Substitutions_ContentDatabases | Substitutions | PK_ContentDatabases |
FK_SubstitutionDetails_Substitutions | SubstitutionDetails | PK_Substitutions |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_Substitutions | Yes | Yes | CLUSTERED | 100 |
Description: | System table, used to synchronize access to db from multiple processes. |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
SEM_ID | int | Yes |   |   | Identifier | |
SEM_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
SEM_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
SEM_UpdatedBy | varchar(255) |   | Yes |   | Last modifier | |
SEM_Value | varchar(50) |   |   |   | Column with value to be updated by each process. | |
SEM_RowVersion | timestamp |   |   | Yes | Timestamp |
Name | Foreign Table | Primary Key |
---|
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_SystemSemafor | Yes | Yes | CLUSTERED | 100 |
Description: | The table contains users with temporary access which replaces license-based access |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
TAL_ID | int | Yes |   |   | Identifier | |
TAL_User | varchar(255) |   |   |   | BPS ID, as in the CacheOrganizationStructure table | |
TAL_Starting | datetime |   |   |   | Date from which the user has active temporary access | |
TAL_Signature | binary(256) |   | Yes |   | Digital signature | |
TAL_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
TAL_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
TAL_RowVersion | timestamp |   |   | Yes | Timestamp |
Name | Foreign Table | Primary Key |
---|
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_TemporaryAccessLicenses | Yes | Yes | CLUSTERED | 100 |
Description: | Table contains files generated by system which are available for user for limited period of time. |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
TMP_ID | int | Yes |   |   | Record identifier | |
TMP_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Insert date |
TMP_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
TMP_CreatedBy | varchar(255) |   |   |   | Author | |
TMP_UpdatedBy | varchar(255) |   |   |   | Last modifier | |
TMP_RowVersion | timestamp |   |   | Yes | Row version | |
TMP_UniqueID | varchar(36) |   |   |   | (newid()) | File identifier |
TMP_Content | varbinary(MAX) |   |   |   | File content | |
TMP_FileName | varchar(255) |   |   |   | File name | |
TMP_Permissions | varchar(1000) |   | Yes |   | Users who have access to file | |
TMP_ExpirationDate | datetime |   | Yes |   | File expiration date | |
TMP_AccessType | int |   | Yes |   | One-time or unlimited access |
Name | Foreign Table | Primary Key |
---|
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_TemporaryFiles | Yes | Yes | CLUSTERED | 100 |
Description: | Supported languages list for text layer engine |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
TTL_ID | int | Yes |   |   | Identifier | |
TTL_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
TTL_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
TTL_RowVersion | timestamp |   |   | Yes | Timestamp | |
TTL_FRInternalName | varchar(50) |   |   |   | Fine Reader internal supported language name | |
TTL_EnglishName | varchar(50) |   |   |   | English supported language name | |
TTL_PolishName | varchar(50) |   |   |   | Polish supported language name |
Name | Foreign Table | Primary Key |
---|
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_TextLayerLanguages | Yes | Yes | CLUSTERED | 100 |
Description: | Table contains text layer queue for attachments. |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
TLQ_ID | int | Yes |   |   | Row ID | |
TLQ_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Time of insert |
TLQ_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Time of update |
TLQ_RowVersion | timestamp |   |   | Yes | Row version | |
TLQ_Priority | int |   |   |   | Priority | |
TLQ_ServiceName | varchar(255) |   | Yes |   | Processing service name | |
TLQ_ATTID | int |   |   |   | Foreign key to WFDataAttachmets | |
TLQ_Status | int |   |   |   | ((0)) | Status: ProcessingPending = 0 queue element is waiting to be processed by service, Processing = 1 queue element is now being processed, MovePending = 2 queue element has been processed sucessfully. Waiting for the path transition, Moving = 3 queue element is undergoing path transition after sucessful processing, MoveSuccess = 4 path transition successful, ProcessingError = 100 error during processing - number of allowed attempts exceeded, MoveError = 101 error on path transition - number of allowed attempts exceeded, ProcessingSuspended = 200 processing of the queue element was suspended |
TLQ_AttemptsNumber | int |   |   |   | ((0)) | Attempts number |
TLQ_LastAttemptTime | datetime |   | Yes |   | Last attempt name | |
TLQ_LastError | varchar(MAX) |   | Yes |   | Last error | |
TLQ_ThreadId | int |   | Yes |   | Processing Thread Id for Text Layer in OCR | |
TLQ_LastUploadAttemptTime | datetime |   | Yes |   | Last upload attempt time | |
TLQ_ProcessingFinishedTime | datetime |   | Yes |   | Processing finished time | |
TLQ_UploadFinishedTime | datetime |   | Yes |   | Upload finished time | |
TLQ_ACTID | int |   |   |   | Foreign key to WFActions | |
TLQ_SectionGuid | varchar(36) |   | Yes |   | Action section GUID |
Name | Foreign Table | Primary Key |
---|---|---|
FK_TextLayerQueueItems_WFActions | TextLayerQueueItems | PK_WFActions |
FK_TextLayerQueueItems_WFDataAttachmets | TextLayerQueueItems | PK_WFDataAttachmets |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_TextLayerQueueItems | Yes | Yes | CLUSTERED | 100 |
UQ_TextLayerQueueItems_WFDataAttachmets | Yes |   | NONCLUSTERED | 100 |
Description: | Contains color themes for BPS Portal. |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
THE_ID | int | Yes |   |   | Identifier | |
THE_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
THE_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
THE_RowVersion | timestamp |   |   | Yes | Timestamp | |
THE_CreatedBy | varchar(255) |   |   |   | Author | |
THE_UpdatedBy | varchar(255) |   |   |   | Last modifier | |
THE_Name | varchar(30) |   |   |   | Name | |
THE_Description | varchar(1000) |   |   |   | Description | |
THE_IsDefault | bit |   |   |   | ((0)) | Is a default theme |
THE_IsActive | bit |   |   |   | ((1)) | Is an active theme |
THE_Configuration | varchar(MAX) |   | Yes |   | Configuration data in JSON | |
THE_LogoContent | varbinary(MAX) |   | Yes |   | Logo binary data | |
THE_Guid | varchar(36) |   |   |   | (newid()) | BPS environment (DEV/TEST/PROD) independent identifier |
THE_PortalBackgroundContent | varbinary(MAX) |   | Yes |   | Binnary content for portal background image | |
THE_IsSystem | bit |   |   |   | ((0)) | Is system theme |
THE_IsEmbedDefault | bit |   |   |   | ((0)) | A value indicating whether the theme is default for embedded views |
THE_CompactLogoContent | varbinary(MAX) |   | Yes |   | Compact logo binary data | |
THE_Type | int |   |   |   | ((0)) | Enum with theme type. |
THE_GlobalStyles | nvarchar(MAX) |   | Yes |   | Custom styles defined by user. |
Name | Foreign Table | Primary Key |
---|
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_Themes | Yes | Yes | CLUSTERED | 100 |
Description: | Table contains tiles configuration used in Outlook add-in. It contains references to process, document, workflow and step. |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
TIL_ID | int | Yes |   |   | Tile identifier | |
TIL_DEFID | int |   | Yes |   | Identifier of the related process | |
TIL_DTYPEID | int |   | Yes |   | Identifier of the related document type | |
TIL_WFID | int |   | Yes |   | Identifier of the related workflow | |
TIL_Name | varchar(50) |   |   |   | Tile name | |
TIL_Description | varchar(MAX) |   | Yes |   | Tile description | |
TIL_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Date of adding |
TIL_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Modification date |
TIL_User | varchar(255) |   |   |   | Login of user submitting the tile | |
TIL_UserName | varchar(255) |   |   |   | Name of user submitting the tile | |
TIL_StartInBrowser | bit |   |   |   | ((0)) | Configuration of starting in browser |
TIL_Order | int |   |   |   | ((0)) | Order of the tile |
TIL_RowVersion | timestamp |   |   | Yes | Row version | |
TIL_PATHID | int |   | Yes |   | Related path id from WFAvaiblePaths | |
TIL_COMID | int |   | Yes |   | Company ID |
Name | Foreign Table | Primary Key |
---|---|---|
FK_TilesConfigurations_Companies | TilesConfigurations | PK_Companies |
FK_TilesConfigurations_WFDefinitions | TilesConfigurations | PK_WFDefinitions |
FK_TilesConfigurations_WFDocTypes | TilesConfigurations | PK_WFDocTypes |
FK_TilesConfigurations_WFAvaiblePaths | TilesConfigurations | PK_WFAvaiblePaths |
FK_TilesConfigurations_WorkFlows | TilesConfigurations | PK_WorkFlows |
FK_TilesMappings_TilesConfigurations | TilesMappings | PK_TilesConfigurations |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_TilesConfigurations | Yes | Yes | CLUSTERED | 100 |
Description: | Table contains values that will be assigned to form fields after starting workflow using tile in Outlook add-in. |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
TIM_ID | int | Yes |   |   | ||
TIM_TILID | int |   |   |   | ||
TIM_WFCONID | int |   |   |   | ||
TIM_Value | varchar(MAX) |   | Yes |   | ||
TIM_RowVersion | timestamp |   |   | Yes | Row version |
Name | Foreign Table | Primary Key |
---|---|---|
FK_TilesMappings_TilesConfigurations | TilesMappings | PK_TilesConfigurations |
FK_TilesMappings_WFConfigurations | TilesMappings | PK_WFConfigurations |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_TilesMappings | Yes | Yes | CLUSTERED | 100 |
Description: | Table with ToDo items |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
TODO_ID | int | Yes |   |   | Identifier | |
TODO_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
TODO_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
TODO_RowVersion | timestamp |   |   | Yes | Timestamp | |
TODO_CreatedBy | varchar(255) |   |   |   | Author | |
TODO_UpdatedBy | varchar(255) |   |   |   | Last modifier | |
TODO_APPID | int |   | Yes |   | Foreign key to WFApplications table | |
TODO_Status | int |   |   |   | ((0)) | Status of ToDo |
TODO_ObjectTypeCFTID | int |   | Yes |   | Type of associated object | |
TODO_ObjectId | int |   | Yes |   | ID of associated object | |
TODO_Value | varchar(MAX) |   | Yes |   | ToDo details | |
TODO_Guid | varchar(36) |   |   |   | Globally Unique Identifier | |
TODO_HistoryObjectId | int |   | Yes |   | ID of associated object - historic | |
TODO_DEFID | int |   | Yes |   | ID of owning process from WFDefinitions table |
Name | Foreign Table | Primary Key |
---|---|---|
FK_ToDoItems_WFApplications | ToDoItems | PK_WFApplications |
FK_ToDoItems_ConfigurationTables | ToDoItems | PK_ConfigurationTables |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_ToDoItems | Yes | Yes | CLUSTERED | 0 |
IX_TODO_APPID |   |   | NONCLUSTERED | 0 |
IX_TODO_ObjectTypeCFTID_ObjectId |   |   | NONCLUSTERED | 0 |
UQ_ToDoItems_ObjectTypeCFTID_ObjectId | Yes |   | NONCLUSTERED | 0 |
Description: | Table contains list of languages that can be used to translate process configuration data in WEBCON BPS Designer Studio. |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
LAN_ID | int | Yes |   |   | Identifier | |
LAN_Name | varchar(50) |   | Yes |   | Language name | |
LAN_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Row insert date |
LAN_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Row update date |
LAN_RowVersion | timestamp |   |   | Yes | Row version | |
LAN_Guid | varchar(36) |   |   |   | Global unique id for language based on MD5 from LAN_NAME |
Name | Foreign Table | Primary Key |
---|---|---|
FK_MassNotifications_TranslateLanguages_NewUserNotificationLanguage | MassNotifications | PK_TransalateLanguages |
FK_MassNotifications_TranslateLanguages_NotificationLanguage | MassNotifications | PK_TransalateLanguages |
FK_Transalates_TransalateLanguages | Translates | PK_TransalateLanguages |
FK_WFApplications_LANID_TranslateLanguages | WFApplications | PK_TransalateLanguages |
FK_WFApplications_NewUserLANID_TranslateLanguages | WFApplications | PK_TransalateLanguages |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_TransalateLanguages | Yes | Yes | CLUSTERED | 100 |
UQ_TranslateLanguages_Name | Yes |   | NONCLUSTERED | 0 |
UQ_TranslateLanguages_Guid | Yes |   | NONCLUSTERED | 100 |
Description: | Table contains translations provided by users about process configuration. |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
TRANS_ID | int | Yes |   |   | Identifier | |
TRANS_OBJID | int |   |   |   | Related DicTranslationsObjects identifier | |
TRANS_ELEMID | int |   |   |   | Related DicTranslationsObjects identifier | |
TRANS_LANID | int |   |   |   | Related TranslateLanguages identifier | |
TRANS_Name | nvarchar(MAX) |   |   |   | Translation value | |
TRANS_Description | varchar(2000) |   | Yes |   | Translation description | |
TRANS_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
TRANS_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
TRANS_RowVersion | timestamp |   |   | Yes | Timestamp | |
TRANS_Guid | varchar(36) |   |   |   | (newid()) | Entry unique identifier for import export mechanism |
TRANS_DEFID | int |   | Yes |   | ID of process which contains the translation | |
TRANS_APPID | int |   | Yes |   | ID of application which contains the translation |
Name | Foreign Table | Primary Key |
---|---|---|
FK_Translates_WFApplications | Translates | PK_WFApplications |
FK_Translates_WFDefinitions | Translates | PK_WFDefinitions |
FK_Transalates_TransalateLanguages | Translates | PK_TransalateLanguages |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_Transalates | Yes | Yes | CLUSTERED | 100 |
IX_U_Translates_LANID_OBJID_ELEMID | Yes |   | NONCLUSTERED | 100 |
IX_U_Translates_OBJID_ELEMID_LANID | Yes |   | NONCLUSTERED | 100 |
IX_Translates_OBJID_DEFID |   |   | NONCLUSTERED | 0 |
UQ_Translates_Guid | Yes |   | NONCLUSTERED | 100 |
IX_Translates_DEFID |   |   | NONCLUSTERED | 100 |
IX_Translates_APPID |   |   | NONCLUSTERED | 100 |
Description: | Stores usage logs and throttle events |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
USL_ID | bigint | Yes |   |   | Identifier | |
USL_Guid | varchar(50) |   |   |   | Usage log guid | |
USL_Throttled | bit |   |   |   | ((0)) | Indicated if usage log was logged due to throttling event |
USL_ThrottleLog | varchar(MAX) |   | Yes |   | Log of operation which caused throttling, empty if log is not due to throttling event | |
USL_OperationsLog | varchar(MAX) |   |   |   | Full log of operations in current sample | |
USL_Flops | int |   |   |   | Current operations count defined in bps flops units | |
USL_Timestamp | datetime |   |   |   | Timestamp of usage log generation | |
USL_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
USL_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
USL_RowVersion | timestamp |   |   | Yes | Timestamp | |
USL_CreatedBy | varchar(255) |   |   |   | Author | |
USL_UpdatedBy | varchar(255) |   |   |   | Last modifier |
Name | Foreign Table | Primary Key |
---|
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_UsageLogs | Yes | Yes | CLUSTERED | 100 |
Description: | Data of user profilles |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
UPF_ID | int | Yes |   |   | Identifier | |
UPF_BpsID | varchar(255) |   |   |   | BPS Identifier | |
UPF_PLAID | int |   | Yes |   | Portal language packs identifier | |
UPF_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
UPF_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
UPF_RowVersion | timestamp |   |   | Yes | Timestamp | |
UPF_HideDeskTour | bit |   |   |   | ((0)) | Determines if designer desk tour tips should be hided |
UPF_Picture | varbinary(MAX) |   | Yes |   | Column which contains the user's photo. | |
UPF_AllowMassNotifications | bit |   |   |   | ((1)) | Column which contains information on whether the user wants to receive mass notifications. |
UPF_Theme | varchar(36) |   | Yes |   | Column contains guid of theme chosen by user | |
UPF_PushNotificationsPreferences | int |   |   |   | ((2)) | User preferences for pushes |
UPF_PhoneNumber | varchar(255) |   | Yes |   | User's phone number |
Name | Foreign Table | Primary Key |
---|---|---|
FK_UserProfiles_PortalLanguagePacks | UserProfiles | PK_PortalLanguagePacks |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_UserProfiles | Yes | Yes | CLUSTERED | 100 |
UQ_UPF_BpsID | Yes |   | NONCLUSTERED | 100 |
Description: | Table contains UserSynchronization queue for elements |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
USQ_ID | int | Yes |   |   | Identifier | |
USQ_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
USQ_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
USQ_RowVersion | timestamp |   |   | Yes | Timestamp | |
USQ_Priority | int |   |   |   | Priority | |
USQ_ServiceName | varchar(255) |   | Yes |   | Processing service name | |
USQ_Status | int |   |   |   | ((0)) | Status: ProcessingPending = 0 queue element is waiting to be processed by service, Processing = 1 queue element is now being processed, ProcessingSuccess = 2 queue element has been processed sucessfully, ProcessingError = 100 error while processing - number of allowed attempts exceeded, ProcessingSuspended = 200 processing of the queue element was suspended |
USQ_AttemptsNumber | int |   |   |   | ((0)) | Attempts number |
USQ_LastAttemptTime | datetime |   | Yes |   | Last attempt time | |
USQ_LastError | varchar(MAX) |   | Yes |   | Last error | |
USQ_ThreadId | int |   | Yes |   | Processing Thread Id for synchronization | |
USQ_ProcessingFinishedTime | datetime |   | Yes |   | Processing finished time | |
USQ_Users | varchar(MAX) |   | Yes |   | User logins to synchronize, or all users if NULL | |
USQ_Mode | int |   |   |   | ((0)) | Synchronization mode: 0 - All users mode from config 1 - All users full 2 - All users diff 3 - Selected users |
USQ_IsDebug | bit |   |   |   | ((0)) | Debug mode is much slower but has additional logging |
USQ_Reason | varchar(MAX) |   | Yes |   | The reason for starting given synchronization task | |
USQ_SectionGuid | varchar(36) |   | Yes |   | Action section GUID | |
USQ_WFDID | int |   | Yes |   | ID of an element on which action was fired | |
USQ_ACTID | int |   | Yes |   | Action ID | |
USQ_CustomPath | varchar(255) |   | Yes |   | Path to the folder with AAD Json files |
Name | Foreign Table | Primary Key |
---|
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_UserSynchronizationQueueItems | Yes | Yes | CLUSTERED | 100 |
Description: | The table contains information about licenses assigned to individual users |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
UCL_ID | int | Yes |   |   | Identifier | |
UCL_BpsID | varchar(450) |   |   |   | BPS ID, as in the CacheOrganizationStructure table | |
UCL_LicenseType | int |   |   |   | Integer denoted license type | |
UCL_Guid | varchar(36) |   |   |   | (newid()) | GUID of this entity |
UCL_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
UCL_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
UCL_RowVersion | timestamp |   |   | Yes | Timestamp | |
UCL_AllowDesignerDeskProjectCreation | bit |   |   |   | ((0)) | Determines if user is allowed to create new projects |
UCL_AllowDesignerDeskProjectPublishing | bit |   |   |   | ((0)) | Determines if user is allowed to publish existing projects |
Name | Foreign Table | Primary Key |
---|---|---|
FK_SingleSolutionCals_UsersCals | SingleSolutionCals | PK_UsersCals |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_UsersCals | Yes | Yes | CLUSTERED | 100 |
UQ_UsersCals_Guid | Yes |   | NONCLUSTERED | 100 |
IX_UsersCals_BpsID_LicenseType |   |   | NONCLUSTERED | 100 |
Description: | Business rules used in action configurations |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
ABR_ID | int | Yes |   |   | Identifier | |
ABR_ACTID | int |   |   |   | Action identifier | |
ABR_BRDID | int |   |   |   | Business rule identifier | |
ABR_PropertyID | int |   |   |   | Action configuration property identifier | |
ABR_PropertyOrder | int |   | Yes |   | Action configuration property order | |
ABR_Guid | varchar(36) |   |   |   | (newid()) | Global unique ID |
ABR_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
ABR_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
ABR_RowVersion | timestamp |   |   | Yes | Timestamp |
Name | Foreign Table | Primary Key |
---|---|---|
FK_WFActionBusinessRules_WFActions | WFActionBusinessRules | PK_WFActions |
FK_WFActionBusinessRules_WFBusinessRuleDefinitions | WFActionBusinessRules | PK_WFBusinessRuleDefinitions |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_WFActionBusinessRules | Yes | Yes | CLUSTERED | 100 |
UQ_WFActionBusinessRules_Guid | Yes |   | NONCLUSTERED | 100 |
IX_WFActionBusinessRules_ABR_BRDID |   |   | NONCLUSTERED | 100 |
IX_WFActionBusinessRules_ABR_ACTID |   |   | NONCLUSTERED | 100 |
Description: | Table contains groups for action buttons |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
ABG_ID | int | Yes |   |   | Action button group identifier | |
ABG_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
ABG_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
ABG_RowVersion | timestamp |   |   | Yes | Timestamp | |
ABG_Name | nvarchar(256) |   | Yes |   | Group name | |
ABG_WFID | int |   | Yes |   | Related workflow Id for global actions group | |
ABG_STPID | int |   | Yes |   | Related step Id for step actions group | |
ABG_Description | nvarchar(512) |   | Yes |   | Group description | |
ABG_Order | int |   |   |   | ((0)) | Order number |
ABG_IconMode | int |   |   |   | ((0)) | IconMode: - 0 stands for custom icon url from IconUrl column, - 1 stands for SP predefined icon. |
ABG_IconChoice | int |   |   |   | ((0)) | Predefined icon id. |
ABG_Icon | nvarchar(256) |   | Yes |   | Icon button | |
ABG_Guid | nvarchar(36) |   | Yes |   | (newid()) | Global unique ID |
Name | Foreign Table | Primary Key |
---|---|---|
FK_WFActionButtonGroups_WFSteps | WFActionButtonGroups | PK_WFSteps |
FK_WFActionButtonGroups_WorkFlows | WFActionButtonGroups | PK_WorkFlows |
FK_WFActionButtons_WFActionButtonGroups_ABGID | WFActionButtons | PK_WFActionButtonGroups |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_WFActionButtonGroups | Yes | Yes | CLUSTERED | 100 |
UQ_WFActionButtonGroups_Guid | Yes |   | NONCLUSTERED | 100 |
IX_WFActionButtonGroups_ABG_WFID |   |   | NONCLUSTERED | 100 |
IX_WFActionButtonGroups_ABG_STPID |   |   | NONCLUSTERED | 100 |
Description: | Table contains buttons for action |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
ACB_ID | int | Yes |   |   | Action button identifier | |
ACB_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
ACB_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
ACB_RowVersion | timestamp |   |   | Yes | Timestamp | |
ACB_STPID | int |   | Yes |   | Related step Id for step action button | |
ACB_WFID | int |   | Yes |   | Related workflow Id for global actions button | |
ACB_Name | nvarchar(50) |   | Yes |   | Action button name | |
ACB_Description | nvarchar(1000) |   | Yes |   | Action button description name | |
ACB_Order | int |   |   |   | Button order | |
ACB_Guid | nvarchar(36) |   | Yes |   | (newid()) | Global unique ID |
ACB_ConfirmExecutionMessage | nvarchar(MAX) |   | Yes |   | A message that shows up after execution all actions in button | |
ACB_ConfirmExecution | bit |   |   |   | ((0)) | Determines if should show message after button actions execution |
ACB_ConfirmBeforeExecutionMessage | nvarchar(MAX) |   | Yes |   | A message that appears as a confirmation question before the actions are executed | |
ACB_ConfirmBeforeExecution | bit |   |   |   | ((0)) | Determines if should show confirmation question before actions execution |
ACB_Icon | nvarchar(200) |   | Yes |   | Icon button | |
ACB_IconMode | int |   |   |   | ((0)) | IconMode: - 0 stands for custom icon url from IconUrl column, - 1 stands for SP predefined icon. |
ACB_IconChoice | int |   |   |   | ((0)) | Predefined icon button identifier |
ACB_IsVisibleBRDID | int |   | Yes |   | Business rule ID that determines button visibility | |
ACB_ABGID | int |   | Yes |   | Related action button group ID | |
ACB_JsOnClickBRDID | int |   | Yes |   | Foreign key to ux business rule defining a javascript function to be executed on action button click, before execution of all actions | |
ACB_AUTMID | int |   | Yes |   | Automation identifier | |
ACB_DeskRestrictions | varchar(MAX) |   | Yes |   | Action buttons restrictions for Designer Desk |
Name | Foreign Table | Primary Key |
---|---|---|
FK_WFActionButtons_WFActionButtonGroups_ABGID | WFActionButtons | PK_WFActionButtonGroups |
FK_WFActionButtons_Automations | WFActionButtons | PK_Automations |
FK_WFActionButtons_WFBusinessRuleDefinitions_IsVisibleBRDID | WFActionButtons | PK_WFBusinessRuleDefinitions |
FK_WFActionButtons_WFBusinessRuleDefinitions_JsOnClickBRDID | WFActionButtons | PK_WFBusinessRuleDefinitions |
FK_WFActionButtons_WFSteps | WFActionButtons | PK_WFSteps |
FK_WFActionButtons_WorkFlows | WFActionButtons | PK_WorkFlows |
FK_WFActions_WFActionButtons | WFActions | PK_WFActionButtons |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_WFActionButtons | Yes | Yes | CLUSTERED | 100 |
UQ_WFActionButtons_Guid | Yes |   | NONCLUSTERED | 100 |
IX_WFActionButtons_ACB_WFID |   |   | NONCLUSTERED | 100 |
IX_WFActionButtons_ACB_STPID |   |   | NONCLUSTERED | 100 |
Description: | Contains logs about actions executed in the system and element processing operations. Descriptions can be compressed and are readable with Designer Studio. |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
LOG_ID | int | Yes |   |   | Identifier | |
LOG_DEFID | int |   | Yes |   | Related WFDefinitions identifier | |
LOG_WFDID | int |   | Yes |   | Related WFElements identifier | |
LOG_WTHID | int |   | Yes |   | Information about executed action | |
LOG_STPID | int |   | Yes |   | Related WFSteps identifier | |
LOG_ACTID | int |   | Yes |   | Related WFActions identifier | |
LOG_Status | int |   | Yes |   | Execution status (Information = 0, OK = 1, Error = 2, Exception = 3) | |
LOG_Name | varchar(MAX) |   | Yes |   | Name of action execution | |
LOG_Description | varchar(MAX) |   | Yes |   | Description | |
LOG_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
LOG_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
LOG_RowVersion | timestamp |   |   | Yes | Timestamp | |
LOG_WFID | int |   | Yes |   | Related Workflows identifier | |
LOG_AdditionalMessage | nvarchar(MAX) |   | Yes |   | Additional information displayed e.g. in the case of custom actions | |
LOG_ActionSucceeded | bit |   |   |   | ((1)) | Information if the action was correctly executed |
LOG_SectionGuid | varchar(36) |   | Yes |   | (newid()) | Section guid |
LOG_Duration | int |   | Yes |   | Action execution time | |
LOG_ActionType | int |   | Yes |   | Related DicActionTypes identifier | |
LOG_TransactionType | int |   | Yes |   | Action transaction type | |
LOG_ParentActionID | int |   | Yes |   | Related WFActions identifier - parent action | |
LOG_ShowOnlyInAdminMode | bit |   |   |   | ((0)) | Show only in admin mode |
LOG_CompressedDescription | varbinary(MAX) |   | Yes |   | Compressed description | |
LOG_CompressedAdditionalMessage | varbinary(MAX) |   | Yes |   | Compressed additional description | |
LOG_ACBID | int |   | Yes |   | Column with action button id | |
LOG_ASEID | int |   | Yes |   | Reference to related Automation execution details from table AutomationSessionExecutions | |
LOG_ActionExecutionGuid | varchar(36) |   | Yes |   | Action execution log guid |
Name | Foreign Table | Primary Key |
---|---|---|
FK_WFActionExecutions_DicActionTypes | WFActionExecutions | PK_DicActionTypes |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_WFActionExecutions | Yes | Yes | CLUSTERED | 100 |
IX_WFLogs_WFDID |   |   | NONCLUSTERED | 100 |
IX_WFLogs_WTHID |   |   | NONCLUSTERED | 100 |
IX_WFLogs_ACTID |   |   | NONCLUSTERED | 80 |
Description: | Contains actions configuration. Stores all types and kinds of action that are available in the system. |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
ACT_ID | int | Yes |   |   | Identifier | |
ACT_STPID | int |   | Yes |   | Step identifier on which the action is executed | |
ACT_PLUID | int |   | Yes |   | WFPlugin identifier used by the action | |
ACT_PATHID | int |   | Yes |   | Path identifier on which the action is executed | |
ACT_Name | varchar(50) |   |   |   | Action name | |
ACT_ActionKindID | int |   |   |   | Action kind. All available kinds can be found in DicActionKinds table | |
ACT_ActionTypeID | int |   |   |   | Action type. All available types can be found in DicActionTypes table | |
ACT_Order | int |   |   |   | Action execution order | |
ACT_Configuration | varchar(MAX) |   | Yes |   | Configuration of a given action in the XML format | |
ACT_Description | varchar(MAX) |   | Yes |   | Description | |
ACT_PluginControl | varchar(100) |   | Yes |   | [DEPRECATED] | |
ACT_PluginMethod | varchar(50) |   | Yes |   | [DEPRECATED] | |
ACT_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Row insert date |
ACT_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Row update date |
ACT_RowVersion | timestamp |   |   | Yes | Row version | |
ACT_WFID | int |   | Yes |   | The workflow to which the action belongs, set for global actions | |
ACT_RADID | int |   | Yes |   | Cycle identifier of cyclical actions | |
ACT_IsActive | bit |   |   |   | ((1)) | Determines if this action is active |
ACT_Guid | varchar(36) |   |   |   | (newid()) | Action GUID |
ACT_IsPattern | bit |   |   |   | ((0)) | Determines if this action is a pattern |
ACT_ACTID | int |   | Yes |   | Pattern action identifier | |
ACT_DEFID | int |   | Yes |   | The process to which the action belongs to, set for action templates | |
ACT_ActivationBRDID | int |   | Yes |   | Action activation business rule identifier | |
ACT_ACBID | int |   | Yes |   | Related action button identifier | |
ACT_DeskRestrictions | varchar(MAX) |   | Yes |   | Actions restrictions for designer desk | |
ACT_AUTMID | int |   | Yes |   | Automation ID | |
ACT_ErrorMessage | varchar(MAX) |   | Yes |   | Error runtime handling: Error Message | |
ACT_ErrorCode | int |   |   |   | ((100)) | Error runtime handling: Error code |
Name | Foreign Table | Primary Key |
---|---|---|
FK_WFActions_WFActionButtons | WFActions | PK_WFActionButtons |
FK_WFActions_WFActions | WFActions | PK_WFActions |
FK_WFActions_DicActionKinds | WFActions | PK_DicActionKinds |
FK_WFActions_DicActionTypes | WFActions | PK_DicActionTypes |
FK_WFActions_WFBusinessRuleDefinitions_ACT_ActivationBRDID | WFActions | PK_WFBusinessRuleDefinitions |
FK_WFActions_Automations | WFActions | PK_Automations |
FK_WFActions_WFDefinitions | WFActions | PK_WFDefinitions |
FK_WFActions_WFAvaiblePaths | WFActions | PK_WFAvaiblePaths |
FK_WFActions_WFPlugIns | WFActions | PK_WFPlugIns |
FK_WFActions_WFRecurrentActionsDefinitions | WFActions | PK_WFRecurrentActionsDefinitions |
FK_WFActions_WFSteps | WFActions | PK_WFSteps |
FK_WFActions_WorkFlows | WFActions | PK_WorkFlows |
FK_ArchiveQueueItems_WFActions | ArchiveQueueItems | PK_WFActions |
FK_ConfiguredWebServices_WFActions | ConfiguredWebServices | PK_WFActions |
FK_OcrAiLearnQueueItems_WFActions | OcrAiLearnQueueItems | PK_WFActions |
FK_OcrAiQueueItems_WFActions | OcrAiQueueItems | PK_WFActions |
FK_PersonalDataRemovalQueueItems_WFActions | PersonalDataRemovalQueueItems | PK_WFActions |
FK_TextLayerQueueItems_WFActions | TextLayerQueueItems | PK_WFActions |
FK_WFActionBusinessRules_WFActions | WFActionBusinessRules | PK_WFActions |
FK_WFActions_WFActions | WFActions | PK_WFActions |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_WFActions | Yes | Yes | CLUSTERED | 100 |
UQ_WFActions_Guid | Yes |   | NONCLUSTERED | 100 |
IX_WFActions_ACT_STPID |   |   | NONCLUSTERED | 100 |
IX_WFActions_ACT_WFID |   |   | NONCLUSTERED | 100 |
IX_WFActions_ACT_AUTMID |   |   | NONCLUSTERED | 100 |
IX_WFActions_ACT_DEFID |   |   | NONCLUSTERED | 100 |
Description: | Contains information about applications that are checked out and unavailable for edit. Also contains information about expired check outs caused by session termination. |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
APPC_ID | int | Yes |   |   | Identifier | |
APPC_APPID | int |   |   |   | Application Id | |
APPC_UserLogin | varchar(100) |   |   |   | User login | |
APPC_Host | varchar(100) |   | Yes |   | Host | |
APPC_CheckoutTime | datetime |   |   |   | ([dbo].[GetDbDate]()) | Checkout time |
APPC_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Insert time |
APPC_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
APPC_RowVersion | timestamp |   |   | Yes | Timestamp |
Name | Foreign Table | Primary Key |
---|---|---|
FK_WFApplicationCheckouts_WFApplications | WFApplicationCheckouts | PK_WFApplications |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_WFApplicationCheckouts | Yes | Yes | CLUSTERED | 100 |
Description: | Table containing applications |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
APP_ID | int | Yes |   |   | Identifier | |
APP_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
APP_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
APP_RowVersion | timestamp |   |   | Yes | Timestamp | |
APP_Guid | varchar(36) |   |   |   | (newid()) | Guid of application |
APP_AGRID | int |   |   |   | WFApplicationsGroups foreign key | |
APP_Name | varchar(50) |   |   |   | Name of application | |
APP_Description | varchar(MAX) |   | Yes |   | Description of application | |
APP_TemplateID | int |   |   |   | ((1)) | Defines type of application template |
APP_LANID | int |   | Yes |   | Application language foreign key | |
APP_ApplicationLanguageType | int |   |   |   | ((1)) | Column determines whether application language is set from global settings or directly from browser |
APP_Supervisor | varchar(1000) |   | Yes |   | Application supervisor | |
APP_IsCustomSupervisor | bit |   |   |   | ((0)) | Application has custom supervisor |
APP_Color | varchar(8) |   |   |   | ('FF5659BA') | Application color |
APP_CustomSupervisorImage | varbinary(MAX) |   | Yes |   | Application custom supervisor image | |
APP_CustomSupervisorName | varchar(1000) |   | Yes |   | Application custom supervisor full name | |
APP_CustomSupervisorJobTitle | varchar(1000) |   | Yes |   | Application custom supervisor job title | |
APP_CustomSupervisorDepartment | varchar(1000) |   | Yes |   | Application custom supervisor department | |
APP_CustomSupervisorPhone | varchar(1000) |   | Yes |   | Application custom supervisor phone | |
APP_CustomSupervisorMail | varchar(1000) |   | Yes |   | Application custom supervisor mail | |
APP_SaveStamp | varchar(36) |   |   |   | (newid()) | Save stamp |
APP_NewUserLANID | int |   | Yes |   | Notification language for new users | |
APP_NewUserLanguageType | int |   |   |   | ((1)) | Determines type of new users notification language with default value from globalsettings |
APP_Stage | int |   |   |   | ((1)) | Application Stage |
APP_ProjectPrivileges | varchar(MAX) |   | Yes |   | Designer desk project privileges description | |
APP_Icon | varchar(255) |   |   |   | ('apps') | Application icon |
Name | Foreign Table | Primary Key |
---|---|---|
FK_WFApplications_WFApplicationsGroups | WFApplications | PK_WFApplicationsGroups |
FK_WFApplications_LANID_TranslateLanguages | WFApplications | PK_TransalateLanguages |
FK_WFApplications_NewUserLANID_TranslateLanguages | WFApplications | PK_TransalateLanguages |
FK_WFApplications_DicApplicationStages | WFApplications | PK_DicApplicationStages |
FK_WFApplications_DicApplicationTemplates | WFApplications | PK_DicApplicationTemplates |
FK_AppDashboards_WFApplications | AppDashboards | PK_WFApplications |
FK_AppDataConnectionAssocs_WFApplications | AppDataConnectionAssocs | PK_WFApplications |
FK_AppDataSourceAssocs_WFApplications | AppDataSourceAssocs | PK_WFApplications |
FK_AppReports_WFApplications | AppReports | PK_WFApplications |
FK_AppStarts_WFApplications | AppStarts | PK_WFApplications |
FK_ChangeRequests_WFApplications | ChangeRequests | PK_WFApplications |
FK_DataSets_WFApplications | DataSets | PK_WFApplications |
FK_NavBarItems_WFApplications | NavBarItems | PK_WFApplications |
FK_PushNotificationsApplications | PushNotificationsApplications | PK_WFApplications |
FK_ToDoItems_WFApplications | ToDoItems | PK_WFApplications |
FK_Translates_WFApplications | Translates | PK_WFApplications |
FK_WFApplicationCheckouts_WFApplications | WFApplicationCheckouts | PK_WFApplications |
FK_WFApplicationsLinkedProcesses_WFApplications | WFApplicationsLinkedProcesses | PK_WFApplications |
FK_WFConfigurationSecurities_WFApplications | WFConfigurationSecurities | PK_WFApplications |
FK_WFDefinitions_WFApplications | WFDefinitions | PK_WFApplications |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_WFApplications | Yes | Yes | CLUSTERED | 100 |
UQ_WFApplications_Guid | Yes |   | NONCLUSTERED | 100 |
Description: | Table containing groups of applications |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
AGR_ID | int | Yes |   |   | Identifier | |
AGR_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
AGR_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
AGR_RowVersion | timestamp |   |   | Yes | Timestamp | |
AGR_Guid | varchar(36) |   |   |   | (newid()) | Guid of application group |
AGR_Name | varchar(50) |   |   |   | Name of application group | |
AGR_IsSystem | int |   |   |   | ((0)) | Defines whether application group is a system group |
Name | Foreign Table | Primary Key |
---|---|---|
FK_WFApplications_WFApplicationsGroups | WFApplications | PK_WFApplicationsGroups |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_WFApplicationsGroups | Yes | Yes | CLUSTERED | 100 |
UQ_WFApplicationsGroups_Guid | Yes |   | NONCLUSTERED | 100 |
Description: | Additional processes connected with applications. Default application for processes is stored in column DEF_APPID WFDefinitions table |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
ALP_ID | int | Yes |   |   | Identifier | |
ALP_APPID | int |   |   |   | WFApplications foreign key | |
ALP_DEFID | int |   |   |   | WFDefinitions foreign key | |
ALP_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
ALP_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
ALP_RowVersion | timestamp |   |   | Yes | Timestamp | |
ALP_Guid | varchar(36) |   |   |   | (newid()) | Guid of association |
ALP_CreatedBy | varchar(255) |   |   |   | Author | |
ALP_UpdatedBy | varchar(255) |   |   |   | Last modifier |
Name | Foreign Table | Primary Key |
---|---|---|
FK_WFApplicationsLinkedProcesses_WFApplications | WFApplicationsLinkedProcesses | PK_WFApplications |
FK_WFApplicationsLinkedProcesses_WFDefinitions | WFApplicationsLinkedProcesses | PK_WFDefinitions |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_WFApplicationsLinkedProcesses | Yes | Yes | CLUSTERED | 100 |
UQ_WFApplicationsLinkedProcesses_Guid | Yes |   | NONCLUSTERED | 100 |
IX_WFApplicationsLinkedProcesses_ALP_DEFID |   |   | NONCLUSTERED | 100 |
IX_WFApplicationsLinkedProcesses_ALP_APPID |   |   | NONCLUSTERED | 100 |
Description: | Table contains command templates used in Mail Approval. |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
WAC_ID | int | Yes |   |   | Identifier | |
WAC_WADID | int |   | Yes |   | ApprovalDefinition identifier which refers to a row in WFApprovalDefinitions table | |
WAC_Values | varchar(MAX) |   | Yes |   | ApprovalCommand values | |
WAC_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
WAC_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
WAC_UpdatedBy | varchar(255) |   | Yes |   | Last modifier | |
WAC_RowVersion | timestamp |   |   | Yes | Timestamp | |
WAC_PATHID | int |   | Yes |   | AvaiblePath identifier which refers to a row in WFAvaiblePaths table | |
WAC_Guid | varchar(36) |   |   |   | (newid()) | Entry unique identifier for import export mechanism |
Name | Foreign Table | Primary Key |
---|---|---|
FK_WFApprovalCommands_WFAvaiblePaths | WFApprovalCommands | PK_WFAvaiblePaths |
FK_WFApprovalCommands_WFApprovalDefinitions | WFApprovalCommands | PK_WFApprovalDefinitions |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_WFApprovalCommands | Yes | Yes | CLUSTERED | 100 |
UQ_WFApprovalCommands_Guid | Yes |   | NONCLUSTERED | 100 |
IX_WFApprovalCommands_WAC_PATHID |   |   | NONCLUSTERED | 100 |
Description: | Table contains command definitions used in Mail Approval. |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
WAD_ID | int | Yes |   |   | Identifier | |
WAD_Name | varchar(50) |   |   |   | ApprovalDefinition name | |
WAD_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
WAD_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
WAD_UpdatedBy | varchar(255) |   | Yes |   | Last modifier | |
WAD_RowVersion | timestamp |   |   | Yes | Timestamp | |
WAD_Guid | varchar(36) |   |   |   | (newid()) | Entry unique identifier for import export mechanism |
WAD_DefinitionType | int |   |   |   | ((0)) | Definition type base on UserEnums, 0 is standard type, 1 used for delegation commands |
Name | Foreign Table | Primary Key |
---|---|---|
FK_WFApprovalCommands_WFApprovalDefinitions | WFApprovalCommands | PK_WFApprovalDefinitions |
FK_WFAvaiblePaths_WFApprovalDefinitions | WFAvaiblePaths | PK_WFApprovalDefinitions |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_WFApprovalDefinitions | Yes | Yes | CLUSTERED | 100 |
UQ_WFApprovalDefinitions_Guid | Yes |   | NONCLUSTERED | 100 |
Description: | Table containing data for archived elements |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
WAE_ID | int | Yes |   |   | Identifier | |
WAE_WFDID | int |   |   |   | WFElement identifier | |
WAE_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
WAE_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
WAE_RowVersion | timestamp |   |   | Yes | Timestamp | |
WAE_ArchivedElement | varbinary(MAX) |   | Yes |   | Data of archived element | |
WAE_ArchivedHistory | varbinary(MAX) |   | Yes |   | Historical data of archived element |
Name | Foreign Table | Primary Key |
---|---|---|
FK_WFArchivedElementDatas_WFElements | WFArchivedElementDatas | PK_WFData |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_WFArchivedElementDatas | Yes | Yes | CLUSTERED | 100 |
Description: | Table contains form fields configuration in attachments. |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
ACN_ID | int | Yes |   |   | Identifier | |
ACN_DEFID | int |   |   |   | Related WFDefinitions identifier | |
ACN_WFSID | int |   | Yes |   | Related WFDataSources identifier | |
ACN_Prompt | varchar(50) |   | Yes |   | Attribute name | |
ACN_SelectOrCaml | varchar(MAX) |   | Yes |   | Query performed on a given data source. Select or CAML | |
ACN_Config | varchar(MAX) |   | Yes |   | Configuration of WFAttachmentConfigs as XML | |
ACN_Description | varchar(3000) |   | Yes |   | Description | |
ACN_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
ACN_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
ACN_InsertedBy | varchar(255) |   | Yes |   | Author | |
ACN_UpdatedBy | varchar(255) |   | Yes |   | Last modifier | |
ACN_RowVersion | timestamp |   |   | Yes | Timestamp | |
ACN_PromptStyle | varchar(1000) |   | Yes |   | Prompt style | |
ACN_ControlStyle | varchar(1000) |   | Yes |   | Control style | |
ACN_AddFormLink | varchar(1000) |   | Yes |   | Form link | |
ACN_JavaScriptOnChange | varchar(MAX) |   | Yes |   | Javascript on change item | |
ACN_DocumentationDescription | varchar(500) |   | Yes |   | Documentation description | |
ACN_FADID | int |   |   |   | Field att details ID | |
ACN_SetDefaultValueAlsoOnPostback | bit |   |   |   | ((0)) | Column defines if default value should be set on postback |
ACN_FieldAttachmentTypeID | int |   |   |   | Field attachment type ID | |
ACN_Guid | varchar(36) |   |   |   | Entry unique identifier for import export mechanism | |
ACN_ExpandDefaultGroup | bit |   |   |   | ((0)) | Column defines if default attachments' group should be always expanded. |
ACN_DefaultValueBRDID | int |   | Yes |   | Foreign key to business rule defining attachments configuration default value | |
ACN_WFCID | int |   | Yes |   | Stores data connection id | |
ACN_DataSourceFilterBRDID | int |   | Yes |   | Foreign key to business rule defining a data source filter |
Name | Foreign Table | Primary Key |
---|---|---|
FK_WFAttachmentConfigs_WFBusinessRuleDefinitions_DataSourceFilterBRDID | WFAttachmentConfigs | PK_WFBusinessRuleDefinitions |
FK_WFAttachmentConfigs_WFBusinessRuleDefinitions_DefaultValueBRDID | WFAttachmentConfigs | PK_WFBusinessRuleDefinitions |
FK_WFAttachmentConfigs_WFDefinitions | WFAttachmentConfigs | PK_WFDefinitions |
FK_WFAttachmentConfigs_WFDataConnections | WFAttachmentConfigs | PK_WFDataConnections |
FK_WFAttachmentConfigs_WFDataSources | WFAttachmentConfigs | PK_WFDataSources |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_WFAttachmentsConfigs | Yes | Yes | CLUSTERED | 100 |
UQ_WFAttachmentConfigs_Guid | Yes |   | NONCLUSTERED | 100 |
IX_WFAttachmentConfigs_ACN_DEFID |   |   | NONCLUSTERED | 100 |
Description: | Table contains list of attachments databases connected to current content database. Attachment databases store attachments binary data. |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
ADB_ID | int | Yes |   |   | Identifier | |
ADB_Name | varchar(128) |   |   |   | Name of the attachment database | |
ADB_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
ADB_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
ADB_RowVersion | timestamp |   |   | Yes | Timestamp |
Name | Foreign Table | Primary Key |
---|---|---|
FK_WFElements_WFAttachmentDatabases_ADBID | WFElements | PK_AttachmentDatabases |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_AttachmentDatabases | Yes | Yes | CLUSTERED | 100 |
UQ_WFAttachmentDatabases_Name | Yes |   | NONCLUSTERED | 100 |
Description: | Contains binary data about attachments. Stores all versions of attachments. The table is held in main WEBCON BPS database and in attachment databases. |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
ATF_ID | int | Yes |   |   | Identifier | |
ATF_WFDID | int |   | Yes |   | Workflow instance identifier which refers to a row in WFElements table | |
ATF_ATTID | int |   |   |   | Attachment metadata identifier which refers to a row in WFDataAttachmets table | |
ATF_FileType | varchar(20) |   |   |   | ('pdf') | File type |
ATF_Value | image(2147483647) |   | Yes |   | AttachmentFile value | |
ATF_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
ATF_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
ATF_CreatedBy | varchar(255) |   | Yes |   | Author | |
ATF_UpdatedBy | varchar(255) |   | Yes |   | Last modifier | |
ATF_RowVersion | timestamp |   |   | Yes | Timestamp | |
ATF_IsDeleted | bit |   |   |   | ((0)) | A flag indicating whether the row is deleted |
ATF_Version | int |   |   |   | ((0)) | AttachmentFile version |
ATF_AttachmentImage | image(2147483647) |   | Yes |   | Attachment image | |
ATF_FlexiData | varchar(MAX) |   | Yes |   | Flexi data | |
ATF_AttributesMapping | varchar(MAX) |   | Yes |   | Attributes mapping | |
ATF_OrginalValueHash | binary(32) |   | Yes |   | Original value hash | |
ATF_OrginalName | varchar(255) |   | Yes |   | Attachment origianl name | |
ATF_FRData | varchar(MAX) |   | Yes |   | FineReader data |
Name | Foreign Table | Primary Key |
---|
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_WFAttachmentFiles | Yes | Yes | CLUSTERED | 100 |
IX_WFAttachmentFiles_ATTID |   |   | NONCLUSTERED | 100 |
IX_WFAttachmentFiles_WFDID |   |   | NONCLUSTERED | 0 |
IX_WFAttachmentFiles_OrginalValueHash_OrginalName |   |   | NONCLUSTERED | 100 |
Description: | Contains definitions of all avaliable paths bettwen steps with information where certain path leads and what is paths configuration. |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
PATH_ID | int | Yes |   |   | Identifier | |
PATH_Name | varchar(50) |   |   |   | Form name | |
PATH_Description | varchar(MAX) |   | Yes |   | Form description | |
PATH_STPID | int |   |   |   | Identifier of a step related with a given form | |
PATH_SubmitJScript | varchar(MAX) |   | Yes |   | The content of a script which will be executed at the end of working on the form. Used to set a field informing to which step we are going | |
PATH_NextSTPID | int |   | Yes |   | Identifier of a next step related with a given form | |
PATH_FinishOtherTaskTypeID | int |   |   |   | ((2)) | 0 - default no action ; 1 - FinishAllOthers ; 2 - CancelAllOthers |
PATH_IsDynamicAssign | bit |   |   |   | ((0)) | Is dynamic assign of task (true/false) |
PATH_AssignCONFID | int |   | Yes |   | Related WFConfigurations identifier | |
PATH_AssignColName | varchar(50) |   | Yes |   | Dynamic assignment of tasks - column name | |
PATH_IsDynamicAssignDW | bit |   |   |   | ((0)) | Is dynamic assign of task CC (true/false) |
PATH_AssignDWCONFID | int |   | Yes |   | Related WFConfigurations identifier | |
PATH_AssignDWColName | varchar(50) |   | Yes |   | Dynamic assignment of tasks CC - column name | |
PATH_SendStandardEmails | bit |   |   |   | ((1)) | An e-mail (alert) will be sent to the assigned person and CC. If an updating person = assigned person, the e-mail will not be sent. |
PATH_SendStandardEmailsDW | bit |   |   |   | ((1)) | An e-mail (alert) will be sent to the CC users. If an updating person = cc person, the e-mail will not be sent. |
PATH_RestrictedToUsers | varchar(2000) |   | Yes |   | Availability restriction on report | |
PATH_IsBackAction | bit |   |   |   | ((0)) | Back action selected |
PATH_ControlType | int |   |   |   | ((0)) | Step path control type e.g. author = 6 |
PATH_AssigType | int |   |   |   | ((0)) | Task parallelism – All or Any user |
PATH_CausesValidation | bit |   |   |   | ((1)) | Causes validation |
PATH_TaskName | varchar(255) |   | Yes |   | The name of the task | |
PATH_TaskDescription | varchar(MAX) |   | Yes |   | Description of the task | |
PATH_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
PATH_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
PATH_RowVersion | timestamp |   |   | Yes | Timestamp | |
PATH_Order | int |   |   |   | ((0)) | Defines the order of displaying buttons with transition paths |
PATH_StayInEditForm | bit |   |   |   | ((0)) | Stay in edit form - true/false |
PATH_MarkCurrentStepAsCompleted | bit |   |   |   | ((1)) | Mark current step as completed - true/false |
PATH_CreateDWInformationTask | bit |   |   |   | ((0)) | Specifies if the newly created CC assignments should allow editing and task execution (1 = yes, 0 = read only) |
PATH_DesignerData | nvarchar(MAX) |   | Yes |   | Data stored by the graphic workflow designer | |
PATH_IsDefault | bit |   |   |   | ((0)) | Current path is default (true/false) |
PATH_Guid | varchar(36) |   |   |   | (newid()) | Entry unique identifier for import export mechanism |
PATH_ShowInDiagram | bit |   |   |   | ((1)) | |
PATH_ButtonStyle | varchar(1000) |   | Yes |   | Button style e.g. color, background-color | |
PATH_IsQuickPath | bit |   |   |   | ((0)) | Quick path (true/false) |
PATH_MinFinishedTasksModeId | int |   |   |   | ((1)) | Required number of completed tasks to proceed to the next step |
PATH_MinFinishedTasks | int |   |   |   | ((1)) | Minimum number of completed tasks to proceed to the next step |
PATH_MinFinishedTasksPercent | int |   |   |   | ((1)) | Minimum number of completed tasks to proceed to the next step – percentage value |
PATH_ApprovalCommandID | int |   | Yes |   | Related WFApprovalDefinitions identifier | |
PATH_IsMailApprovalEnabled | bit |   |   |   | ((0)) | Enable mail approval (true/false) |
PATH_ControlTypeDW | int |   |   |   | ((0)) | Step path control type CC e.g. author = 6 |
PATH_AllowCover | bit |   |   |   | ((1)) | Allow cover (true/false) |
PATH_CommentRequired | bit |   |   |   | ((0)) | Comment required (true/false) |
PATH_PredefinedAsgnEnabled | bit |   |   |   | ((0)) | Assignment of tasks is predefined |
PATH_ConstAsgnEnabled | bit |   |   |   | ((0)) | Assignment of tasks (Business rule) is enabled |
PATH_PredefinedAsgnEnabledDW | bit |   |   |   | ((0)) | Assignment of tasks CC is predefined |
PATH_ConstAsgnEnabledDW | bit |   |   |   | ((0)) | Assignment of tasks CC (Business rule) is enabled |
PATH_PredefinedAsgnCovers | bit |   |   |   | ((1)) | Predefined covers CC (true/false) |
PATH_ConstAsgnCovers | bit |   |   |   | ((1)) | Enable substitutions CC (true/false) |
PATH_PredefinedAsgnCoversDW | bit |   |   |   | ((1)) | |
PATH_ConstAsgnCoversDW | bit |   |   |   | ((1)) | |
PATH_AllowCoverDW | bit |   |   |   | ((1)) | Allow cover CC (true/false) |
PATH_TemplateID | int |   | Yes |   | Path type | |
PATH_DocumentationDescription | varchar(MAX) |   | Yes |   | Description of the path for documentation | |
PATH_LineNumber | int |   |   |   | ((1)) | Line number where transition path button will be displayed |
PATH_IsVisibleBRDID | int |   | Yes |   | Path is visible business rule ID | |
PATH_OnSubmitUxBRDID | int |   | Yes |   | Foreign key to ux business rule defining a javascript function to be executed on submit | |
PATH_AssignmentsBRDID | int |   | Yes |   | Path assignments business rule ID | |
PATH_AssignmentsDWBRDID | int |   | Yes |   | Path cc assignments business rule ID | |
PATH_DeskRestrictions | varchar(MAX) |   | Yes |   | Path restrictions for designer desk | |
PATH_AUTMID | int |   | Yes |   | Automation ID | |
PATH_DeskTaskAssignment | varchar(MAX) |   | Yes |   | JSON containing description of the business rule used to determine to which users tasks will be assigned and task assignement type. Used only in Designer Desk projects. | |
PATH_AuthorizationType | int |   |   |   | ((0)) | Authorization type: 0 - None, 1 - Periodically required, 2 - Always require |
PATH_LocationRequired | bit |   |   |   | ((0)) | require location while using path |
PATH_SendPush | bit |   |   |   | ((0)) | Send PUSH notification |
PATH_SendPushDW | bit |   |   |   | ((0)) | Send PUSH notification for CC person |
Name | Foreign Table | Primary Key |
---|---|---|
FK_WFAvaiblePaths_WFApprovalDefinitions | WFAvaiblePaths | PK_WFApprovalDefinitions |
FK_WFAvaiblePaths_WFConfigurations | WFAvaiblePaths | PK_WFConfigurations |
FK_WFAvaiblePaths_WFConfigurations1 | WFAvaiblePaths | PK_WFConfigurations |
FK_WFAvaiblePaths_WFBusinessRuleDefinitions_AssignmentsBRDID | WFAvaiblePaths | PK_WFBusinessRuleDefinitions |
FK_WFAvaiblePaths_WFBusinessRuleDefinitions_AssignmentsDWBRDID | WFAvaiblePaths | PK_WFBusinessRuleDefinitions |
FK_WFAvaiblePaths_Automations | WFAvaiblePaths | PK_Automations |
FK_WFAvaiblePaths_WFBusinessRuleDefinitions_IsVisibleBRDID | WFAvaiblePaths | PK_WFBusinessRuleDefinitions |
FK_WFAvaiblePaths_WFSteps_NextStep | WFAvaiblePaths | PK_WFSteps |
FK_WFAvaiblePaths_WFBusinessRuleDefinitions_OnSubmitUxBRDID | WFAvaiblePaths | PK_WFBusinessRuleDefinitions |
FK_WFAvaiblePaths_WFSteps | WFAvaiblePaths | PK_WFSteps |
FK_FormPathAssocs_WFAvaiblePaths | FormPathAssocs | PK_WFAvaiblePaths |
FK_HotFolders_WFAvaiblePaths | HotFolders | PK_WFAvaiblePaths |
FK_HotMailBoxs_WFAvaiblePaths | HotMailBoxs | PK_WFAvaiblePaths |
FK_TilesConfigurations_WFAvaiblePaths | TilesConfigurations | PK_WFAvaiblePaths |
FK_WFActions_WFAvaiblePaths | WFActions | PK_WFAvaiblePaths |
FK_WFApprovalCommands_WFAvaiblePaths | WFApprovalCommands | PK_WFAvaiblePaths |
FK_WFTimeouts_ErrorPATHID_WFAvaiblePaths | WFTimeouts | PK_WFAvaiblePaths |
FK_WFTimeouts_WFAvaiblePaths | WFTimeouts | PK_WFAvaiblePaths |
FK_WFTimeouts_ValidationErrorPATHID_WFAvaiblePaths | WFTimeouts | PK_WFAvaiblePaths |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_WFAvaiblePaths | Yes | Yes | CLUSTERED | 100 |
UQ_WFAvaiblePaths_Guid | Yes |   | NONCLUSTERED | 100 |
IX_WFAvaiblePaths_PATH_STPID |   |   | NONCLUSTERED | 100 |
Description: | Table contains bussines rules definitions |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
BRD_ID | int | Yes |   |   | Business rule ID | |
BRD_DEFID | int |   | Yes |   | ID of WFDefinition that business rule belongs to | |
BRD_Name | varchar(255) |   | Yes |   | Bussines rule name | |
BRD_Documentation | varchar(MAX) |   | Yes |   | Business rule description | |
BRD_Value | varchar(MAX) |   |   |   | ('') | Business rule value |
BRD_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Insert date. |
BRD_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
BRD_RowVersion | timestamp |   |   | Yes | Row version | |
BRD_Guid | varchar(36) |   |   |   | (newid()) | Global unique ID |
BRD_GroupID | int |   | Yes |   | Related business rules group id | |
BRD_WFSID | int |   | Yes |   | ID of WFDataSource that belongs to business rule | |
BRD_ReturnedValueType | int |   |   |   | ((1)) | Business rule returned value type |
BRD_EditModeType | int |   |   |   | ((1)) | Business rule edit mode type |
BRD_IsLocal | bit |   |   |   | ((0)) | Is business rule local |
BRD_DataSourceColumn | varchar(MAX) |   | Yes |   | Column for custom DataSource | |
BRD_People | varchar(MAX) |   | Yes |   | Store people list for rules that use it | |
BRD_PluginID | int |   | Yes |   | Stores plugin id for SDK Rules | |
BRD_PluginConfig | varchar(MAX) |   | Yes |   | Stores plugin xml configuration for SDK Rules | |
BRD_RuleType | int |   |   |   | ((1)) | Business rule type |
BRD_BRDID | int |   | Yes |   | Foreign key to parent rule | |
BRD_WFCID | int |   | Yes |   | Stores data connection id | |
BRD_DataSourceResultRowsMode | int |   |   |   | ((1)) | Business rule behaviour mode on many rows return |
BRD_BasicDesignerJson | varchar(MAX) |   | Yes |   | Basic rule design serialized to JSON |
Name | Foreign Table | Primary Key |
---|---|---|
FK_WFBusinessRuleDefinitions_WFBusinessRuleDefinitions | WFBusinessRuleDefinitions | PK_WFBusinessRuleDefinitions |
FK_WFBusinessRuleDefinitions_WFDefinitions | WFBusinessRuleDefinitions | PK_WFDefinitions |
FK_WFBusinessRuleDefinitions_DicBusinessRulesEditModeTypes | WFBusinessRuleDefinitions | PK_DicBusinessRulesEditModeTypes |
FK_WFBusinessRuleDefinitions_WFBusinessRulesGroups | WFBusinessRuleDefinitions | PK_WFBusinessRulesGroups |
FK_WFBusinessRuleDefinitions_WFPlugIns | WFBusinessRuleDefinitions | PK_WFPlugIns |
FK_WFBusinessRuleDefinitions_DicBusinessRulesReturnedValueTypes | WFBusinessRuleDefinitions | PK_DicBusinessRulesReturnedValueTypes |
FK_WFBusinessRuleDefinitions_DicBusinessRulesTypes | WFBusinessRuleDefinitions | PK_DicBusinessRulesTypes |
FK_WFBusinessRuleDefinitions_WFDataConnections | WFBusinessRuleDefinitions | PK_WFDataConnections |
FK_WFBusinessRuleDefinitions_WFDataSources | WFBusinessRuleDefinitions | PK_WFDataSources |
FK_AutomationBusinessRules_WFBusinessRuleDefinitions | AutomationBusinessRules | PK_WFBusinessRuleDefinitions |
FK_MassNotificationBusinessRules_WFBusinessRuleDefinitions | MassNotificationBusinessRules | PK_WFBusinessRuleDefinitions |
FK_PerformanceIndicators_WFBusinessRuleDefinitions | PerformanceIndicators | PK_WFBusinessRuleDefinitions |
FK_WFActionBusinessRules_WFBusinessRuleDefinitions | WFActionBusinessRules | PK_WFBusinessRuleDefinitions |
FK_WFActionButtons_WFBusinessRuleDefinitions_IsVisibleBRDID | WFActionButtons | PK_WFBusinessRuleDefinitions |
FK_WFActionButtons_WFBusinessRuleDefinitions_JsOnClickBRDID | WFActionButtons | PK_WFBusinessRuleDefinitions |
FK_WFActions_WFBusinessRuleDefinitions_ACT_ActivationBRDID | WFActions | PK_WFBusinessRuleDefinitions |
FK_WFAttachmentConfigs_WFBusinessRuleDefinitions_DataSourceFilterBRDID | WFAttachmentConfigs | PK_WFBusinessRuleDefinitions |
FK_WFAttachmentConfigs_WFBusinessRuleDefinitions_DefaultValueBRDID | WFAttachmentConfigs | PK_WFBusinessRuleDefinitions |
FK_WFAvaiblePaths_WFBusinessRuleDefinitions_AssignmentsBRDID | WFAvaiblePaths | PK_WFBusinessRuleDefinitions |
FK_WFAvaiblePaths_WFBusinessRuleDefinitions_AssignmentsDWBRDID | WFAvaiblePaths | PK_WFBusinessRuleDefinitions |
FK_WFAvaiblePaths_WFBusinessRuleDefinitions_IsVisibleBRDID | WFAvaiblePaths | PK_WFBusinessRuleDefinitions |
FK_WFAvaiblePaths_WFBusinessRuleDefinitions_OnSubmitUxBRDID | WFAvaiblePaths | PK_WFBusinessRuleDefinitions |
FK_WFBusinessRuleDefinitions_WFBusinessRuleDefinitions | WFBusinessRuleDefinitions | PK_WFBusinessRuleDefinitions |
FK_WFBusinessRuleParameters_WFBusinessRuleDefinition | WFBusinessRuleParameters | PK_WFBusinessRuleDefinitions |
FK_WFConfigurationBusinessRules_WFBusinessRuleDefinitions | WFConfigurationBusinessRules | PK_WFBusinessRuleDefinitions |
FK_WFConfigurations_WFBusinessRuleDefinitions_DataSourceFilterBRDID | WFConfigurations | PK_WFBusinessRuleDefinitions |
FK_WFConfigurations_WFBusinessRuleDefinitions_DefaultBRDID | WFConfigurations | PK_WFBusinessRuleDefinitions |
FK_WFConfigurations_WFBusinessRuleDefinitions_EditModeSqlBRDID | WFConfigurations | PK_WFBusinessRuleDefinitions |
FK_WFConfigurations_WFBusinessRuleDefinitions_IsRequiredSqlBRDID | WFConfigurations | PK_WFBusinessRuleDefinitions |
FK_WFConfigurations_WFBusinessRuleDefinitions_IsVisibleSqlBRDID | WFConfigurations | PK_WFBusinessRuleDefinitions |
FK_WFConfigurations_WFBusinessRuleDefinitions_JsOnValueChangeBRDID | WFConfigurations | PK_WFBusinessRuleDefinitions |
FK_WFDataSources_WFBusinessRuleDefinitions | WFDataSources | PK_WFBusinessRuleDefinitions |
FK_WFDefinitions_WFBusinessRuleDefinitions_SharingExpirationTimeBRDID | WFDefinitions | PK_WFBusinessRuleDefinitions |
FK_WFDetailConfigBusinessRules_WFBusinessRuleDefinitions | WFDetailConfigBusinessRules | PK_WFBusinessRuleDefinitions |
FK_WFDetailConfigs_WFBusinessRuleDefinitions_DataSourceFilterBRDID | WFDetailConfigs | PK_WFBusinessRuleDefinitions |
FK_WFDetailConfigs_WFBusinessRuleDefinitions | WFDetailConfigs | PK_WFBusinessRuleDefinitions |
FK_WFDetailConfigs_WFBusinessRuleDefinitions_EditModeSqlBRDID | WFDetailConfigs | PK_WFBusinessRuleDefinitions |
FK_WFDetailConfigs_WFBusinessRuleDefinitions_IsRequiredSqlBRDID | WFDetailConfigs | PK_WFBusinessRuleDefinitions |
FK_WFDetailConfigs_WFBusinessRuleDefinitions_IsVisibleSqlBRDID | WFDetailConfigs | PK_WFBusinessRuleDefinitions |
FK_WFDetailConfigs_WFBusinessRuleDefinitions_JsOnValueChangeBRDID | WFDetailConfigs | PK_WFBusinessRuleDefinitions |
FK_WFStepFormFieldDetails_WFBusinessRuleDefinitions_DefaultBRDID | WFStepFormFieldDetails | PK_WFBusinessRuleDefinitions |
FK_WFStepFormFieldDetails_WFBusinessRuleDefinitions_EditModeSqlBRDID | WFStepFormFieldDetails | PK_WFBusinessRuleDefinitions |
FK_WFStepFormFieldDetails_WFBusinessRuleDefinitions_IsRequiredSqlBRDID | WFStepFormFieldDetails | PK_WFBusinessRuleDefinitions |
FK_WFStepFormFieldDetails_WFBusinessRuleDefinitions_IsVisibleSqlBRDID | WFStepFormFieldDetails | PK_WFBusinessRuleDefinitions |
FK_WFStepFormFieldDetails_WFBusinessRuleDefinitions_JsOnValueChangeBRDID | WFStepFormFieldDetails | PK_WFBusinessRuleDefinitions |
FK_WFStepFormFields_WFBusinessRuleDefinitions_FLD_DefaultBRDID | WFStepFormFields | PK_WFBusinessRuleDefinitions |
FK_WFStepFormFields_WFBusinessRuleDefinitions_EditModeSqlBRDID | WFStepFormFields | PK_WFBusinessRuleDefinitions |
FK_WFStepFormFields_WFBusinessRuleDefinitions_IsRequiredSqlBRDID | WFStepFormFields | PK_WFBusinessRuleDefinitions |
FK_WFStepFormFields_WFBusinessRuleDefinitions_IsVisibleSqlBRDID | WFStepFormFields | PK_WFBusinessRuleDefinitions |
FK_WFStepFormFields_WFBusinessRuleDefinitions_JsOnValueChangeBRDID | WFStepFormFields | PK_WFBusinessRuleDefinitions |
FK_WFStepForms_WFBusinessRuleDefinitions_JSOnLoadAndPostbackBRDID | WFStepForms | PK_WFBusinessRuleDefinitions |
FK_WFStepForms_WFBusinessRuleDefinitions_JSOnLoadBRDID | WFStepForms | PK_WFBusinessRuleDefinitions |
FK_WFStepForms_WFBusinessRuleDefinitions_MobileJsOnLoadBRDID | WFStepForms | PK_WFBusinessRuleDefinitions |
FK_WFSteps_WFBusinessRuleDefinitions_BranchConditionBRDID | WFSteps | PK_WFBusinessRuleDefinitions |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_WFBusinessRuleDefinitions | Yes | Yes | CLUSTERED | 100 |
IX_WFBusinessRuleDefinitions_DEFID |   |   | NONCLUSTERED | 100 |
UQ_WFBusinessRuleDefinitions_Guid | Yes |   | NONCLUSTERED | 100 |
IX_WFBusinessRuleDefinitions_BRD_PluginID |   |   | NONCLUSTERED | 100 |
Description: | Table contains business rule parameters definitions |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
BRP_ID | int | Yes |   |   | Business rule parameter ID | |
BRP_RuleID | int |   |   |   | Business rule parameter related business rule id | |
BRP_Name | varchar(255) |   |   |   | Business rule parameter name | |
BRP_Documentation | varchar(MAX) |   | Yes |   | Business rule parameter description | |
BRP_Type | int |   |   |   | ((1)) | Business rule parameter type |
BRP_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Insert date. |
BRP_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
BRP_RowVersion | timestamp |   |   | Yes | Row version | |
BRP_Guid | varchar(36) |   |   |   | (newid()) | Global unique ID |
Name | Foreign Table | Primary Key |
---|---|---|
FK_WFBusinessRuleParameters_WFBusinessRuleDefinition | WFBusinessRuleParameters | PK_WFBusinessRuleDefinitions |
FK_WFBusinessRuleParameters_DicBusinessRulesReturnedValueTypes | WFBusinessRuleParameters | PK_DicBusinessRulesReturnedValueTypes |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_WFBusinessRuleParameters | Yes | Yes | CLUSTERED | 100 |
IX_WFBusinessRuleParameters_RuleID |   |   | NONCLUSTERED | 100 |
UQ_WFBusinessRuleParameters_Guid | Yes |   | NONCLUSTERED | 100 |
Description: | Table contains business rules group definitions |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
BRG_ID | int | Yes |   |   | Business rules group ID | |
BRG_DEFID | int |   | Yes |   | ID of WFDefinition that business rules group belongs to | |
BRG_Name | varchar(255) |   |   |   | Business rules group name | |
BRG_Description | varchar(MAX) |   | Yes |   | Business rules group description | |
BRG_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Insert date. |
BRG_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
BRG_RowVersion | timestamp |   |   | Yes | Row version | |
BRG_Guid | varchar(36) |   |   |   | (newid()) | Global unique ID |
BRG_IsUx | bit |   |   |   | ((0)) | Is ux business rules group |
Name | Foreign Table | Primary Key |
---|---|---|
FK_WFBusinessRulesGroups_WFDefinitions | WFBusinessRulesGroups | PK_WFDefinitions |
FK_WFBusinessRuleDefinitions_WFBusinessRulesGroups | WFBusinessRuleDefinitions | PK_WFBusinessRulesGroups |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_WFBusinessRulesGroups | Yes | Yes | CLUSTERED | 100 |
IX_WFBusinessRulesGroups_DEFID |   |   | NONCLUSTERED | 100 |
UQ_WFBusinessRulesGroups_Guid | Yes |   | NONCLUSTERED | 100 |
Description: | Business rules used in attributes configurations |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
CBR_ID | int | Yes |   |   | Identifier | |
CBR_WFCONID | int |   |   |   | Attribute identifier | |
CBR_BRDID | int |   |   |   | Business rule identifier | |
CBR_PropertyID | int |   |   |   | Attribute configuration property identifier | |
CBR_PropertyOrder | int |   | Yes |   | Attribute configuration property order | |
CBR_Guid | varchar(36) |   |   |   | (newid()) | Global unique ID |
CBR_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
CBR_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
CBR_RowVersion | timestamp |   |   | Yes | Timestamp |
Name | Foreign Table | Primary Key |
---|---|---|
FK_WFConfigurationBusinessRules_WFBusinessRuleDefinitions | WFConfigurationBusinessRules | PK_WFBusinessRuleDefinitions |
FK_WFConfigurationBusinessRules_WFConfigurations | WFConfigurationBusinessRules | PK_WFConfigurations |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_WFConfigurationBusinessRules | Yes | Yes | CLUSTERED | 100 |
UQ_WFConfigurationBusinessRules_Guid | Yes |   | NONCLUSTERED | 100 |
IX_WFConfigurationBusinessRules_CBR_WFCONID |   |   | NONCLUSTERED | 100 |
IX_WFConfigurationBusinessRules_CBR_BRDID |   |   | NONCLUSTERED | 100 |
Description: | List of permissions dependent on configuration |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
CSC_ID | int | Yes |   |   | Identifier | |
CSC_LevelID | int |   |   |   | Id of security level | |
CSC_IsDomainGroup | bit |   |   |   | ((0)) | Is entity domain group |
CSC_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Date of row insertion |
CSC_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Date of row update |
CSC_RowVersion | timestamp |   |   | Yes | Row version | |
CSC_Guid | varchar(36) |   |   |   | (newid()) | Entry unique identifier for import export mechanism |
CSC_IsGlobal | bit |   |   |   | ((0)) | Is entry defining global security |
CSC_USERGUID | varchar(250) |   |   |   | User login | |
CSC_UserLoginName | varchar(250) |   | Yes |   | User login | |
CSC_UserName | varchar(100) |   | Yes |   | User display name | |
CSC_APPID | int |   | Yes |   | Stores app id if security entry applies to application | |
CSC_ASTID | int |   | Yes |   | Foreign key to AppStarts table | |
CSC_ARPID | int |   | Yes |   | Foreign key to AppReports table | |
CSC_ADSID | int |   | Yes |   | Foreign key to AppDashboards table | |
CSC_AEDID | int |   | Yes |   | Foreign key to AppExploreDefinitions table | |
CSC_NBIID | int |   | Yes |   | Foreign key to table NavBarItems |
Name | Foreign Table | Primary Key |
---|---|---|
FK_WFConfigurationSecurities_AppDashboards | WFConfigurationSecurities | PK_AppDashboards |
FK_WFConfigurationSecurities_AppExploreDefinitions | WFConfigurationSecurities | PK_AppExploreDefinitions |
FK_WFConfigurationSecurities_WFApplications | WFConfigurationSecurities | PK_WFApplications |
FK_WFConfigurationSecurities_AppReports | WFConfigurationSecurities | PK_AppReports |
FK_WFConfigurationSecurities_AppStarts | WFConfigurationSecurities | PK_AppStarts |
FK_WFConfigurationSecurities_DicConfigurationSecurityLevels | WFConfigurationSecurities | PK_DicConfigurationSecurityLevel |
FK_WFConfigurationSecurities_NavBarItems | WFConfigurationSecurities | PK_NavBarItems |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_WFConfigurationSecurities | Yes | Yes | CLUSTERED | 100 |
IX_WFConfigurationSecurities_LevelID |   |   | NONCLUSTERED | 100 |
IX_WFConfigurationSecurities_IsGlobal_LevelID |   |   | NONCLUSTERED | 100 |
UQ_WFConfigurationSecurities_Guid | Yes |   | NONCLUSTERED | 100 |
IX_WFConfigurationSecurities_CSC_ARPID |   |   | NONCLUSTERED | 100 |
IX_WFConfigurationSecurities_CSC_ADSID |   |   | NONCLUSTERED | 100 |
IX_WFConfigurationSecurities_CSC_ASTID |   |   | NONCLUSTERED | 100 |
IX_WFConfigurationSecurities_CSC_APPID |   |   | NONCLUSTERED | 100 |
IX_WFConfigurationSecurities_CSC_NBIID |   |   | NONCLUSTERED | 100 |
Description: | Contains configuration of form fields for every single process. |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
WFCON_ID | int | Yes |   |   | Identifier | |
WFCON_FDEFID | int |   |   |   | Relation to the field definition. For example to the WFD_AttText1 form field from WFFieldDefinition table | |
WFCON_DEFID | int |   |   |   | Relation to the workflow definition | |
WFCON_WFSID | int |   | Yes |   | Data source identifier of a form field | |
WFCON_PLUID | int |   | Yes |   | Related WFPlugIns identifier | |
WFCON_Prompt | varchar(50) |   |   |   | Default field prompt | |
WFCON_Description | varchar(MAX) |   | Yes |   | Description | |
WFCON_SelectOrCaml | varchar(MAX) |   | Yes |   | Query performed on a given data source. Select or CAML | |
WFCON_DefaultSelect | varchar(255) |   | Yes |   | Query performed on a given data source that returns an element that is a default value (2nd stage) | |
WFCON_DefaultOrder | int |   | Yes |   | Defines the default order of displaying attributes | |
WFCON_AdditionalHTMLAttrib | text |   | Yes |   | Additional HTML code for the attribute | |
WFCON_IsMultiValue | bit |   |   |   | ((0)) | Information if the field allows selection of multiple values – Individual values will be separated by semicolons |
WFCON_AddInCode | varchar(250) |   | Yes |   | Field name that will be mapeed in ADDIn: WFID WFName1 WFName2 WFStreet WFCode WFCity WFCountry WFNIP | |
WFCON_Config | varchar(MAX) |   | Yes |   | Field defining whether after selecting a given element from the choice list other fields on the form should be updated. Example: after selecting the “recipient” field, the address data should also display on the form. | |
WFCON_AutoPostBack | bit |   |   |   | ((0)) | Generate AutoPostback control |
WFCON_PromptStyle | varchar(1000) |   | Yes |   | Prompt style | |
WFCON_ControlStyle | varchar(1000) |   | Yes |   | Control style | |
WFCON_AddInControl | varchar(500) |   | Yes |   | Item list control | |
WFCON_RestrictedRead | varchar(2000) |   | Yes |   | Restricted read for users | |
WFCON_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
WFCON_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
WFCON_RowVersion | timestamp |   |   | Yes | Timestamp | |
WFCON_SetDefaultValueAlsoOnPostback | bit |   |   |   | ((0)) | Information if default value should also be set on postbacks |
WFCON_ShowInTaskList | bit |   |   |   | ((0)) | Column defines if task show in the list |
WFCON_ValidationExpression | varchar(MAX) |   | Yes |   | Regular expression to validate the text fields on the form | |
WFCON_Guid | varchar(36) |   |   |   | (newid()) | Entry unique identifier for import export mechanism |
WFCON_ValidationExpressionErrorMessage | nvarchar(255) |   | Yes |   | Message content in the case of incorrect data validation | |
WFCON_ShowAsHtmlInReadOnlyMode | bit |   |   |   | ((0)) | If the form field should be displayed in read-only mode (as an HTML field) |
WFCON_DocumentationDescription | varchar(MAX) |   | Yes |   | Documentation description | |
WFCON_FieldTypeID | int |   |   |   | ((1)) | Related DicWFFieldTypes identifier |
WFCON_IsArchival | bit |   |   |   | ((0)) | Information if the attribute is archival |
WFCON_IsTechnical | bit |   |   |   | ((0)) | Information if the attribute is technical |
WFCON_RestrictedVisibility | varchar(1000) |   | Yes |   | Restricted visibility for users | |
WFCON_FlexiVerificationMode | int |   |   |   | ((3)) | Flexi verification mode |
WFCON_TemplateID | int |   |   |   | ((1)) | Related DicConfigurationTemplates identifier |
WFCON_HistoryIgnoreSQLVisibilityRestrictions | bit |   |   |   | ((0)) | Ignore SQL visibility restrictions - history |
WFCON_ShowInMobile | bit |   |   |   | ((1)) | Information if the attribute is available on the mobile device |
WFCON_ReportsIgnoreSQLVisibilityRestrictions | bit |   |   |   | ((0)) | Ignore SQL visibility restrictions - reports |
WFCON_GroupID | int |   | Yes |   | Related WFConfigurations identifier. ID of superior group | |
WFCON_GroupOrder | int |   | Yes |   | Order of displaying group | |
WFCON_BreakGlobalConfigurationInheritance | bit |   |   |   | ((0)) | Break global configuraion inheritance |
WFCON_GlobalFieldWFCON_ID | int |   | Yes |   | Related WFConfigurations identifier | |
WFCON_ChoiceFieldType | int |   |   |   | ((1)) | Foreign key to choice field subtype dictionary |
WFCON_DefaultBRDID | int |   | Yes |   | Related WFBusinessRuleDefinitions identifier | |
WFCON_IsSystemField | bit |   |   |   | ((0)) | Is system field |
WFCON_IsVisibleSqlBRDID | int |   | Yes |   | Is visible sql business rule ID | |
WFCON_EditModeSqlBRDID | int |   | Yes |   | Edit mode sql business rule ID | |
WFCON_IsRequiredSqlBRDID | int |   | Yes |   | Is required sql business rule ID | |
WFCON_HideInEmails | bit |   |   |   | ((0)) | If attribute should be hidden in emails |
WFCON_JsOnValueChangeBRDID | int |   | Yes |   | Foreign key to ux business rule defining a javascript function to be executed on value change | |
WFCON_WFCID | int |   | Yes |   | Stores data connection id | |
WFCON_DataSourceFilterBRDID | int |   | Yes |   | Foreign key to business rule defining a data source filter | |
WFCON_PersonalData_DEFID | int |   | Yes |   | Foreign key to WFDefinitions table | |
WFCON_PersonalData_WFSID | int |   | Yes |   | Foreign key to WFDataSources table | |
WFCON_PersonalData_WFCONID | int |   | Yes |   | Foreign key to WFConfigurations table | |
WFCON_PersonalDataType | int |   | Yes |   | Foreign key to DicPersonalDataTypes table | |
WFCON_PersonalDataCleaningMode | int |   |   |   | ((2)) | Foreign key to DicPersonalDataCleaningModes table |
WFCON_PersonalDataShouldCleanHistory | bit |   |   |   | ((1)) | Indicates if personal data cleaning action should also clean history versions |
WFCON_PluginConfig | varchar(MAX) |   | Yes |   | Plugin configuration | |
WFCON_AiAnalysisMode | int |   |   |   | ((1)) | Defines mode of AI analysis |
WFCON_IsSolrIndexed | bit |   |   |   | ((1)) | Is indexed in SOLR |
WFCON_DeskConfiguration | varchar(MAX) |   | Yes |   | Temporary configuration field for designer desk | |
WFCON_HtmlInputPlaceholder | varchar(MAX) |   | Yes |   | Input placeholder | |
WFCON_HtmlInputAttributes | varchar(MAX) |   | Yes |   | Html input attributes | |
WFCON_DeskBusinessRulesGenerationData | varchar(MAX) |   | Yes |   | Data for generating business rules in Designer Desk | |
WFCON_OverridenSort | varchar(MAX) |   | Yes |   | JSON configuration used for sorting data in Data Sources | |
WFCON_ShowQRButton | bit |   |   |   | ((0)) | Determines whether the button Scan QR code will be visible next to the attribute |
WFCON_AuthorizationType | int |   |   |   | ((0)) | Authorization type: 0 - None, 1 - Periodically required, 2 - Always require |
Name | Foreign Table | Primary Key |
---|---|---|
FK_WFConfigurations_DicChoiceFieldTypes | WFConfigurations | PK_DicChoiceFieldTypes |
FK_WFConfigurations_WFBusinessRuleDefinitions_DataSourceFilterBRDID | WFConfigurations | PK_WFBusinessRuleDefinitions |
FK_WFConfigurations_WFBusinessRuleDefinitions_DefaultBRDID | WFConfigurations | PK_WFBusinessRuleDefinitions |
FK_WFConfigurations_WFDefinitions | WFConfigurations | PK_WFDefinitions |
FK_WFConfigurations_WFBusinessRuleDefinitions_EditModeSqlBRDID | WFConfigurations | PK_WFBusinessRuleDefinitions |
FK_WFConfigurations_WFFieldDefinitions | WFConfigurations | PK_WFFieldDefinitions |
FK_WFConfigurations_DicWFFieldTypes | WFConfigurations | PK_DicWFFieldTypes |
FK_WFConfigurations_WFConfigurations_GlobalFieldDef | WFConfigurations | PK_WFConfigurations |
FK_WFConfigurations_WFConfigurations_Group | WFConfigurations | PK_WFConfigurations |
FK_WFConfigurations_WFBusinessRuleDefinitions_IsRequiredSqlBRDID | WFConfigurations | PK_WFBusinessRuleDefinitions |
FK_WFConfigurations_WFBusinessRuleDefinitions_IsVisibleSqlBRDID | WFConfigurations | PK_WFBusinessRuleDefinitions |
FK_WFConfigurations_WFBusinessRuleDefinitions_JsOnValueChangeBRDID | WFConfigurations | PK_WFBusinessRuleDefinitions |
FK_WFConfigurations_WFDefinitions_PersonalData | WFConfigurations | PK_WFDefinitions |
FK_WFConfigurations_WFConfigurations_PersonalData | WFConfigurations | PK_WFConfigurations |
FK_WFConfigurations_WFDataSources_PersonalData | WFConfigurations | PK_WFDataSources |
FK_WFConfigurations_DicPersonalDataCleaningModes | WFConfigurations | PK_DicPersonalDataCleaningModes |
FK_WFConfigurations_DicPersonalDataTypes | WFConfigurations | PK_DicPersonalDataTypes |
FK_WFConfigurations_WFPlugIns | WFConfigurations | PK_WFPlugIns |
FK_WFConfigurations_DicConfigurationTemplates | WFConfigurations | PK_DicConfigurationTemplates |
FK_WFConfigurations_WFDataConnections | WFConfigurations | PK_WFDataConnections |
FK_WFConfigurations_WFDataSources | WFConfigurations | PK_WFDataSources |
FK_AttributeDocTypeAssocs_WFConfigurations | AttributeDocTypeAssocs | PK_WFConfigurations |
FK_ElementDisplayConfigs_WFConfigurations_Details1WfconId | ElementDisplayConfigs | PK_WFConfigurations |
FK_ElementDisplayConfigs_WFConfigurations_Details2WfconId | ElementDisplayConfigs | PK_WFConfigurations |
FK_ElementDisplayConfigs_WFConfigurations_Details3WfconId | ElementDisplayConfigs | PK_WFConfigurations |
FK_ElementDisplayConfigs_WFConfigurations_Details4WfconId | ElementDisplayConfigs | PK_WFConfigurations |
FK_ElementDisplayConfigs_WFConfigurations_Details5WfconId | ElementDisplayConfigs | PK_WFConfigurations |
FK_ElementDisplayConfigs_WFConfigurations_Heading1WfconId | ElementDisplayConfigs | PK_WFConfigurations |
FK_TilesMappings_WFConfigurations | TilesMappings | PK_WFConfigurations |
FK_WFAvaiblePaths_WFConfigurations | WFAvaiblePaths | PK_WFConfigurations |
FK_WFAvaiblePaths_WFConfigurations1 | WFAvaiblePaths | PK_WFConfigurations |
FK_WFConfigurationBusinessRules_WFConfigurations | WFConfigurationBusinessRules | PK_WFConfigurations |
FK_WFConfigurations_WFConfigurations_GlobalFieldDef | WFConfigurations | PK_WFConfigurations |
FK_WFConfigurations_WFConfigurations_Group | WFConfigurations | PK_WFConfigurations |
FK_WFConfigurations_WFConfigurations_PersonalData | WFConfigurations | PK_WFConfigurations |
FK_WFDefinitions_WFConfigurations_AttachmentsDatabaseWFCONID | WFDefinitions | PK_WFConfigurations |
FK_WFDetailConfigs_WFConfigurations | WFDetailConfigs | PK_WFConfigurations |
FK_WFElementDetails_WFConfigurations | WFElementDetails | PK_WFConfigurations |
FK_WFStepFormFields_WFConfigurations | WFStepFormFields | PK_WFConfigurations |
FK_WFTimeouts_WFConfigurations | WFTimeouts | PK_WFConfigurations |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_WFConfigurations | Yes | Yes | CLUSTERED | 100 |
UQ_WFConfigurations_Guid | Yes |   | NONCLUSTERED | 100 |
IX_WFConfigurations_Prompt_DEFID_TemplateID_FDEFID |   |   | NONCLUSTERED | 100 |
Description: | Contains attachement metadata like: name, description, added by, modified by, etc. |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
ATT_ID | int | Yes |   |   | Identifier | |
ATT_WFDID | int |   | Yes |   | Workflow instance identifier which refers to a row in WFElements table | |
ATT_Name | varchar(255) |   | Yes |   | DataAttachmet name | |
ATT_Value | image(2147483647) |   | Yes |   | Attachment (binary) | |
ATT_Description | varchar(500) |   | Yes |   | DataAttachmet description | |
ATT_IsSecret | bit |   | Yes |   | ((0)) | Is DataAttachmet secret |
ATT_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
ATT_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
ATT_CreatedBy | varchar(255) |   | Yes |   | Author | |
ATT_UpdatedBy | varchar(255) |   | Yes |   | Last modifier | |
ATT_RowVersion | timestamp |   |   | Yes | Timestamp | |
ATT_IsDeleted | bit |   |   |   | ((0)) | A flag indicating whether the row is deleted |
ATT_WriteHistory | bit |   |   |   | ((1)) | Should the history of the instance be saved |
ATT_FileType | varchar(20) |   |   |   | ('pdf') | Attachment file type |
ATT_FileIsOcr | int |   |   |   | ((0)) | Flag indicates whether attachment contains a text layer created in the BPS system |
ATT_OcrErrorCount | int |   |   |   | ((0)) | Number of errors on asynchronous OCR, or -1 if the service configuration doesn’t have a node associated to the process where the attachment is located |
ATT_FileVersion | int |   |   |   | ((0)) | Version of a file |
ATT_Attribute1 | varchar(1000) |   | Yes |   | Attachment attribute | |
ATT_IsBarcodeUnrecognized | bit |   | Yes |   | Determines if barcode was unrecognized | |
ATT_TypeID | int |   |   |   | ((0)) | Attachment type |
ATT_IsMailMessage | bit |   |   |   | ((0)) | Is mail message |
ATT_MessageTo | varchar(MAX) |   | Yes |   | Message to | |
ATT_MessageCc | varchar(MAX) |   | Yes |   | Message cc | |
ATT_MessageSubject | varchar(MAX) |   | Yes |   | Message subject | |
ATT_MessageFrom | varchar(MAX) |   | Yes |   | Message from | |
ATT_ContentLength | int |   | Yes |   | Content length | |
ATT_MessageSentDate | datetime |   | Yes |   | Column contains informations about date of sent message | |
ATT_MessageFromMail | varchar(MAX) |   | Yes |   | Mail message attachment sender mail | |
ATT_DEFID | int |   | Yes |   | Stores process identifier if element ID is null | |
ATT_MessageId | varchar(MAX) |   | Yes |   | Column contains mail message ID |
Name | Foreign Table | Primary Key |
---|---|---|
FK_WFDataAttachmets_WFData | WFDataAttachmets | PK_WFData |
FK_OcrAiLearnQueueItems_WFDataAttachmets | OcrAiLearnQueueItems | PK_WFDataAttachmets |
FK_OcrAiProjectsToAttachments_WFDataAttachmets | OcrAiProjectsToAttachments | PK_WFDataAttachmets |
FK_OcrAiQueueItems_WFDataAttachmets | OcrAiQueueItems | PK_WFDataAttachmets |
FK_PublishedAttachments_WFDataAttachments | PublishedAttachments | PK_WFDataAttachmets |
FK_TextLayerQueueItems_WFDataAttachmets | TextLayerQueueItems | PK_WFDataAttachmets |
FK_WebDavLocks_WFDataAttachmets_ATTID | WebDavLocks | PK_WFDataAttachmets |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_WFDataAttachmets | Yes | Yes | CLUSTERED | 100 |
IX_WFDataAttachmets_WFDID |   |   | NONCLUSTERED | 100 |
Description: | Contains definitions of all connections. |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
WFC_ID | int | Yes |   |   | Identifier | |
WFC_Name | varchar(50) |   |   |   | Connection name | |
WFC_Description | varchar(1000) |   | Yes |   | Connection description | |
WFC_Type | int |   |   |   | Connection type | |
WFC_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
WFC_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
WFC_RowVersion | timestamp |   |   | Yes | Timestamp | |
WFC_DetachInheritance_PROD | bit |   |   |   | ((0)) | Do a production environment using a different data source configuration. |
WFC_DetachInheritance_TEST | bit |   |   |   | ((0)) | Do a test environment using a different data source configuration. |
WFC_DetachInheritance_DEV | bit |   |   |   | ((0)) | Do a developer environment using a different data source configuration. |
WFC_WebServiceBinding | int |   | Yes |   | Binding for Web Service data source | |
WFC_WebServiceBinding_PROD | int |   | Yes |   | Binding for Web Service data source for production environment | |
WFC_WebServiceBinding_TEST | int |   | Yes |   | Binding for Web Service data source for test environment | |
WFC_WebServiceBinding_DEV | int |   | Yes |   | Binding for Web Service data source for developer environment | |
WFC_WebServiceKeepAlive | bit |   | Yes |   | Keep alive option for Web Service data source | |
WFC_WebServiceKeepAlive_PROD | bit |   | Yes |   | Keep alive option for Web Service data source for production environment | |
WFC_WebServiceKeepAlive_TEST | bit |   | Yes |   | Keep alive option for Web Service data source for test environment | |
WFC_WebServiceKeepAlive_DEV | bit |   | Yes |   | Keep alive option for Web Service data source for developer environment | |
WFC_WebServiceValidateHttpsCert | bit |   | Yes |   | Validate https cerificate option for Web Service data source | |
WFC_WebServiceValidateHttpsCert_PROD | bit |   | Yes |   | Validate https cerificate option for Web Service data source for production environment | |
WFC_WebServiceValidateHttpsCert_TEST | bit |   | Yes |   | Validate https cerificate option for Web Service data source for test environment | |
WFC_WebServiceValidateHttpsCert_DEV | bit |   | Yes |   | Validate https cerificate option for Web Service data source for developer environment | |
WFC_ConnectString | varchar(MAX) |   | Yes |   | ConnectString | |
WFC_Guid | varchar(36) |   |   |   | (newid()) | Entity guid |
WFC_ConnectString_PROD | varchar(MAX) |   | Yes |   | Connection string value for Production environment | |
WFC_ConnectString_TEST | varchar(MAX) |   | Yes |   | Connection string value for Test environment | |
WFC_ConnectString_DEV | varchar(MAX) |   | Yes |   | Connection string value for Develpoers environment | |
WFC_WebServiceRestAuthenticationURL | varchar(2048) |   | Yes |   | Authentication url | |
WFC_WebServiceRestAuthenticationURL_PROD | varchar(2048) |   | Yes |   | PROD authentication url | |
WFC_WebServiceRestAuthenticationURL_TEST | varchar(2048) |   | Yes |   | TEST authentication url | |
WFC_WebServiceRestAuthenticationURL_DEV | varchar(2048) |   | Yes |   | DEV authentication url | |
WFC_WebServiceRestClientID | varchar(256) |   | Yes |   | Client ID | |
WFC_WebServiceRestClientID_PROD | varchar(256) |   | Yes |   | PROD Client ID | |
WFC_WebServiceRestClientID_TEST | varchar(256) |   | Yes |   | TEST Client ID | |
WFC_WebServiceRestClientID_DEV | varchar(256) |   | Yes |   | DEV Client ID | |
WFC_WebServiceRestClientSecret | varchar(MAX) |   | Yes |   | Client secret | |
WFC_WebServiceRestClientSecret_PROD | varchar(MAX) |   | Yes |   | PROD Client secret | |
WFC_WebServiceRestClientSecret_TEST | varchar(MAX) |   | Yes |   | TEST Client secret | |
WFC_WebServiceRestClientSecret_DEV | varchar(MAX) |   | Yes |   | DEV Client secret | |
WFC_IsHidden | bit |   |   |   | ((0)) | Is data connection hidden in user interface |
WFC_SharePointType | int |   | Yes |   | SharePoint Type (On-Premises or Online) | |
WFC_Credentials | int |   | Yes |   | Credentials type based on enum | |
WFC_SharePointType_DEV | int |   | Yes |   | SharePoint Type (On-Premises or Online) | |
WFC_SharePointType_TEST | int |   | Yes |   | SharePoint Type (On-Premises or Online) | |
WFC_SharePointType_PROD | int |   | Yes |   | SharePoint Type (On-Premises or Online) | |
WFC_Credentials_DEV | int |   | Yes |   | Credentials type based on enum | |
WFC_Credentials_TEST | int |   | Yes |   | Credentials type based on enum | |
WFC_Credentials_PROD | int |   | Yes |   | Credentials type based on enum | |
WFC_UserName | varchar(MAX) |   | Yes |   | User name | |
WFC_UserName_DEV | varchar(MAX) |   | Yes |   | User name for developer environment | |
WFC_UserName_TEST | varchar(MAX) |   | Yes |   | User name for test environment | |
WFC_UserName_PROD | varchar(MAX) |   | Yes |   | User name for production environment | |
WFC_UserPassword | varchar(MAX) |   | Yes |   | User password | |
WFC_UserPassword_DEV | varchar(MAX) |   | Yes |   | User password for developer environment | |
WFC_UserPassword_TEST | varchar(MAX) |   | Yes |   | User password for test environment | |
WFC_UserPassword_PROD | varchar(MAX) |   | Yes |   | User password for production environment | |
WFC_Url | varchar(MAX) |   | Yes |   | Url | |
WFC_Url_DEV | varchar(MAX) |   | Yes |   | Url for developer environment | |
WFC_Url_TEST | varchar(MAX) |   | Yes |   | Url for test environment | |
WFC_Url_PROD | varchar(MAX) |   | Yes |   | Url for production environment | |
WFC_OracleSessionParameters | varchar(MAX) |   | Yes |   | XML with Oracle session parameters set explicitly by BPS when connecting to Oracle database server | |
WFC_WebServiceRestConnectAs | int |   | Yes |   | Auth Type (User/App) | |
WFC_WebServiceRestConnectAs_DEV | int |   | Yes |   | Auth Type (User/App) | |
WFC_WebServiceRestConnectAs_TEST | int |   | Yes |   | Auth Type (User/App) | |
WFC_WebServiceRestConnectAs_PROD | int |   | Yes |   | Auth Type (User/App) | |
WFC_IsPublic | bit |   |   |   | ((0)) | Tells if data connection is public |
WFC_Owners | varchar(MAX) |   | Yes |   | Data connection owners | |
WFC_AUTHID | int |   | Yes |   | Selected OAuth2 authentication | |
WFC_AUTHID_TEST | int |   | Yes |   | Selected OAuth2 authentication for Test environment | |
WFC_AUTHID_DEV | int |   | Yes |   | Selected OAuth2 authentication for Dev environment | |
WFC_AUTHID_PROD | int |   | Yes |   | Selected OAuth2 authentication for Prod environment | |
WFC_ExchangeServerVersion | varchar(50) |   | Yes |   | Version of Microsoft Exchange related to this connection | |
WFC_ExchangeServerVersionDEV | varchar(50) |   | Yes |   | Version of Microsoft Exchange related to this connection | |
WFC_ExchangeServerVersionTEST | varchar(50) |   | Yes |   | Version of Microsoft Exchange related to this connection | |
WFC_ExchangeServerVersionPROD | varchar(50) |   | Yes |   | Version of Microsoft Exchange related to this connection | |
WFC_PLUID | int |   | Yes |   | WFPlugin identifier used by the connection | |
WFC_PLUID_DEV | int |   | Yes |   | WFPlugin identifier used by the connection for developer environment | |
WFC_PLUID_TEST | int |   | Yes |   | WFPlugin identifier used by the connection for test environment | |
WFC_PLUID_PROD | int |   | Yes |   | WFPlugin identifier used by the connection for production environment | |
WFC_PLUConfig | varchar(MAX) |   | Yes |   | Stores plugin xml configuration | |
WFC_PLUConfig_DEV | varchar(MAX) |   | Yes |   | Stores plugin xml configuration for developer environment | |
WFC_PLUConfig_TEST | varchar(MAX) |   | Yes |   | Stores plugin xml configuration for test environment | |
WFC_PLUConfig_PROD | varchar(MAX) |   | Yes |   | Stores plugin xml configuration for production environment |
Name | Foreign Table | Primary Key |
---|---|---|
FK_WFDataConnections_Authentications | WFDataConnections | PK_Authentications |
FK_WFDataConnections_Authentications_Dev | WFDataConnections | PK_Authentications |
FK_WFDataConnections_Authentications_Prod | WFDataConnections | PK_Authentications |
FK_WFDataConnections_Authentications_Test | WFDataConnections | PK_Authentications |
FK_WFDataConnections_WFPlugIns | WFDataConnections | PK_WFPlugIns |
FK_WFDataConnections_WFPlugIns_DEV | WFDataConnections | PK_WFPlugIns |
FK_WFDataConnections_WFPlugIns_PROD | WFDataConnections | PK_WFPlugIns |
FK_WFDataConnections_WFPlugIns_TEST | WFDataConnections | PK_WFPlugIns |
FK_AppDataConnectionAssocs_WFDataConnections | AppDataConnectionAssocs | PK_WFDataConnections |
FK_PublishedAttachments_WFDataConnections | PublishedAttachments | PK_WFDataConnections |
FK_WFAttachmentConfigs_WFDataConnections | WFAttachmentConfigs | PK_WFDataConnections |
FK_WFBusinessRuleDefinitions_WFDataConnections | WFBusinessRuleDefinitions | PK_WFDataConnections |
FK_WFConfigurations_WFDataConnections | WFConfigurations | PK_WFDataConnections |
FK_WFDataSources_WFDataConnections | WFDataSources | PK_WFDataConnections |
FK_WFDetailConfigs_WFDataConnections | WFDetailConfigs | PK_WFDataConnections |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_WFDataConnections | Yes | Yes | CLUSTERED | 100 |
UQ_WFDataConnections_Guid | Yes |   | NONCLUSTERED | 100 |
Description: | Definitions of columns used in data sources |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
WDC_ID | int | Yes |   |   | Identifier | |
WDC_WFSID | int |   |   |   | Identifier of data source to which this columns belongs to | |
WDC_Name | varchar(255) |   |   |   | Internal name of this column | |
WDC_DisplayName | varchar(255) |   | Yes |   | Display name of this column | |
WDC_Type | int |   |   |   | Type of data stored in this column | |
WDC_IsUnicode | bit |   |   |   | ((0)) | Determines if the column stores text in unicode encoding |
WDC_FormatConfiguration | varchar(MAX) |   | Yes |   | Column configuration as XML file | |
WDC_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
WDC_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
WDC_RowVersion | timestamp |   |   | Yes | Timestamp | |
WDC_DecimalPrecision | int |   | Yes |   | Precision for decimal columns |
Name | Foreign Table | Primary Key |
---|---|---|
FK_WFDataSourceColumns_WFDataSources | WFDataSourceColumns | PK_WFDataSources |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_WFDataSourceColumns | Yes | Yes | CLUSTERED | 100 |
UQ_WFDataSourceColumns | Yes |   | NONCLUSTERED | 100 |
Description: | Contains definitions of all data sources (all types). Also stores system data sources, unavailable for users. |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
WFS_ID | int | Yes |   |   | Identifier | |
WFS_WFSID | int |   | Yes |   | DataSource identifier which refers to a row in WFDataSources table | |
WFS_COMID | int |   | Yes |   | Company identifier which refers to a row in Companies table | |
WFS_Name | varchar(50) |   |   |   | Data source name | |
WFS_Description | varchar(1000) |   | Yes |   | Detailed description of the data source | |
WFS_Type | int |   |   |   | Data source type: 1 - MSSQL, 2 - SharePoint List, 3 - Domain Users | |
WFS_ConnectString | varchar(MAX) |   | Yes |   | ConnectString to MSSQL database | |
WFS_SPList | varchar(200) |   | Yes |   | SharePoint list name | |
WFS_SPWeb | varchar(200) |   | Yes |   | Site name where the SharePoint list is located | |
WFS_SelectCommand | varchar(MAX) |   | Yes |   | DataSource select command | |
WFS_SPWebService | varchar(200) |   | Yes |   | Server name and site collection where the list is located (which means the webservice address) | |
WFS_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
WFS_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
WFS_RowVersion | timestamp |   |   | Yes | Timestamp | |
WFS_Guid | varchar(36) |   |   |   | (newid()) | Entry unique identifier for import export mechanism |
WFS_ADQueryId | int |   | Yes |   | Query identifier to Active Directory | |
WFS_ADProperties | varchar(MAX) |   | Yes |   | Returned properties from Active Directory | |
WFS_IsPublic | bit |   |   |   | ((0)) | It allows people who are not data source owners to use the data source in applications |
WFS_PluginId | int |   | Yes |   | Plugin identifier which refers to a row in WFPlugIns table | |
WFS_PluginConfiguration | varchar(MAX) |   | Yes |   | Plugin configuration | |
WFS_ADOU | nvarchar(200) |   | Yes |   | Organization unit in which searching request will be applied | |
WFS_SPView | varchar(200) |   | Yes |   | View name on which the query will be executed (optional) | |
WFS_SPGroup | varchar(100) |   | Yes |   | SharePoint group | |
WFS_IsHidden | bit |   |   |   | ((0)) | Is the data sources hidden in the user interface |
WFS_TemplateID | int |   |   |   | ((1)) | DataSourceTemplate identifier which refers to a row in DicDataSourceTemplates table |
WFS_RunInElevated | bit |   |   |   | ((0)) | Run in elevated |
WFS_Configuration | varchar(MAX) |   | Yes |   | Configuration of the data source | |
WFS_ConnectString_PROD | varchar(MAX) |   | Yes |   | Connection string value for Production environment | |
WFS_SPList_PROD | varchar(200) |   | Yes |   | Sharepoint list value for Production environment | |
WFS_SPWeb_PROD | varchar(200) |   | Yes |   | Sharepoint site value for Production environment | |
WFS_SPWebService_PROD | varchar(200) |   | Yes |   | Web service address value for Production environment | |
WFS_SPGroup_PROD | varchar(100) |   | Yes |   | Sharepoint group name value for Production environment | |
WFS_ConnectString_TEST | varchar(MAX) |   | Yes |   | Connection string value for Test environment | |
WFS_SPList_TEST | varchar(200) |   | Yes |   | Sharepoint list value for Test environment | |
WFS_SPWeb_TEST | varchar(200) |   | Yes |   | Sharepoint site value for Test environment | |
WFS_SPWebService_TEST | varchar(200) |   | Yes |   | Web service address value for Test environment | |
WFS_SPGroup_TEST | varchar(100) |   | Yes |   | Sharepoint group name value for Test environment | |
WFS_ConnectString_DEV | varchar(MAX) |   | Yes |   | Connection string value for Developers environment | |
WFS_SPList_DEV | varchar(200) |   | Yes |   | Sharepoint list value for Developers environment | |
WFS_SPWeb_DEV | varchar(200) |   | Yes |   | Sharepoint site value for Developers environment | |
WFS_SPWebService_DEV | varchar(200) |   | Yes |   | Web service address value for Developers environment | |
WFS_SPGroup_DEV | varchar(100) |   | Yes |   | Sharepoint group name value for Developers environment | |
WFS_WebServiceUser | varchar(200) |   | Yes |   | User name for Web Service data source | |
WFS_WebServicePassword | varchar(200) |   | Yes |   | User password for Web Service data source | |
WFS_WebServiceUser_PROD | varchar(200) |   | Yes |   | User name for Web Service data source for Production environment | |
WFS_WebServicePassword_PROD | varchar(200) |   | Yes |   | User password for Web Service data source for Production environment | |
WFS_WebServiceUser_TEST | varchar(200) |   | Yes |   | User name for Web Service data source for Test environment | |
WFS_WebServicePassword_TEST | varchar(200) |   | Yes |   | User password for Web Service data source for Test environment | |
WFS_WebServiceUser_DEV | varchar(200) |   | Yes |   | User name for Web Service data source for Developer environment | |
WFS_WebServicePassword_DEV | varchar(200) |   | Yes |   | User password for Web Service data source for Developer environment | |
WFS_DetachInheritance_PROD | bit |   |   |   | ((0)) | Do a production environment using a different data source configuration. |
WFS_DetachInheritance_TEST | bit |   |   |   | ((0)) | Do a Test environment using a different data source configuration. |
WFS_DetachInheritance_DEV | bit |   |   |   | ((0)) | Do a Developer environment using a different data source configuration. |
WFS_WebServiceBinding | int |   | Yes |   | Binding for Web Service data source | |
WFS_WebServiceBinding_PROD | int |   | Yes |   | Binding for Web Service data source for production environment | |
WFS_WebServiceBinding_TEST | int |   | Yes |   | Binding for Web Service data source for test environment | |
WFS_WebServiceBinding_DEV | int |   | Yes |   | Binding for Web Service data source for Developer environment | |
WFS_WebServiceKeepAlive | bit |   | Yes |   | Keep alive option for Web Service data source | |
WFS_WebServiceKeepAlive_PROD | bit |   | Yes |   | Keep alive option for Web Service data source for Production environment | |
WFS_WebServiceKeepAlive_TEST | bit |   | Yes |   | Keep alive option for Web Service data source for Test environment | |
WFS_WebServiceKeepAlive_DEV | bit |   | Yes |   | Keep alive option for Web Service data source for Developer environment | |
WFS_WebServiceValidateHttpsCert | bit |   | Yes |   | Validate https cerificate option for Web Service data source | |
WFS_WebServiceValidateHttpsCert_PROD | bit |   | Yes |   | Validate https cerificate option for Web Service data source for Production environment | |
WFS_WebServiceValidateHttpsCert_TEST | bit |   | Yes |   | Validate https cerificate option for Web Service data source for Test environment | |
WFS_WebServiceValidateHttpsCert_DEV | bit |   | Yes |   | Validate https cerificate option for Web Service data source for Developer environment | |
WFS_WebServiceRestAuthenticationURL | varchar(2048) |   | Yes |   | REST authentication URL for Web Service data source | |
WFS_WebServiceRestAuthenticationURL_PROD | varchar(2048) |   | Yes |   | REST authentication URL for Web Service data source for Production environment | |
WFS_WebServiceRestAuthenticationURL_TEST | varchar(2048) |   | Yes |   | REST authentication URL for Web Service data source for Test environment | |
WFS_WebServiceRestAuthenticationURL_DEV | varchar(2048) |   | Yes |   | REST authentication URL for Web Service data source for Developer environment | |
WFS_WebServiceRestClientID | varchar(200) |   | Yes |   | REST client ID for Web Service data source | |
WFS_WebServiceRestClientID_PROD | varchar(200) |   | Yes |   | REST client ID for Web Service data source for Production environment | |
WFS_WebServiceRestClientID_TEST | varchar(200) |   | Yes |   | REST client ID for Web Service data source for Test environment | |
WFS_WebServiceRestClientID_DEV | varchar(200) |   | Yes |   | REST client ID for Web Service data source for Developer environment | |
WFS_WebServiceRestClientSecret | varchar(200) |   | Yes |   | REST client secret for Web Service data source | |
WFS_WebServiceRestClientSecret_PROD | varchar(200) |   | Yes |   | REST client secret for Web Service data source for Production environment | |
WFS_WebServiceRestClientSecret_TEST | varchar(200) |   | Yes |   | REST client secret for Web Service data source for Test environment | |
WFS_WebServiceRestClientSecret_DEV | varchar(200) |   | Yes |   | REST client secret for Web Service data source for Developer environment | |
WFS_UseSsl | bit |   | Yes |   | Use ssl | |
WFS_UseAppPoolUser | bit |   | Yes |   | Connect using application pool user data | |
WFS_StaticValues | varchar(MAX) |   | Yes |   | Column contains ID, name, description separated by # and ; e.g. id1#name1#description1;id2#name2#description2; | |
WFS_WFCID | int |   | Yes |   | DataConnection identifier which refers to a row in WFDataConnections table | |
WFS_AddinFilterMode | bit |   |   |   | ((0)) | Flag indicating whether filters should be applied on addin side. When set to false all the filters will be aplied on BPS side. |
WFS_PersonalDataUsageMode | int |   | Yes |   | PersonalDataUsageMode identifier which refers to a row in DicPersonalDataUsageModes | |
WFS_PersonalDataIdentifierColumn | varchar(200) |   | Yes |   | Name of identifier column | |
WFS_IsPersonalDataDictionary | bit |   |   |   | ((0)) | Determines whether it is a personal data dictionary |
WFS_FilterBRDID | int |   | Yes |   | BusinessRuleDefinition identifier which refers to a row in WFBusinessRuleDefinitions table | |
WFS_Owners | varchar(MAX) |   | Yes |   | Data source owners | |
WFS_DeskType | int |   | Yes |   | DeskDataSourceType identifier which refers to a row in DicDeskDataSourceTypes table | |
WFS_IsSystem | bit |   |   |   | ((0)) | Determines whether it is a system data source |
WFS_IsPeople | bit |   |   |   | ((0)) | Determines if this data source can be used in formfields and columns type person |
WFS_DTSID | int |   | Yes |   | Foreign key to DataSets |
Name | Foreign Table | Primary Key |
---|---|---|
FK_WFDataSources_Companies | WFDataSources | PK_Companies |
FK_WFDataSources_DicDeskDataSourceTypes | WFDataSources | PK_DicDeskDataSourceTypes |
FK_WFDataSources_DataSets | WFDataSources | PK_DataSets |
FK_WFDataSources_WFBusinessRuleDefinitions | WFDataSources | PK_WFBusinessRuleDefinitions |
FK_WFDataSources_DicPersonalDataUsageModes | WFDataSources | PK_DicPersonalDataUsageModes |
FK_WFDataSources_Plugins | WFDataSources | PK_WFPlugIns |
FK_WFDataSources_DicDataSourceTemplates | WFDataSources | PK_DicDataSourceTemplates |
FK_WFDataSources_WFDataConnections | WFDataSources | PK_WFDataConnections |
FK_WFDataSources_WFDataSources | WFDataSources | PK_WFDataSources |
FK_AppDataSourceAssocs_WFDataSources | AppDataSourceAssocs | PK_WFDataSources |
FK_ConfiguredWebServices_WFDataSources | ConfiguredWebServices | PK_WFDataSources |
FK_WFAttachmentConfigs_WFDataSources | WFAttachmentConfigs | PK_WFDataSources |
FK_WFBusinessRuleDefinitions_WFDataSources | WFBusinessRuleDefinitions | PK_WFDataSources |
FK_WFConfigurations_WFDataSources_PersonalData | WFConfigurations | PK_WFDataSources |
FK_WFConfigurations_WFDataSources | WFConfigurations | PK_WFDataSources |
FK_WFDataSourceColumns_WFDataSources | WFDataSourceColumns | PK_WFDataSources |
FK_WFDataSources_WFDataSources | WFDataSources | PK_WFDataSources |
FK_WFDefinitions_WFDataSources | WFDefinitions | PK_WFDataSources |
FK_WFDefinitions_WFDataSources_Dictionary | WFDefinitions | PK_WFDataSources |
FK_WFDetailConfigs_WFDataSources_PersonalData | WFDetailConfigs | PK_WFDataSources |
FK_WFDetailConfigs_WFDataSources | WFDetailConfigs | PK_WFDataSources |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_WFDataSources | Yes | Yes | CLUSTERED | 100 |
UQ_WFDataSource_WFS_IsSystem_WFS_Type | Yes |   | NONCLUSTERED | 0 |
UQ_WFDataSources_Guid | Yes |   | NONCLUSTERED | 100 |
Description: | Contains processes definitions. |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
DEF_ID | int | Yes |   |   | Identifier | |
DEF_Name | varchar(50) |   |   |   | Name | |
DEF_Acronym | varchar(50) |   | Yes |   | Acronym used to create the instance number | |
DEF_Description | varchar(MAX) |   | Yes |   | Description | |
DEF_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
DEF_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
DEF_RowVersion | timestamp |   |   | Yes | Timestamp | |
DEF_UseSPCovers | bit |   |   |   | ((0)) | Determines if automatic task delegation substitutions are enabled in this process |
DEF_LeaveCoverAccess | bit |   |   |   | ((1)) | Determines if the substitute will have read access to the data after the substitution ends or is removed, |
DEF_AttachmentsDatabase | varchar(255) |   | Yes |   | Name of attachment database for the current process | |
DEF_TaskMailTitle | varchar(255) |   | Yes |   | Title of the message for the task | |
DEF_TaskDWMailTitle | varchar(255) |   | Yes |   | Title of the message for the task CC | |
DEF_Guid | varchar(36) |   |   |   | (newid()) | Entry unique identifier for import export mechanism |
DEF_DefaultMessageTemplate | int |   | Yes |   | Related WFMessageTemplates identifier | |
DEF_DefaultMessageTemplateDW | int |   | Yes |   | Related WFMessageTemplates identifier | |
DEF_DeploymentMode | bit |   |   |   | ((0)) | Information if the process is in deployment mode |
DEF_DeploymentModeMailRecipient | varchar(255) |   | Yes |   | Mail recipient in deployment mode | |
DEF_DocumentationDescription | varchar(500) |   | Yes |   | Documentation description | |
DEF_CoversNewTaskEmails | bit |   |   |   | ((0)) | Determines if an e-mail to substitutes should be sent for new task |
DEF_CoversExistTaskEmails | bit |   |   |   | ((0)) | Determines if an e-mail to substitutes should be sent for existing tasks |
DEF_IsProductionProcess | bit |   |   |   | ((1)) | Information if the process is production |
DEF_SignEmailsByDefault | bit |   |   |   | ((0)) | Information if the process is to sign an email by default |
DEF_EmailSignCertificate | varchar(200) |   | Yes |   | Email sign certificate | |
DEF_TemplateID | int |   |   |   | ((1)) | Related DicDefinitionTemplates identifier |
DEF_TemplateConfiguration | varchar(MAX) |   | Yes |   | Template configuration | |
DEF_Supervisor | varchar(1000) |   | Yes |   | Supervisor | |
DEF_CompanyStructureID | int |   | Yes |   | Related WFDataSources identifier | |
DEF_UseHierarchicalSecurity | bit |   |   |   | ((0)) | Information if the process uses hierarchical security |
DEF_IsLicencedPerProcess | bit |   |   |   | ((0)) | Information if the process is licenced per process |
DEF_EnableTimeouts | bit |   |   |   | ((1)) | Enable timeouts |
DEF_MailRecipientExceptions | varchar(MAX) |   | Yes |   | Mail recipient exceptions | |
DEF_UseDifferentEmailCCTemplate | bit |   |   |   | ((0)) | Column defines if the process uses different email CC template |
DEF_EnvironmentType | int |   |   |   | ((0)) | Environment for data sources used by process |
DEF_IsOutlookEnable | bit |   |   |   | ((1)) | Information whether the process is available in outlook |
DEF_IsWordEnable | bit |   |   |   | ((1)) | Information whether the process is available in word |
DEF_CheckOutDate | datetime |   | Yes |   | Date when process has been checked out | |
DEF_CheckOutByUser | varchar(1024) |   | Yes |   | Contains user login which CheckOut process | |
DEF_CheckOutOnHost | varchar(1024) |   | Yes |   | Contains host name on which process has been checked out | |
DEF_IncludeWorkingDays | bit |   |   |   | ((0)) | Include working days defined in the working days calendar |
DEF_ArchiveExportLocation | varchar(2000) |   | Yes |   | Path to location where archive packages will be extracted | |
DEF_ArchiveAttachmentsMode | int |   |   |   | ((0)) | Mode of archiving attachments |
DEF_ArchivingDatabase | varchar(255) |   | Yes |   | Archiving database | |
DEF_APPID | int |   |   |   | WFApplications foreign key | |
DEF_BaseUrl | varchar(2048) |   | Yes |   | Base URL | |
DEF_PersonalDataUsageMode | int |   | Yes |   | Foreign key to DicPersonalDataUsageModes table | |
DEF_PersonalDataCleaningMode | int |   |   |   | ((2)) | Foreign key to DicPersonalDataCleaningModes table |
DEF_PersonalDataShouldCleanHistory | bit |   |   |   | ((1)) | Indicates if personal data cleaning action should also clean history versions |
DEF_AttachmentsDatabaseWFCONID | int |   | Yes |   | Id of attribute chosen for attachments database | |
DEF_AttachmentsDatabaseColName | varchar(50) |   | Yes |   | Column name of attribute chosen for attachments database | |
DEF_IsPersonalDataDictionary | bit |   |   |   | ((0)) | Determines whether it is a personal data dictionary |
DEF_IncludeInAnalysis | bit |   |   |   | ((0)) | Determines whether process is included in AI analysis |
DEF_SaveStamp | varchar(36) |   |   |   | (newid()) | Save stamp |
DEF_DictionaryDataSourceID | int |   | Yes |   | Data source which is connected with dictionary process | |
DEF_IsProcessModifiedByExportImport | bit |   |   |   | ((0)) | Process modified by export-import mechanism |
DEF_IndexAttachmentsInSolr | bit |   |   |   | ((1)) | Solr attachment indexing mode |
DEF_AttachmentMaxSize | int |   | Yes |   | Tells maximum size of the attachment file for the process | |
DEF_AllowOnBehalfSubstitutions | bit |   |   |   | ((1)) | Determines if substitutions on behalf of other users are enabled for this process |
DEF_TaskHandlingMode | int |   |   |   | ((0)) | Task mode processing: 0 - materialize task only to group, 1 - materialize task to each group member |
DEF_EnableInstanceAndTaskSharing | bit |   |   |   | ((0)) | If sharing enabled |
DEF_SharingPrivilegesLevel | int |   |   |   | ((0)) | Level of privileges - readonly or edit |
DEF_SharingExpirationTimeBRDID | int |   | Yes |   | Id of business rule that defines sharing expiration time | |
DEF_IsLicencedByExternalUserCal | bit |   |   |   | ((0)) | Determines whether the process is available to users with the External User license |
DEF_SharedInstancesCodeVerification | bit |   |   |   | ((1)) | Additional validation of shared instances through password sent by email |
DEF_DeploymentModePushRecipient | varchar(255) |   | Yes |   | Push notification recipient in deployment mode | |
DEF_DeploymentModePushIsEnabled | bit |   |   |   | ((0)) | Information if the process Push notification is in deployment mode |
Name | Foreign Table | Primary Key |
---|---|---|
FK_WFDefinitions_WFApplications | WFDefinitions | PK_WFApplications |
FK_WFDefinitions_WFConfigurations_AttachmentsDatabaseWFCONID | WFDefinitions | PK_WFConfigurations |
FK_WFDefinitions_WFDataSources | WFDefinitions | PK_WFDataSources |
FK_WFDefinitions_WFMessageTemplates | WFDefinitions | PK_WFMessageTemplates |
FK_WFDefinitions_WFMessageTemplates_DW | WFDefinitions | PK_WFMessageTemplates |
FK_WFDefinitions_WFDataSources_Dictionary | WFDefinitions | PK_WFDataSources |
FK_WFDefinitions_DicPersonalDataCleaningModes | WFDefinitions | PK_DicPersonalDataCleaningModes |
FK_WFDefinitions_DicPersonalDataUsageModes | WFDefinitions | PK_DicPersonalDataUsageModes |
FK_WFDefinitions_WFBusinessRuleDefinitions_SharingExpirationTimeBRDID | WFDefinitions | PK_WFBusinessRuleDefinitions |
FK_WFDefinitions_DicDefinitionTemplates | WFDefinitions | PK_DicDefinitionTemplates |
FK_AiAnalysisQueueItems_WFDefinitions | AiAnalysisQueueItems | PK_WFDefinitions |
FK_Automations_WFDefinitions | Automations | PK_WFDefinitions |
FK_ElementDisplayConfigs_WFDefinitions_DEF_ID | ElementDisplayConfigs | PK_WFDefinitions |
FK_HotFolders_WFDefinitions | HotFolders | PK_WFDefinitions |
FK_HotMailBoxs_WFDefinitions | HotMailBoxs | PK_WFDefinitions |
FK_KPIElements_WFDefinitions | KPIElements | PK_WFDefinitions |
FK_KPITops_WFDefinitions | KPITops | PK_WFDefinitions |
FK_MassNotificationDefinitions_WFDefinitions | MassNotificationDefinitions | PK_WFDefinitions |
FK_PerformanceIndicators_WFDefinitions | PerformanceIndicators | PK_WFDefinitions |
FK_SharedInstances_WFDefinitions | SharedInstances | PK_WFDefinitions |
FK_TilesConfigurations_WFDefinitions | TilesConfigurations | PK_WFDefinitions |
FK_Translates_WFDefinitions | Translates | PK_WFDefinitions |
FK_WFActions_WFDefinitions | WFActions | PK_WFDefinitions |
FK_WFApplicationsLinkedProcesses_WFDefinitions | WFApplicationsLinkedProcesses | PK_WFDefinitions |
FK_WFAttachmentConfigs_WFDefinitions | WFAttachmentConfigs | PK_WFDefinitions |
FK_WFBusinessRuleDefinitions_WFDefinitions | WFBusinessRuleDefinitions | PK_WFDefinitions |
FK_WFBusinessRulesGroups_WFDefinitions | WFBusinessRulesGroups | PK_WFDefinitions |
FK_WFConfigurations_WFDefinitions | WFConfigurations | PK_WFDefinitions |
FK_WFConfigurations_WFDefinitions_PersonalData | WFConfigurations | PK_WFDefinitions |
FK_WFDetailConfigs_WFDefinitions_PersonalData | WFDetailConfigs | PK_WFDefinitions |
FK_WFDocTypes_WFDefinitions | WFDocTypes | PK_WFDefinitions |
FK_WFEnvironmentProcessVariables_WFDefinitions | WFEnvironmentProcessVariables | PK_WFDefinitions |
FK_WFEnvironmentProcessVariablesGroups_WFDefinitions | WFEnvironmentProcessVariablesGroups | PK_WFDefinitions |
FK_WFMessageTemplates_WFDefinitions | WFMessageTemplates | PK_WFDefinitions |
FK_WFSecurities_WFDefinitions | WFSecurities | PK_WFDefinitions |
FK_WorkFlows_WFDefinitions | WorkFlows | PK_WFDefinitions |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_WFDefinitions | Yes | Yes | CLUSTERED | 100 |
IX_WFDefinitions_APPID |   |   | NONCLUSTERED | 100 |
IX_WFDefinitions_Name |   |   | NONCLUSTERED | 100 |
UQ_WFDefinitions_Guid | Yes |   | NONCLUSTERED | 100 |
Description: | Business rules used in subelement column configurations |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
DBR_ID | int | Yes |   |   | Identifier | |
DBR_DCNID | int |   |   |   | Subelement column identifier | |
DBR_BRDID | int |   |   |   | Business rule identifier | |
DBR_PropertyID | int |   |   |   | Subelement column configuration property identifier | |
DBR_PropertyOrder | int |   | Yes |   | Subelement column configuration property order | |
DBR_Guid | varchar(36) |   |   |   | (newid()) | Global unique ID |
DBR_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
DBR_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
DBR_RowVersion | timestamp |   |   | Yes | Timestamp |
Name | Foreign Table | Primary Key |
---|---|---|
FK_WFDetailConfigBusinessRules_WFBusinessRuleDefinitions | WFDetailConfigBusinessRules | PK_WFBusinessRuleDefinitions |
FK_WFDetailConfigBusinessRules_WFDetailConfigs | WFDetailConfigBusinessRules | PK_WFDetailConfigs |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_WFDetailConfigBusinessRules | Yes | Yes | CLUSTERED | 100 |
UQ_WFDetailConfigBusinessRules_Guid | Yes |   | NONCLUSTERED | 100 |
IX_WFDetailConfigBusinessRules_DBR_DCNID |   |   | NONCLUSTERED | 100 |
Description: | Contains configuration of all columns in items lists. |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
DCN_ID | int | Yes |   |   | ||
DCN_FDDID | int |   |   |   | ||
DCN_WFSID | int |   | Yes |   | ||
DCN_FieldDetailTypeID | int |   |   |   | ||
DCN_Prompt | varchar(50) |   |   |   | ||
DCN_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Row insert date |
DCN_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Row update date |
DCN_RowVersion | timestamp |   |   | Yes | Row version | |
DCN_SelectOrCaml | varchar(MAX) |   | Yes |   | ||
DCN_Config | varchar(MAX) |   | Yes |   | ||
DCN_WFCONID | int |   |   |   | Item list identifier saved on the columns which belongs to it | |
DCN_AutoCallback | bit |   |   |   | ((0)) | |
DCN_Guid | varchar(36) |   |   |   | (newid()) | |
DCN_DefaultWidth | varchar(20) |   | Yes |   | ||
DCN_PresentReadOnlyAsLabel | bit |   |   |   | ((0)) | |
DCN_UsePeopleDataSource | bit |   |   |   | ((0)) | Should the choice field use the People data source |
DCN_IsMultiValue | bit |   |   |   | ((0)) | If more than one value can be selected in this field |
DCN_IsTechnical | bit |   |   |   | ((0)) | |
DCN_ValidationExpression | varchar(MAX) |   | Yes |   | Column contains regex expression used in data validation | |
DCN_ValidationExpressionErrorMessage | varchar(255) |   | Yes |   | Column contains error message displayed on validation error | |
DCN_Order | int |   |   |   | Order of subelement column | |
DCN_DefaultBRDID | int |   | Yes |   | Default business rule ID | |
DCN_IsVisibleSqlBRDID | int |   | Yes |   | Is visible sql business rule ID | |
DCN_EditModeSqlBRDID | int |   | Yes |   | Edit mode sql business rule ID | |
DCN_IsRequiredSqlBRDID | int |   | Yes |   | Is required sql business rule ID | |
DCN_JsOnValueChangeBRDID | int |   | Yes |   | Foreign key to ux business rule defining a javascript function to be executed on value change | |
DCN_WFCID | int |   | Yes |   | Stores data connection id | |
DCN_DataSourceFilterBRDID | int |   | Yes |   | Foreign key to business rule defining a data source filter | |
DCN_HistoryIgnoreSQLVisibilityRestrictions | bit |   |   |   | ((0)) | Determines if ignore visibility restriction and always show column in the history |
DCN_PersonalData_DEFID | int |   | Yes |   | Foreign key to WFDefinitions table | |
DCN_PersonalData_WFSID | int |   | Yes |   | Foreign key to WFDataSources table | |
DCN_PersonalDataType | int |   | Yes |   | Foreign key to DicPersonalDataTypes table | |
DCN_PersonalDataCleaningMode | int |   |   |   | ((2)) | Foreign key to DicPersonalDataCleaningModes table |
DCN_PersonalDataShouldCleanHistory | bit |   |   |   | ((1)) | Indicates if personal data cleaning action should also clean history versions |
DCN_PersonalData_DCNID | int |   | Yes |   | Foreign key to WFDetailConfigs table | |
DCN_DocumentationDescription | varchar(MAX) |   | Yes |   | Documentation for item list column. | |
DCN_Description | varchar(MAX) |   | Yes |   | Attribute description | |
DCN_IsSolrIndexed | bit |   |   |   | ((1)) | Is indexed in SOLR |
DCN_HtmlInputPlaceholder | varchar(MAX) |   | Yes |   | Input placeholder | |
DCN_HtmlInputAttributes | varchar(MAX) |   | Yes |   | Html input attributes | |
DCN_DeskBusinessRulesGenerationData | varchar(MAX) |   | Yes |   | Data for generating business rules in Designer Desk | |
DCN_OverridenSort | varchar(MAX) |   | Yes |   | JSON configuration used for sorting data in Data Sources. | |
DCN_ShowQRButton | bit |   |   |   | ((0)) | Determines whether the button Scan QR code will be visible next to the column |
Name | Foreign Table | Primary Key |
---|---|---|
FK_WFDetailConfigs_WFBusinessRuleDefinitions_DataSourceFilterBRDID | WFDetailConfigs | PK_WFBusinessRuleDefinitions |
FK_WFDetailConfigs_WFBusinessRuleDefinitions | WFDetailConfigs | PK_WFBusinessRuleDefinitions |
FK_WFDetailConfigs_WFBusinessRuleDefinitions_EditModeSqlBRDID | WFDetailConfigs | PK_WFBusinessRuleDefinitions |
FK_WFDetailConfigs_WFFieldDetailDefinitions | WFDetailConfigs | PK_WFFieldDetailDefinitions |
FK_WFDetailConfigs_DicFieldDetailTypes | WFDetailConfigs | PK_DicFieldDetailTypes |
FK_WFDetailConfigs_WFBusinessRuleDefinitions_IsRequiredSqlBRDID | WFDetailConfigs | PK_WFBusinessRuleDefinitions |
FK_WFDetailConfigs_WFBusinessRuleDefinitions_IsVisibleSqlBRDID | WFDetailConfigs | PK_WFBusinessRuleDefinitions |
FK_WFDetailConfigs_WFBusinessRuleDefinitions_JsOnValueChangeBRDID | WFDetailConfigs | PK_WFBusinessRuleDefinitions |
FK_WFDetailConfigs_PersonalData_WFDetailConfigs | WFDetailConfigs | PK_WFDetailConfigs |
FK_WFDetailConfigs_WFDefinitions_PersonalData | WFDetailConfigs | PK_WFDefinitions |
FK_WFDetailConfigs_WFDataSources_PersonalData | WFDetailConfigs | PK_WFDataSources |
FK_WFDetailConfigs_DicPersonalDataCleaningModes | WFDetailConfigs | PK_DicPersonalDataCleaningModes |
FK_WFDetailConfigs_DicPersonalDataTypes | WFDetailConfigs | PK_DicPersonalDataTypes |
FK_WFDetailConfigs_WFDataConnections | WFDetailConfigs | PK_WFDataConnections |
FK_WFDetailConfigs_WFConfigurations | WFDetailConfigs | PK_WFConfigurations |
FK_WFDetailConfigs_WFDataSources | WFDetailConfigs | PK_WFDataSources |
FK_WFDetailConfigBusinessRules_WFDetailConfigs | WFDetailConfigBusinessRules | PK_WFDetailConfigs |
FK_WFDetailConfigs_PersonalData_WFDetailConfigs | WFDetailConfigs | PK_WFDetailConfigs |
FK_WFStepFormFieldDetails_WFDetailConfigs | WFStepFormFieldDetails | PK_WFDetailConfigs |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_WFDetailConfigs | Yes | Yes | CLUSTERED | 100 |
UQ_WFDetailConfigs_Guid | Yes |   | NONCLUSTERED | 100 |
IX_WFDetailConfigs_DCN_WFCONID |   |   | NONCLUSTERED | 100 |
Description: | Contains definitions of document types. |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
DTYPE_ID | int | Yes |   |   | Identifier | |
DTYPE_PARID | int |   | Yes |   | ID of superior type | |
DTYPE_DEFID | int |   | Yes |   | Relation to the WFDefinitions table. It informs what form types are related to a given class. | |
DTYPE_Name | varchar(250) |   |   |   | Name | |
DTYPE_Acronym | varchar(50) |   |   |   | Acronym of the form type (e.g. Invoice – INV) | |
DTYPE_SignatureDefinition | varchar(4000) |   | Yes |   | Workflow instance number | |
DTYPE_Description | varchar(MAX) |   | Yes |   | Description | |
DTYPE_AutoPrintLabel | bit |   |   |   | ((0)) | Automatically print label during registration |
DTYPE_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Row insert date |
DTYPE_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Row update date |
DTYPE_RowVersion | timestamp |   |   | Yes | Row version | |
DTYPE_Config | varchar(2000) |   | Yes |   | Configuration | |
DTYPE_Order | int |   |   |   | ((0)) | Order of displaying form types on the choice list |
DTYPE_Guid | varchar(36) |   |   |   | (newid()) | Entry unique identifier for import export mechanism |
DTYPE_DocumentationDescription | varchar(MAX) |   | Yes |   | Description that is used in documentation | |
DTYPE_BannerID | int |   | Yes |   | ((0)) | ID of banner. |
Name | Foreign Table | Primary Key |
---|---|---|
FK_WFDocTypes_WFDefinitions | WFDocTypes | PK_WFDefinitions |
FK_WFDocTypes_WFDocTypes | WFDocTypes | PK_WFDocTypes |
FK_AttributeDocTypeAssocs_WFDocTypes | AttributeDocTypeAssocs | PK_WFDocTypes |
FK_DocTypeAssocciation_WFDocTypes | DocTypeAssocciations | PK_WFDocTypes |
FK_HotFolders_WFDocTypes | HotFolders | PK_WFDocTypes |
FK_HotMailBoxs_WFDocTypes | HotMailBoxs | PK_WFDocTypes |
FK_TilesConfigurations_WFDocTypes | TilesConfigurations | PK_WFDocTypes |
FK_WFDocTypes_WFDocTypes | WFDocTypes | PK_WFDocTypes |
FK_WFElements_WFDocTypes | WFElements | PK_WFDocTypes |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_WFDocTypes | Yes | Yes | CLUSTERED | 100 |
IX_WFDocTypes_Name |   |   | NONCLUSTERED | 100 |
IX_WFDocTypes_DEFID |   |   | NONCLUSTERED | 100 |
UQ_WFDocTypes_Guid | Yes |   | NONCLUSTERED | 100 |
Description: | Table contains temporary data used to generate .docx files. |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
DCX_ID | int | Yes |   |   | Identifier | |
DCX_Condition | varchar(MAX) |   | Yes |   | DocxGeneration condition | |
DCX_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
DCX_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
DCX_RowVersion | timestamp |   |   | Yes | Timestamp |
Name | Foreign Table | Primary Key |
---|
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_WFDocxGenerations | Yes | Yes | CLUSTERED | 100 |
Description: | Contains information about documents that are checked out and unavailable for edit. Also contains information about expired check outs caused by session termination. |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
WFDC_ID | int | Yes |   |   | ||
WFDC_WFDID | int |   |   |   | ||
WFDC_UserLogin | varchar(100) |   |   |   | ||
WFDC_Host | varchar(100) |   | Yes |   | ||
WFDC_CheckoutTime | datetime |   |   |   | ([dbo].[GetDbDate]()) | |
WFDC_RowVersion | timestamp |   |   | Yes | Row version | |
WFDC_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Row insert date |
WFDC_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Row update date |
WFDC_UserName | varchar(255) |   | Yes |   |
Name | Foreign Table | Primary Key |
---|---|---|
FK_WFElementCheckouts_WFElements | WFElementCheckouts | PK_WFData |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_WFElementCheckouts | Yes | Yes | CLUSTERED | 100 |
uq_WFElementCheckouts_WFDC_WFDID | Yes |   | NONCLUSTERED | 100 |
Description: | Contains all rows from items lists including data put by user(s) andinformation to which item list an element belongs. |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
DET_ID | int | Yes |   |   | ||
DET_Name | varchar(50) |   | Yes |   | Name | |
DET_Description | varchar(500) |   | Yes |   | ||
DET_WFDID | int |   | Yes |   | Relation identifier to an element | |
DET_Att1 | varchar(1000) |   | Yes |   | ||
DET_Att2 | varchar(1000) |   | Yes |   | ||
DET_Att3 | varchar(1000) |   | Yes |   | ||
DET_Att4 | varchar(1000) |   | Yes |   | ||
DET_Att5 | varchar(1000) |   | Yes |   | ||
DET_Att6 | varchar(1000) |   | Yes |   | ||
DET_Att7 | varchar(1000) |   | Yes |   | ||
DET_Att8 | varchar(1000) |   | Yes |   | ||
DET_Att9 | varchar(1000) |   | Yes |   | ||
DET_Att10 | varchar(1000) |   | Yes |   | ||
DET_Value | decimal(25,10) |   |   |   | ((0)) | |
DET_Value1 | decimal(25,10) |   | Yes |   | ||
DET_Value2 | decimal(25,10) |   | Yes |   | ||
DET_Percent | decimal(25,10) |   | Yes |   | ||
DET_Version | int |   |   |   | ((1)) | Instance version |
DET_CreatedBy | varchar(255) |   | Yes |   | Author | |
DET_UpdatedBy | varchar(255) |   | Yes |   | Last modifier | |
DET_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Row insert date |
DET_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Row update date |
DET_RowVersion | timestamp |   |   | Yes | Row version | |
DET_IsDeleted | bit |   |   |   | ((0)) | If the row was deleted |
DET_WriteHistory | bit |   |   |   | ((1)) | |
DET_WFCONID | int |   | Yes |   | Item list identifier saved on a column which belongs to it | |
DET_Att11 | varchar(1000) |   | Yes |   | ||
DET_Att12 | varchar(1000) |   | Yes |   | ||
DET_Att13 | varchar(1000) |   | Yes |   | ||
DET_Att14 | varchar(1000) |   | Yes |   | ||
DET_Att15 | varchar(1000) |   | Yes |   | ||
DET_Value3 | decimal(21,6) |   | Yes |   | ||
DET_Value4 | decimal(21,6) |   | Yes |   | ||
DET_Value5 | decimal(21,6) |   | Yes |   | ||
DET_Value6 | decimal(21,6) |   | Yes |   | ||
DET_Value7 | decimal(21,6) |   | Yes |   | ||
DET_Value8 | decimal(21,6) |   | Yes |   | ||
DET_Value9 | decimal(21,6) |   | Yes |   | ||
DET_Value10 | decimal(21,6) |   | Yes |   | ||
DET_LongText1 | text |   | Yes |   | ||
DET_LongText2 | text |   | Yes |   | ||
DET_LongText3 | text |   | Yes |   | ||
DET_LongText4 | text |   | Yes |   | ||
DET_LongText5 | text |   | Yes |   | ||
DET_Att16 | nvarchar(1000) |   | Yes |   | ||
DET_Att17 | nvarchar(1000) |   | Yes |   | ||
DET_Att18 | nvarchar(1000) |   | Yes |   | ||
DET_Att19 | nvarchar(1000) |   | Yes |   | ||
DET_Att20 | nvarchar(1000) |   | Yes |   | ||
DET_Att21 | nvarchar(1000) |   | Yes |   | ||
DET_Att22 | nvarchar(1000) |   | Yes |   | ||
DET_Att23 | nvarchar(1000) |   | Yes |   | ||
DET_Att24 | nvarchar(1000) |   | Yes |   | ||
DET_Att25 | nvarchar(1000) |   | Yes |   | ||
DET_Att26 | nvarchar(1000) |   | Yes |   | ||
DET_Att27 | nvarchar(1000) |   | Yes |   | ||
DET_Att28 | nvarchar(1000) |   | Yes |   | ||
DET_Att29 | nvarchar(1000) |   | Yes |   | ||
DET_Att30 | nvarchar(1000) |   | Yes |   | ||
DET_Att31 | nvarchar(1000) |   | Yes |   | ||
DET_Att32 | nvarchar(1000) |   | Yes |   | ||
DET_Att33 | nvarchar(1000) |   | Yes |   | ||
DET_Att34 | nvarchar(1000) |   | Yes |   | ||
DET_Att35 | nvarchar(1000) |   | Yes |   | ||
DET_Att36 | nvarchar(1000) |   | Yes |   | ||
DET_Att37 | nvarchar(1000) |   | Yes |   | ||
DET_Att38 | nvarchar(1000) |   | Yes |   | ||
DET_Att39 | nvarchar(1000) |   | Yes |   | ||
DET_Att40 | nvarchar(1000) |   | Yes |   | ||
DET_Value11 | decimal(21,6) |   | Yes |   | DET_Value11 | |
DET_Value12 | decimal(21,6) |   | Yes |   | DET_Value12 | |
DET_Value13 | decimal(21,6) |   | Yes |   | DET_Value13 | |
DET_Value14 | decimal(21,6) |   | Yes |   | DET_Value14 | |
DET_Value15 | decimal(21,6) |   | Yes |   | DET_Value15 | |
DET_Value16 | decimal(21,6) |   | Yes |   | DET_Value16 | |
DET_Value17 | decimal(21,6) |   | Yes |   | DET_Value17 | |
DET_Value18 | decimal(21,6) |   | Yes |   | DET_Value18 | |
DET_Value19 | decimal(21,6) |   | Yes |   | DET_Value19 | |
DET_Value20 | decimal(21,6) |   | Yes |   | DET_Value20 | |
DET_Value21 | decimal(21,6) |   | Yes |   | DET_Value21 | |
DET_Value22 | decimal(21,6) |   | Yes |   | DET_Value22 | |
DET_Value23 | decimal(21,6) |   | Yes |   | DET_Value23 | |
DET_Value24 | decimal(21,6) |   | Yes |   | DET_Value24 | |
DET_Value25 | decimal(21,6) |   | Yes |   | DET_Value25 | |
DET_Value26 | decimal(21,6) |   | Yes |   | DET_Value26 | |
DET_Value27 | decimal(21,6) |   | Yes |   | DET_Value27 | |
DET_Value28 | decimal(21,6) |   | Yes |   | DET_Value28 | |
DET_Value29 | decimal(21,6) |   | Yes |   | DET_Value29 | |
DET_Value30 | decimal(21,6) |   | Yes |   | DET_Value30 | |
DET_RowIndex | int |   | Yes |   | Row index for sorting purposes |
Name | Foreign Table | Primary Key |
---|---|---|
FK_WFElementDetails_WFConfigurations | WFElementDetails | PK_WFConfigurations |
FK_WFElementDatails_WFD | WFElementDetails | PK_WFData |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_WFElementDetails | Yes | Yes | CLUSTERED | 100 |
IX_WFElementDetails_WFDID_WFCONID |   |   | NONCLUSTERED | 100 |
IX_WFElementDetails_WFCONID |   |   | NONCLUSTERED | 100 |
Description: | Table to store signatures for elements |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
SIG_ID | int | Yes |   |   | Identifier | |
SIG_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
SIG_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
SIG_RowVersion | timestamp |   |   | Yes | Timestamp | |
SIG_Signature | varchar(140) |   |   |   | Signature | |
SIG_SignatureUniqueNumber | int |   |   |   | Signature unique number | |
SIG_SignatureUniqueSuffix | varchar(255) |   | Yes |   | Signature unique suffix | |
SIG_WFDID | int |   | Yes |   | Archived element ID | |
SIG_ARDID | int |   | Yes |   | Archive database ID |
Name | Foreign Table | Primary Key |
---|---|---|
FK_WFElementSignatures_ArchivingDatabases | WFElementSignatures | PK_ArchivingDatabases |
FK_WFElements_Signatures | WFElements | PK_WFElementSignatures |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_WFElementSignatures | Yes | Yes | CLUSTERED | 100 |
UQ_WFElementSignatures_SIG_Signature | Yes |   | NONCLUSTERED | 100 |
IX_U_WFElementSignatures_SigSuffixSigNumber | Yes |   | NONCLUSTERED | 80 |
IX_WFElementSignatures_WFDID |   |   | NONCLUSTERED | 100 |
Description: | Linking table showing which Webcon BPS timeouts from WFTimeouts have to be executed for certain elements. |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
ETM_ID | int | Yes |   |   | Identifier | |
ETM_WFDID | int |   |   |   | Workflow instance identifier which refers to a row in WFElements table | |
ETM_TIMID | int |   |   |   | Timeout identifier which refers to a row in WFTimeouts table | |
ETM_ExpireTime | datetime |   |   |   | Data and time of timeout (if the instance has not moved to another step) | |
ETM_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
ETM_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
ETM_RowVersion | timestamp |   |   | Yes | Timestamp | |
ETM_OccurrenceCount | int |   |   |   | ((0)) | Number of Webcon BPS timeout occurences |
ETM_OccurrenceErrorsCount | int |   |   |   | ((0)) | Number of Webcon BPS timeout errors occurences |
ETM_StartTimeoutTime | datetime |   | Yes |   | Webcon BPS timeout start time | |
ETM_ServiceName | varchar(255) |   | Yes |   | Processing service name | |
ETM_ThreadId | int |   | Yes |   | Processing Thread ID | |
ETM_Status | int |   |   |   | ((0)) | Status: ProcessingPending = 0 queue element is waiting to be processed by service, Processing = 1 queue element is now being processed, ProcessingSuccess = 2 queue element has been processed sucessfully, ProcessingError = 100 error while processing - number of allowed attempts exceeded, ProcessingSuspended = 200 processing of the queue element was suspended |
ETM_AttemptsNumber | int |   |   |   | ((0)) | Attempts number |
ETM_LastAttemptTime | datetime |   | Yes |   | Last attempt time | |
ETM_ProcessingFinishedTime | datetime |   | Yes |   | Processing finished time | |
ETM_LastError | varchar(MAX) |   | Yes |   | Last error message | |
ETM_Priority | int |   |   |   | ((0)) | Processing priority |
Name | Foreign Table | Primary Key |
---|---|---|
FK_WFElementTimeouts_WFTimeouts | WFElementTimeouts | PK_WFTimeouts |
FK_WFElementTimeouts_WFElements | WFElementTimeouts | PK_WFData |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_WFElementTimeouts | Yes | Yes | CLUSTERED | 100 |
IX_WFElementTimeouts_WFDID |   |   | NONCLUSTERED | 100 |
IX_WFElementTimeouts_ExpireTime |   |   | NONCLUSTERED | 100 |
IX_WFElementTimeouts_TIMID |   |   | NONCLUSTERED | 80 |
IX_WFElementTimeouts_Priority_ExpireTime_LastAttemptTime_WFDID |   |   | NONCLUSTERED | 100 |
Description: | Contains all elements data in the system. Stores both data about system’s form fields and form fields defined in processes. |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
WFD_ID | int | Yes |   |   | ||
WFD_STPID | int |   |   |   | Identifier of the step in which the specific instance is currently in | |
WFD_WFDID | int |   | Yes |   | ||
WFD_WFRID | int |   | Yes |   | ||
WFD_COMID | int |   |   |   | ((1)) | |
WFD_DTYPEID | int |   | Yes |   | Form type identifier | |
WFD_SUBDTYPEID | int |   | Yes |   | ||
WFD_Signature | varchar(100) |   | Yes |   | Instance number | |
WFD_SignatureUniqNumber | int |   |   |   | ||
WFD_SignatureUniqSufix | varchar(255) |   | Yes |   | ||
WFD_Department | varchar(255) |   | Yes |   | ||
WFD_Name | varchar(50) |   | Yes |   | Name | |
WFD_Description | text |   | Yes |   | ||
WFD_Version | int |   |   |   | ((1)) | Instance version |
WFD_WFVersion | int |   |   |   | ((0)) | |
WFD_CreatedBy | varchar(255) |   | Yes |   | Author | |
WFD_UpdatedBy | varchar(255) |   | Yes |   | Last modifier | |
WFD_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Row insert date |
WFD_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Row update date |
WFD_ActualCreatedTasks | varchar(50) |   | Yes |   | List of currently associated tasks created on SharePoint. Task ID’s are separated by semicolons | |
WFD_IsFinish | bit |   |   |   | ((0)) | Shows if the instance is still active. If a workflow ends it goes to the step which as the isfinish=true flag selected and at the same time we should switch WFD_Isfinish to true. Duplicating the information is due to the efficiency of the solution. |
WFD_IsDeleted | bit |   |   |   | ((0)) | A flag indicating whether the row is deleted |
WFD_HistorySteps | varchar(2000) |   | Yes |   | ||
WFD_AttText1Glob | varchar(255) |   | Yes |   | ||
WFD_AttText2Glob | varchar(255) |   | Yes |   | ||
WFD_AttText3Glob | varchar(255) |   | Yes |   | ||
WFD_AttText4Glob | varchar(255) |   | Yes |   | ||
WFD_AttText5Glob | varchar(255) |   | Yes |   | ||
WFD_AttText6Glob | varchar(255) |   | Yes |   | ||
WFD_AttText7Glob | varchar(255) |   | Yes |   | ||
WFD_AttText8Glob | varchar(255) |   | Yes |   | ||
WFD_AttText9Glob | varchar(255) |   | Yes |   | ||
WFD_AttText10Glob | varchar(255) |   | Yes |   | ||
WFD_AttChoose1Glob | varchar(1000) |   | Yes |   | ||
WFD_AttChoose2Glob | varchar(1000) |   | Yes |   | ||
WFD_AttChoose3Glob | varchar(1000) |   | Yes |   | ||
WFD_AttChoose4Glob | varchar(1000) |   | Yes |   | ||
WFD_AttChoose5Glob | varchar(1000) |   | Yes |   | ||
WFD_AttChoose6Glob | varchar(1000) |   | Yes |   | ||
WFD_AttChoose7Glob | varchar(1000) |   | Yes |   | ||
WFD_AttChoose8Glob | varchar(1000) |   | Yes |   | ||
WFD_AttChoose9Glob | varchar(1000) |   | Yes |   | ||
WFD_AttChoose10Glob | varchar(1000) |   | Yes |   | ||
WFD_AttText1 | varchar(255) |   | Yes |   | ||
WFD_AttText2 | varchar(255) |   | Yes |   | ||
WFD_AttText3 | varchar(255) |   | Yes |   | ||
WFD_AttText4 | varchar(255) |   | Yes |   | ||
WFD_AttText5 | varchar(255) |   | Yes |   | ||
WFD_AttText6 | varchar(255) |   | Yes |   | ||
WFD_AttText7 | varchar(255) |   | Yes |   | ||
WFD_AttText8 | varchar(255) |   | Yes |   | ||
WFD_AttText9 | varchar(255) |   | Yes |   | ||
WFD_AttText10 | varchar(255) |   | Yes |   | ||
WFD_AttText11 | varchar(255) |   | Yes |   | ||
WFD_AttText12 | varchar(255) |   | Yes |   | ||
WFD_AttText13 | varchar(255) |   | Yes |   | ||
WFD_AttText14 | varchar(255) |   | Yes |   | ||
WFD_AttText15 | varchar(255) |   | Yes |   | ||
WFD_AttText16 | varchar(255) |   | Yes |   | ||
WFD_AttText17 | varchar(255) |   | Yes |   | ||
WFD_AttText18 | varchar(255) |   | Yes |   | ||
WFD_AttText19 | varchar(255) |   | Yes |   | ||
WFD_AttText20 | varchar(255) |   | Yes |   | ||
WFD_AttText21 | varchar(255) |   | Yes |   | ||
WFD_AttText22 | varchar(255) |   | Yes |   | ||
WFD_AttText23 | varchar(255) |   | Yes |   | ||
WFD_AttText24 | varchar(255) |   | Yes |   | ||
WFD_AttText25 | varchar(255) |   | Yes |   | ||
WFD_AttText26 | varchar(255) |   | Yes |   | ||
WFD_AttText27 | varchar(255) |   | Yes |   | ||
WFD_AttText28 | varchar(255) |   | Yes |   | ||
WFD_AttText29 | varchar(255) |   | Yes |   | ||
WFD_AttText30 | varchar(255) |   | Yes |   | ||
WFD_AttLong1 | text |   | Yes |   | ||
WFD_AttLong2 | text |   | Yes |   | ||
WFD_AttLong3 | text |   | Yes |   | ||
WFD_AttLong4 | text |   | Yes |   | ||
WFD_AttLong5 | text |   | Yes |   | ||
WFD_AttLong6 | text |   | Yes |   | ||
WFD_AttLong7 | text |   | Yes |   | ||
WFD_AttLong8 | text |   | Yes |   | ||
WFD_AttLong9 | text |   | Yes |   | ||
WFD_AttLong10 | text |   | Yes |   | ||
WFD_AttLong11 | text |   | Yes |   | ||
WFD_AttLong12 | text |   | Yes |   | ||
WFD_AttLong13 | text |   | Yes |   | ||
WFD_AttLong14 | text |   | Yes |   | ||
WFD_AttLong15 | text |   | Yes |   | ||
WFD_AttBool1 | bit |   | Yes |   | ||
WFD_AttBool2 | bit |   | Yes |   | ||
WFD_AttBool3 | bit |   | Yes |   | ||
WFD_AttBool4 | bit |   | Yes |   | ||
WFD_AttBool5 | bit |   | Yes |   | ||
WFD_AttBool6 | bit |   | Yes |   | ||
WFD_AttBool7 | bit |   | Yes |   | ||
WFD_AttBool8 | bit |   | Yes |   | ||
WFD_AttBool9 | bit |   | Yes |   | ||
WFD_AttBool10 | bit |   | Yes |   | ||
WFD_AttBool11 | bit |   | Yes |   | ||
WFD_AttBool12 | bit |   | Yes |   | ||
WFD_AttBool13 | bit |   | Yes |   | ||
WFD_AttBool14 | bit |   | Yes |   | ||
WFD_AttBool15 | bit |   | Yes |   | ||
WFD_AttBool16 | bit |   | Yes |   | ||
WFD_AttBool17 | bit |   | Yes |   | ||
WFD_AttBool18 | bit |   | Yes |   | ||
WFD_AttBool19 | bit |   | Yes |   | ||
WFD_AttBool20 | bit |   | Yes |   | ||
WFD_AttChoose1 | varchar(1000) |   | Yes |   | ||
WFD_AttChoose2 | varchar(1000) |   | Yes |   | ||
WFD_AttChoose3 | varchar(1000) |   | Yes |   | ||
WFD_AttChoose4 | varchar(1000) |   | Yes |   | ||
WFD_AttChoose5 | varchar(1000) |   | Yes |   | ||
WFD_AttChoose6 | varchar(1000) |   | Yes |   | ||
WFD_AttChoose7 | varchar(1000) |   | Yes |   | ||
WFD_AttChoose8 | varchar(1000) |   | Yes |   | ||
WFD_AttChoose9 | varchar(1000) |   | Yes |   | ||
WFD_AttChoose10 | varchar(1000) |   | Yes |   | ||
WFD_AttChoose11 | varchar(1000) |   | Yes |   | ||
WFD_AttChoose12 | varchar(1000) |   | Yes |   | ||
WFD_AttChoose13 | varchar(1000) |   | Yes |   | ||
WFD_AttChoose14 | varchar(1000) |   | Yes |   | ||
WFD_AttChoose15 | varchar(1000) |   | Yes |   | ||
WFD_AttChoose16 | varchar(1000) |   | Yes |   | ||
WFD_AttChoose17 | varchar(1000) |   | Yes |   | ||
WFD_AttChoose18 | varchar(1000) |   | Yes |   | ||
WFD_AttChoose19 | varchar(1000) |   | Yes |   | ||
WFD_AttChoose20 | varchar(1000) |   | Yes |   | ||
WFD_AttInt1 | int |   | Yes |   | ||
WFD_AttInt2 | int |   | Yes |   | ||
WFD_AttInt3 | int |   | Yes |   | ||
WFD_AttInt4 | int |   | Yes |   | ||
WFD_AttInt5 | int |   | Yes |   | ||
WFD_AttInt6 | int |   | Yes |   | ||
WFD_AttInt7 | int |   | Yes |   | ||
WFD_AttInt8 | int |   | Yes |   | ||
WFD_AttInt9 | int |   | Yes |   | ||
WFD_AttInt10 | int |   | Yes |   | ||
WFD_AttInt11 | int |   | Yes |   | ||
WFD_AttInt12 | int |   | Yes |   | ||
WFD_AttInt13 | int |   | Yes |   | ||
WFD_AttInt14 | int |   | Yes |   | ||
WFD_AttInt15 | int |   | Yes |   | ||
WFD_AttInt16 | int |   | Yes |   | ||
WFD_AttInt17 | int |   | Yes |   | ||
WFD_AttInt18 | int |   | Yes |   | ||
WFD_AttInt19 | int |   | Yes |   | ||
WFD_AttInt20 | int |   | Yes |   | ||
WFD_AttDecimal1 | decimal(21,6) |   | Yes |   | ||
WFD_AttDecimal2 | decimal(21,6) |   | Yes |   | ||
WFD_AttDecimal3 | decimal(21,6) |   | Yes |   | ||
WFD_AttDecimal4 | decimal(21,6) |   | Yes |   | ||
WFD_AttDecimal5 | decimal(21,6) |   | Yes |   | ||
WFD_AttDecimal6 | decimal(21,6) |   | Yes |   | ||
WFD_AttDecimal7 | decimal(21,6) |   | Yes |   | ||
WFD_AttDecimal8 | decimal(21,6) |   | Yes |   | ||
WFD_AttDecimal9 | decimal(21,6) |   | Yes |   | ||
WFD_AttDecimal10 | decimal(21,6) |   | Yes |   | ||
WFD_AttDecimal11 | decimal(21,6) |   | Yes |   | ||
WFD_AttDecimal12 | decimal(21,6) |   | Yes |   | ||
WFD_AttDecimal13 | decimal(21,6) |   | Yes |   | ||
WFD_AttDecimal14 | decimal(21,6) |   | Yes |   | ||
WFD_AttDecimal15 | decimal(21,6) |   | Yes |   | ||
WFD_AttDecimal16 | decimal(21,6) |   | Yes |   | ||
WFD_AttDecimal17 | decimal(21,6) |   | Yes |   | ||
WFD_AttDecimal18 | decimal(21,6) |   | Yes |   | ||
WFD_AttDecimal19 | decimal(21,6) |   | Yes |   | ||
WFD_AttDecimal20 | decimal(21,6) |   | Yes |   | ||
WFD_AttDateTime1 | datetime |   | Yes |   | ||
WFD_AttDateTime2 | datetime |   | Yes |   | ||
WFD_AttDateTime3 | datetime |   | Yes |   | ||
WFD_AttDateTime4 | datetime |   | Yes |   | ||
WFD_AttDateTime5 | datetime |   | Yes |   | ||
WFD_AttDateTime6 | datetime |   | Yes |   | ||
WFD_AttDateTime7 | datetime |   | Yes |   | ||
WFD_AttDateTime8 | datetime |   | Yes |   | ||
WFD_AttDateTime9 | datetime |   | Yes |   | ||
WFD_AttDateTime10 | datetime |   | Yes |   | ||
WFD_AttDateTime11 | datetime |   | Yes |   | ||
WFD_AttDateTime12 | datetime |   | Yes |   | ||
WFD_AttDateTime13 | datetime |   | Yes |   | ||
WFD_AttDateTime14 | datetime |   | Yes |   | ||
WFD_AttDateTime15 | datetime |   | Yes |   | ||
WFD_AttDateTime16 | datetime |   | Yes |   | ||
WFD_AttDateTime17 | datetime |   | Yes |   | ||
WFD_AttDateTime18 | datetime |   | Yes |   | ||
WFD_AttDateTime19 | datetime |   | Yes |   | ||
WFD_AttDateTime20 | datetime |   | Yes |   | ||
WFD_Source | int |   |   |   | ((0)) | |
WFD_AttPeople1 | varchar(1000) |   | Yes |   | ||
WFD_AttPeople2 | varchar(1000) |   | Yes |   | ||
WFD_AttPeople3 | varchar(1000) |   | Yes |   | ||
WFD_AttPeople4 | varchar(1000) |   | Yes |   | ||
WFD_AttPeople5 | varchar(1000) |   | Yes |   | ||
WFD_AttPeople6 | varchar(1000) |   | Yes |   | ||
WFD_AttPeople7 | varchar(1000) |   | Yes |   | ||
WFD_AttPeople8 | varchar(1000) |   | Yes |   | ||
WFD_AttPeople9 | varchar(1000) |   | Yes |   | ||
WFD_AttPeople10 | varchar(1000) |   | Yes |   | ||
WFD_AttPeople11 | varchar(1000) |   | Yes |   | ||
WFD_AttPeople12 | varchar(1000) |   | Yes |   | ||
WFD_AttPeople13 | varchar(1000) |   | Yes |   | ||
WFD_AttPeople14 | varchar(1000) |   | Yes |   | ||
WFD_AttPeople15 | varchar(1000) |   | Yes |   | ||
WFD_SubElems | varchar(255) |   | Yes |   | ||
WFD_RowVersion | timestamp |   |   | Yes | Row version | |
WFD_WriteHistory | bit |   |   |   | ((1)) | |
WFD_FinishDate | datetime |   | Yes |   | ||
WFD_EnterToCurrentStepDate | datetime |   |   |   | ([dbo].[GetDbDate]()) | |
WFD_HistoryPaths | varchar(2000) |   | Yes |   | ||
WFD_StatusId | int |   |   |   | ((1)) | Instance status |
WFD_RequestInfo | varchar(50) |   | Yes |   | ||
WFD_MailApprovalGuid | varchar(36) |   |   |   | (newid()) | |
WFD_AttMap1 | varchar(255) |   | Yes |   | ||
WFD_AttMap2 | varchar(255) |   | Yes |   | ||
WFD_AttMap3 | varchar(255) |   | Yes |   | ||
WFD_AttDateTime1Glob | datetime |   | Yes |   | ||
WFD_AttDateTime2Glob | datetime |   | Yes |   | ||
WFD_AttDateTime3Glob | datetime |   | Yes |   | ||
WFD_AttDateTime4Glob | datetime |   | Yes |   | ||
WFD_AttDateTime5Glob | datetime |   | Yes |   | ||
WFD_LastTraversingTime | int |   |   |   | ((0)) | |
WFD_AttText31 | varchar(255) |   | Yes |   | ||
WFD_AttText32 | varchar(255) |   | Yes |   | ||
WFD_AttText33 | varchar(255) |   | Yes |   | ||
WFD_AttText34 | varchar(255) |   | Yes |   | ||
WFD_AttText35 | varchar(255) |   | Yes |   | ||
WFD_AttText36 | varchar(255) |   | Yes |   | ||
WFD_AttText37 | varchar(255) |   | Yes |   | ||
WFD_AttText38 | varchar(255) |   | Yes |   | ||
WFD_AttText39 | varchar(255) |   | Yes |   | ||
WFD_AttText40 | varchar(255) |   | Yes |   | ||
WFD_AttDecimal21 | decimal(21,6) |   | Yes |   | ||
WFD_AttDecimal22 | decimal(21,6) |   | Yes |   | ||
WFD_AttDecimal23 | decimal(21,6) |   | Yes |   | ||
WFD_AttDecimal24 | decimal(21,6) |   | Yes |   | ||
WFD_AttDecimal25 | decimal(21,6) |   | Yes |   | ||
WFD_AttDecimal26 | decimal(21,6) |   | Yes |   | ||
WFD_AttDecimal27 | decimal(21,6) |   | Yes |   | ||
WFD_AttDecimal28 | decimal(21,6) |   | Yes |   | ||
WFD_AttDecimal29 | decimal(21,6) |   | Yes |   | ||
WFD_AttDecimal30 | decimal(21,6) |   | Yes |   | ||
WFD_AttChoose21 | varchar(1000) |   | Yes |   | ||
WFD_AttChoose22 | varchar(1000) |   | Yes |   | ||
WFD_AttChoose23 | varchar(1000) |   | Yes |   | ||
WFD_AttChoose24 | varchar(1000) |   | Yes |   | ||
WFD_AttChoose25 | varchar(1000) |   | Yes |   | ||
WFD_AttChoose26 | varchar(1000) |   | Yes |   | ||
WFD_AttChoose27 | varchar(1000) |   | Yes |   | ||
WFD_AttChoose28 | varchar(1000) |   | Yes |   | ||
WFD_AttChoose29 | varchar(1000) |   | Yes |   | ||
WFD_AttChoose30 | varchar(1000) |   | Yes |   | ||
WFD_AttLong16 | text |   | Yes |   | ||
WFD_AttLong17 | text |   | Yes |   | ||
WFD_AttLong18 | text |   | Yes |   | ||
WFD_AttLong19 | text |   | Yes |   | ||
WFD_AttLong20 | text |   | Yes |   | ||
WFD_AttLong21 | text |   | Yes |   | ||
WFD_AttLong22 | text |   | Yes |   | ||
WFD_AttLong23 | text |   | Yes |   | ||
WFD_AttLong24 | text |   | Yes |   | ||
WFD_AttLong25 | text |   | Yes |   | ||
WFD_AttDecimal31 | decimal(21,6) |   | Yes |   | ||
WFD_AttDecimal32 | decimal(21,6) |   | Yes |   | ||
WFD_AttDecimal33 | decimal(21,6) |   | Yes |   | ||
WFD_AttDecimal34 | decimal(21,6) |   | Yes |   | ||
WFD_AttDecimal35 | decimal(21,6) |   | Yes |   | ||
WFD_AttDecimal36 | decimal(21,6) |   | Yes |   | ||
WFD_AttDecimal37 | decimal(21,6) |   | Yes |   | ||
WFD_AttDecimal38 | decimal(21,6) |   | Yes |   | ||
WFD_AttDecimal39 | decimal(21,6) |   | Yes |   | ||
WFD_AttDecimal40 | decimal(21,6) |   | Yes |   | ||
WFD_AttDecimal41 | decimal(21,6) |   | Yes |   | ||
WFD_AttDecimal42 | decimal(21,6) |   | Yes |   | ||
WFD_AttDecimal43 | decimal(21,6) |   | Yes |   | ||
WFD_AttDecimal44 | decimal(21,6) |   | Yes |   | ||
WFD_AttDecimal45 | decimal(21,6) |   | Yes |   | ||
WFD_AttDecimal46 | decimal(21,6) |   | Yes |   | ||
WFD_AttDecimal47 | decimal(21,6) |   | Yes |   | ||
WFD_AttDecimal48 | decimal(21,6) |   | Yes |   | ||
WFD_AttDecimal49 | decimal(21,6) |   | Yes |   | ||
WFD_AttDecimal50 | decimal(21,6) |   | Yes |   | ||
WFD_AttInt21 | int |   | Yes |   | ||
WFD_AttInt22 | int |   | Yes |   | ||
WFD_AttInt23 | int |   | Yes |   | ||
WFD_AttInt24 | int |   | Yes |   | ||
WFD_AttInt25 | int |   | Yes |   | ||
WFD_AttInt26 | int |   | Yes |   | ||
WFD_AttInt27 | int |   | Yes |   | ||
WFD_AttInt28 | int |   | Yes |   | ||
WFD_AttInt29 | int |   | Yes |   | ||
WFD_AttInt30 | int |   | Yes |   | ||
WFD_AttText41 | varchar(255) |   | Yes |   | ||
WFD_AttText42 | varchar(255) |   | Yes |   | ||
WFD_AttText43 | varchar(255) |   | Yes |   | ||
WFD_AttText44 | varchar(255) |   | Yes |   | ||
WFD_AttText45 | varchar(255) |   | Yes |   | ||
WFD_AttText46 | varchar(255) |   | Yes |   | ||
WFD_AttText47 | varchar(255) |   | Yes |   | ||
WFD_AttText48 | varchar(255) |   | Yes |   | ||
WFD_AttText49 | varchar(255) |   | Yes |   | ||
WFD_AttText50 | varchar(255) |   | Yes |   | ||
WFD_AttChoose31 | varchar(1000) |   | Yes |   | ||
WFD_AttChoose32 | varchar(1000) |   | Yes |   | ||
WFD_AttChoose33 | varchar(1000) |   | Yes |   | ||
WFD_AttChoose34 | varchar(1000) |   | Yes |   | ||
WFD_AttChoose35 | varchar(1000) |   | Yes |   | ||
WFD_AttChoose36 | varchar(1000) |   | Yes |   | ||
WFD_AttChoose37 | varchar(1000) |   | Yes |   | ||
WFD_AttChoose38 | varchar(1000) |   | Yes |   | ||
WFD_AttChoose39 | varchar(1000) |   | Yes |   | ||
WFD_AttChoose40 | varchar(1000) |   | Yes |   | ||
WFD_InitedSubelement | varchar(255) |   | Yes |   | ||
WFD_AttDateTime21 | datetime |   | Yes |   | ||
WFD_AttDateTime22 | datetime |   | Yes |   | ||
WFD_AttDateTime23 | datetime |   | Yes |   | ||
WFD_AttDateTime24 | datetime |   | Yes |   | ||
WFD_AttDateTime25 | datetime |   | Yes |   | ||
WFD_AttDateTime26 | datetime |   | Yes |   | ||
WFD_AttDateTime27 | datetime |   | Yes |   | ||
WFD_AttDateTime28 | datetime |   | Yes |   | ||
WFD_AttDateTime29 | datetime |   | Yes |   | ||
WFD_AttDateTime30 | datetime |   | Yes |   | ||
WFD_AttDateTime31 | datetime |   | Yes |   | ||
WFD_AttDateTime32 | datetime |   | Yes |   | ||
WFD_AttDateTime33 | datetime |   | Yes |   | ||
WFD_AttDateTime34 | datetime |   | Yes |   | ||
WFD_AttDateTime35 | datetime |   | Yes |   | ||
WFD_AttDateTime36 | datetime |   | Yes |   | ||
WFD_AttDateTime37 | datetime |   | Yes |   | ||
WFD_AttDateTime38 | datetime |   | Yes |   | ||
WFD_AttDateTime39 | datetime |   | Yes |   | ||
WFD_AttDateTime40 | datetime |   | Yes |   | ||
WFD_AttDateTime41 | datetime |   | Yes |   | ||
WFD_AttDateTime42 | datetime |   | Yes |   | ||
WFD_AttDateTime43 | datetime |   | Yes |   | ||
WFD_AttDateTime44 | datetime |   | Yes |   | ||
WFD_AttDateTime45 | datetime |   | Yes |   | ||
WFD_AttDateTime46 | datetime |   | Yes |   | ||
WFD_AttDateTime47 | datetime |   | Yes |   | ||
WFD_AttDateTime48 | datetime |   | Yes |   | ||
WFD_AttDateTime49 | datetime |   | Yes |   | ||
WFD_AttDateTime50 | datetime |   | Yes |   | ||
WFD_AttChoose41 | varchar(1000) |   | Yes |   | ||
WFD_AttChoose42 | varchar(1000) |   | Yes |   | ||
WFD_AttChoose43 | varchar(1000) |   | Yes |   | ||
WFD_AttChoose44 | varchar(1000) |   | Yes |   | ||
WFD_AttChoose45 | varchar(1000) |   | Yes |   | ||
WFD_AttChoose46 | varchar(1000) |   | Yes |   | ||
WFD_AttChoose47 | varchar(1000) |   | Yes |   | ||
WFD_AttChoose48 | varchar(1000) |   | Yes |   | ||
WFD_AttChoose49 | varchar(1000) |   | Yes |   | ||
WFD_AttChoose50 | varchar(1000) |   | Yes |   | ||
WFD_AttChoose51 | varchar(1000) |   | Yes |   | ||
WFD_AttChoose52 | varchar(1000) |   | Yes |   | ||
WFD_AttChoose53 | varchar(1000) |   | Yes |   | ||
WFD_AttChoose54 | varchar(1000) |   | Yes |   | ||
WFD_AttChoose55 | varchar(1000) |   | Yes |   | ||
WFD_AttChoose56 | varchar(1000) |   | Yes |   | ||
WFD_AttChoose57 | varchar(1000) |   | Yes |   | ||
WFD_AttChoose58 | varchar(1000) |   | Yes |   | ||
WFD_AttChoose59 | varchar(1000) |   | Yes |   | ||
WFD_AttChoose60 | varchar(1000) |   | Yes |   | ||
WFD_AttChoose61 | varchar(1000) |   | Yes |   | ||
WFD_AttChoose62 | varchar(1000) |   | Yes |   | ||
WFD_AttChoose63 | varchar(1000) |   | Yes |   | ||
WFD_AttChoose64 | varchar(1000) |   | Yes |   | ||
WFD_AttChoose65 | varchar(1000) |   | Yes |   | ||
WFD_AttChoose66 | varchar(1000) |   | Yes |   | ||
WFD_AttChoose67 | varchar(1000) |   | Yes |   | ||
WFD_AttChoose68 | varchar(1000) |   | Yes |   | ||
WFD_AttChoose69 | varchar(1000) |   | Yes |   | ||
WFD_AttChoose70 | varchar(1000) |   | Yes |   | ||
WFD_AttChoose71 | varchar(1000) |   | Yes |   | ||
WFD_AttChoose72 | varchar(1000) |   | Yes |   | ||
WFD_AttChoose73 | varchar(1000) |   | Yes |   | ||
WFD_AttChoose74 | varchar(1000) |   | Yes |   | ||
WFD_AttChoose75 | varchar(1000) |   | Yes |   | ||
WFD_AttChoose76 | varchar(1000) |   | Yes |   | ||
WFD_AttChoose77 | varchar(1000) |   | Yes |   | ||
WFD_AttChoose78 | varchar(1000) |   | Yes |   | ||
WFD_AttChoose79 | varchar(1000) |   | Yes |   | ||
WFD_AttChoose80 | varchar(1000) |   | Yes |   | ||
WFD_AttChoose81 | varchar(1000) |   | Yes |   | ||
WFD_AttChoose82 | varchar(1000) |   | Yes |   | ||
WFD_AttChoose83 | varchar(1000) |   | Yes |   | ||
WFD_AttChoose84 | varchar(1000) |   | Yes |   | ||
WFD_AttChoose85 | varchar(1000) |   | Yes |   | ||
WFD_AttChoose86 | varchar(1000) |   | Yes |   | ||
WFD_AttChoose87 | varchar(1000) |   | Yes |   | ||
WFD_AttChoose88 | varchar(1000) |   | Yes |   | ||
WFD_AttChoose89 | varchar(1000) |   | Yes |   | ||
WFD_AttChoose90 | varchar(1000) |   | Yes |   | ||
WFD_AttText51 | varchar(255) |   | Yes |   | ||
WFD_AttText52 | varchar(255) |   | Yes |   | ||
WFD_AttText53 | varchar(255) |   | Yes |   | ||
WFD_AttText54 | varchar(255) |   | Yes |   | ||
WFD_AttText55 | varchar(255) |   | Yes |   | ||
WFD_AttText56 | varchar(255) |   | Yes |   | ||
WFD_AttText57 | varchar(255) |   | Yes |   | ||
WFD_AttText58 | varchar(255) |   | Yes |   | ||
WFD_AttText59 | varchar(255) |   | Yes |   | ||
WFD_AttText60 | varchar(255) |   | Yes |   | ||
WFD_AttText61 | varchar(255) |   | Yes |   | ||
WFD_AttText62 | varchar(255) |   | Yes |   | ||
WFD_AttText63 | varchar(255) |   | Yes |   | ||
WFD_AttText64 | varchar(255) |   | Yes |   | ||
WFD_AttText65 | varchar(255) |   | Yes |   | ||
WFD_AttText66 | varchar(255) |   | Yes |   | ||
WFD_AttText67 | varchar(255) |   | Yes |   | ||
WFD_AttText68 | varchar(255) |   | Yes |   | ||
WFD_AttText69 | varchar(255) |   | Yes |   | ||
WFD_AttText70 | varchar(255) |   | Yes |   | ||
WFD_AttText71 | varchar(255) |   | Yes |   | ||
WFD_AttText72 | varchar(255) |   | Yes |   | ||
WFD_AttText73 | varchar(255) |   | Yes |   | ||
WFD_AttText74 | varchar(255) |   | Yes |   | ||
WFD_AttText75 | varchar(255) |   | Yes |   | ||
WFD_AttText76 | varchar(255) |   | Yes |   | ||
WFD_AttText77 | varchar(255) |   | Yes |   | ||
WFD_AttText78 | varchar(255) |   | Yes |   | ||
WFD_AttText79 | varchar(255) |   | Yes |   | ||
WFD_AttText80 | varchar(255) |   | Yes |   | ||
WFD_SIGID | int |   |   |   | Element signature ID | |
WFD_ADBID | int |   | Yes |   | Foreign key to WFAttachmentDatabases table | |
WFD_WasAnonymized | bit |   |   |   | ((0)) | Determines if the element was anonymized by personal data removal action |
WFD_Guid | varchar(36) |   |   |   | (newid()) | Global unique ID |
WFD_AttBool21 | bit |   | Yes |   | ||
WFD_AttBool22 | bit |   | Yes |   | ||
WFD_AttBool23 | bit |   | Yes |   | ||
WFD_AttBool24 | bit |   | Yes |   | ||
WFD_AttBool25 | bit |   | Yes |   | ||
WFD_AttBool26 | bit |   | Yes |   | ||
WFD_AttBool27 | bit |   | Yes |   | ||
WFD_AttBool28 | bit |   | Yes |   | ||
WFD_AttBool29 | bit |   | Yes |   | ||
WFD_AttBool30 | bit |   | Yes |   | ||
WFD_AttBool31 | bit |   | Yes |   | ||
WFD_AttBool32 | bit |   | Yes |   | ||
WFD_AttBool33 | bit |   | Yes |   | ||
WFD_AttBool34 | bit |   | Yes |   | ||
WFD_AttBool35 | bit |   | Yes |   | ||
WFD_AttBool36 | bit |   | Yes |   | ||
WFD_AttBool37 | bit |   | Yes |   | ||
WFD_AttBool38 | bit |   | Yes |   | ||
WFD_AttBool39 | bit |   | Yes |   | ||
WFD_AttBool40 | bit |   | Yes |   | ||
WFD_AttChoose1_ID | varchar(1000) |   | Yes | Yes | ||
WFD_AttChoose2_ID | varchar(1000) |   | Yes | Yes | ||
WFD_AttChoose3_ID | varchar(1000) |   | Yes | Yes | ||
WFD_AttChoose4_ID | varchar(1000) |   | Yes | Yes | ||
WFD_AttChoose5_ID | varchar(1000) |   | Yes | Yes | ||
WFD_AttChoose6_ID | varchar(1000) |   | Yes | Yes | ||
WFD_AttChoose7_ID | varchar(1000) |   | Yes | Yes | ||
WFD_AttChoose8_ID | varchar(1000) |   | Yes | Yes | ||
WFD_AttChoose9_ID | varchar(1000) |   | Yes | Yes | ||
WFD_AttChoose10_ID | varchar(1000) |   | Yes | Yes | ||
WFD_AttChoose11_ID | varchar(1000) |   | Yes | Yes | ||
WFD_AttChoose12_ID | varchar(1000) |   | Yes | Yes | ||
WFD_AttChoose13_ID | varchar(1000) |   | Yes | Yes | ||
WFD_AttChoose14_ID | varchar(1000) |   | Yes | Yes | ||
WFD_AttChoose15_ID | varchar(1000) |   | Yes | Yes | ||
WFD_AttChoose16_ID | varchar(1000) |   | Yes | Yes | ||
WFD_AttChoose17_ID | varchar(1000) |   | Yes | Yes | ||
WFD_AttChoose18_ID | varchar(1000) |   | Yes | Yes | ||
WFD_AttChoose19_ID | varchar(1000) |   | Yes | Yes | ||
WFD_AttChoose20_ID | varchar(1000) |   | Yes | Yes | ||
WFD_AttChoose21_ID | varchar(1000) |   | Yes | Yes | ||
WFD_AttChoose22_ID | varchar(1000) |   | Yes | Yes | ||
WFD_AttChoose23_ID | varchar(1000) |   | Yes | Yes | ||
WFD_AttChoose24_ID | varchar(1000) |   | Yes | Yes | ||
WFD_AttChoose25_ID | varchar(1000) |   | Yes | Yes | ||
WFD_AttChoose26_ID | varchar(1000) |   | Yes | Yes | ||
WFD_AttChoose27_ID | varchar(1000) |   | Yes | Yes | ||
WFD_AttChoose28_ID | varchar(1000) |   | Yes | Yes | ||
WFD_AttChoose29_ID | varchar(1000) |   | Yes | Yes | ||
WFD_AttChoose30_ID | varchar(1000) |   | Yes | Yes | ||
WFD_AttChoose31_ID | varchar(1000) |   | Yes | Yes | ||
WFD_AttChoose32_ID | varchar(1000) |   | Yes | Yes | ||
WFD_AttChoose33_ID | varchar(1000) |   | Yes | Yes | ||
WFD_AttChoose34_ID | varchar(1000) |   | Yes | Yes | ||
WFD_AttChoose35_ID | varchar(1000) |   | Yes | Yes | ||
WFD_AttChoose36_ID | varchar(1000) |   | Yes | Yes | ||
WFD_AttChoose37_ID | varchar(1000) |   | Yes | Yes | ||
WFD_AttChoose38_ID | varchar(1000) |   | Yes | Yes | ||
WFD_AttChoose39_ID | varchar(1000) |   | Yes | Yes | ||
WFD_AttChoose40_ID | varchar(1000) |   | Yes | Yes | ||
WFD_AttChoose41_ID | varchar(1000) |   | Yes | Yes | ||
WFD_AttChoose42_ID | varchar(1000) |   | Yes | Yes | ||
WFD_AttChoose43_ID | varchar(1000) |   | Yes | Yes | ||
WFD_AttChoose44_ID | varchar(1000) |   | Yes | Yes | ||
WFD_AttChoose45_ID | varchar(1000) |   | Yes | Yes | ||
WFD_AttChoose46_ID | varchar(1000) |   | Yes | Yes | ||
WFD_AttChoose47_ID | varchar(1000) |   | Yes | Yes | ||
WFD_AttChoose48_ID | varchar(1000) |   | Yes | Yes | ||
WFD_AttChoose49_ID | varchar(1000) |   | Yes | Yes | ||
WFD_AttChoose50_ID | varchar(1000) |   | Yes | Yes | ||
WFD_AttChoose51_ID | varchar(1000) |   | Yes | Yes | ||
WFD_AttChoose52_ID | varchar(1000) |   | Yes | Yes | ||
WFD_AttChoose53_ID | varchar(1000) |   | Yes | Yes | ||
WFD_AttChoose54_ID | varchar(1000) |   | Yes | Yes | ||
WFD_AttChoose55_ID | varchar(1000) |   | Yes | Yes | ||
WFD_AttChoose56_ID | varchar(1000) |   | Yes | Yes | ||
WFD_AttChoose57_ID | varchar(1000) |   | Yes | Yes | ||
WFD_AttChoose58_ID | varchar(1000) |   | Yes | Yes | ||
WFD_AttChoose59_ID | varchar(1000) |   | Yes | Yes | ||
WFD_AttChoose60_ID | varchar(1000) |   | Yes | Yes | ||
WFD_AttChoose61_ID | varchar(1000) |   | Yes | Yes | ||
WFD_AttChoose62_ID | varchar(1000) |   | Yes | Yes | ||
WFD_AttChoose63_ID | varchar(1000) |   | Yes | Yes | ||
WFD_AttChoose64_ID | varchar(1000) |   | Yes | Yes | ||
WFD_AttChoose65_ID | varchar(1000) |   | Yes | Yes | ||
WFD_AttChoose66_ID | varchar(1000) |   | Yes | Yes | ||
WFD_AttChoose67_ID | varchar(1000) |   | Yes | Yes | ||
WFD_AttChoose68_ID | varchar(1000) |   | Yes | Yes | ||
WFD_AttChoose69_ID | varchar(1000) |   | Yes | Yes | ||
WFD_AttChoose70_ID | varchar(1000) |   | Yes | Yes | ||
WFD_AttChoose71_ID | varchar(1000) |   | Yes | Yes | ||
WFD_AttChoose72_ID | varchar(1000) |   | Yes | Yes | ||
WFD_AttChoose73_ID | varchar(1000) |   | Yes | Yes | ||
WFD_AttChoose74_ID | varchar(1000) |   | Yes | Yes | ||
WFD_AttChoose75_ID | varchar(1000) |   | Yes | Yes | ||
WFD_AttChoose76_ID | varchar(1000) |   | Yes | Yes | ||
WFD_AttChoose77_ID | varchar(1000) |   | Yes | Yes | ||
WFD_AttChoose78_ID | varchar(1000) |   | Yes | Yes | ||
WFD_AttChoose79_ID | varchar(1000) |   | Yes | Yes | ||
WFD_AttChoose80_ID | varchar(1000) |   | Yes | Yes | ||
WFD_AttChoose81_ID | varchar(1000) |   | Yes | Yes | ||
WFD_AttChoose82_ID | varchar(1000) |   | Yes | Yes | ||
WFD_AttChoose83_ID | varchar(1000) |   | Yes | Yes | ||
WFD_AttChoose84_ID | varchar(1000) |   | Yes | Yes | ||
WFD_AttChoose85_ID | varchar(1000) |   | Yes | Yes | ||
WFD_AttChoose86_ID | varchar(1000) |   | Yes | Yes | ||
WFD_AttChoose87_ID | varchar(1000) |   | Yes | Yes | ||
WFD_AttChoose88_ID | varchar(1000) |   | Yes | Yes | ||
WFD_AttChoose89_ID | varchar(1000) |   | Yes | Yes | ||
WFD_AttChoose90_ID | varchar(1000) |   | Yes | Yes | ||
WFD_AttPeople1_ID | varchar(1000) |   | Yes | Yes | ||
WFD_AttPeople2_ID | varchar(1000) |   | Yes | Yes | ||
WFD_AttPeople3_ID | varchar(1000) |   | Yes | Yes | ||
WFD_AttPeople4_ID | varchar(1000) |   | Yes | Yes | ||
WFD_AttPeople5_ID | varchar(1000) |   | Yes | Yes | ||
WFD_AttPeople6_ID | varchar(1000) |   | Yes | Yes | ||
WFD_AttPeople7_ID | varchar(1000) |   | Yes | Yes | ||
WFD_AttPeople8_ID | varchar(1000) |   | Yes | Yes | ||
WFD_AttPeople9_ID | varchar(1000) |   | Yes | Yes | ||
WFD_AttPeople10_ID | varchar(1000) |   | Yes | Yes | ||
WFD_AttPeople11_ID | varchar(1000) |   | Yes | Yes | ||
WFD_AttPeople12_ID | varchar(1000) |   | Yes | Yes | ||
WFD_AttPeople13_ID | varchar(1000) |   | Yes | Yes | ||
WFD_AttPeople14_ID | varchar(1000) |   | Yes | Yes | ||
WFD_AttPeople15_ID | varchar(1000) |   | Yes | Yes | ||
WFD_AttChoose1Glob_ID | varchar(1000) |   | Yes | Yes | ||
WFD_AttChoose2Glob_ID | varchar(1000) |   | Yes | Yes | ||
WFD_AttChoose3Glob_ID | varchar(1000) |   | Yes | Yes | ||
WFD_AttChoose4Glob_ID | varchar(1000) |   | Yes | Yes | ||
WFD_AttChoose5Glob_ID | varchar(1000) |   | Yes | Yes | ||
WFD_AttChoose6Glob_ID | varchar(1000) |   | Yes | Yes | ||
WFD_AttChoose7Glob_ID | varchar(1000) |   | Yes | Yes | ||
WFD_AttChoose8Glob_ID | varchar(1000) |   | Yes | Yes | ||
WFD_AttChoose9Glob_ID | varchar(1000) |   | Yes | Yes | ||
WFD_AttChoose10Glob_ID | varchar(1000) |   | Yes | Yes |
Name | Foreign Table | Primary Key |
---|---|---|
FK_WFElements_WFAttachmentDatabases_ADBID | WFElements | PK_AttachmentDatabases |
FK_WFElements_Companies | WFElements | PK_Companies |
FK_WFElements_WFDocTypes | WFElements | PK_WFDocTypes |
FK_WFElements_Signatures | WFElements | PK_WFElementSignatures |
FK_WFElements_DicElementStatuses | WFElements | PK_DicElementStatuses |
FK_WFData_WFSteps | WFElements | PK_WFSteps |
FK_WFElements_WFElements | WFElements | PK_WFData |
FK_WFElements_WFRegisterPoints | WFElements | PK_WFRegisterPoints |
FK_ActiveTasks_WFElements | ActiveTasks | PK_WFData |
FK_HistoryTasks_WFElements | HistoryTasks | PK_WFData |
FK_HistoryTasks_WFElements | HistoryTasks | PK_WFData |
FK_MobilePushNotificationsQueueItems_WFElements | MobilePushNotificationsQueueItems | PK_WFData |
FK_PathTransitionLocations_WFElements | PathTransitionLocations | PK_WFData |
FK_PerformanceIndicatorExecutions_WFElements | PerformanceIndicatorExecutions | PK_WFData |
FK_SharedInstances_WFElements | SharedInstances | PK_WFData |
FK_WFArchivedElementDatas_WFElements | WFArchivedElementDatas | PK_WFData |
FK_WFDataAttachmets_WFData | WFDataAttachmets | PK_WFData |
FK_WFElementCheckouts_WFElements | WFElementCheckouts | PK_WFData |
FK_WFElementDatails_WFD | WFElementDetails | PK_WFData |
FK_WFElements_WFElements | WFElements | PK_WFData |
FK_WFElementTimeouts_WFElements | WFElementTimeouts | PK_WFData |
FK_WFSecurity_WFData | WFSecurities | PK_WFData |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_WFData | Yes | Yes | CLUSTERED | 100 |
IX_WFElements_STPID_COMID |   |   | NONCLUSTERED | 80 |
IX_WFElements_AttChoose1_ID |   |   | NONCLUSTERED | 0 |
IX_WFElements_AttChoose2_ID |   |   | NONCLUSTERED | 0 |
IX_WFElements_IsFinish |   |   | NONCLUSTERED | 100 |
IX_WFElements_AttChoose3_ID |   |   | NONCLUSTERED | 0 |
UQ_WFElements_Guid | Yes |   | NONCLUSTERED | 100 |
IX_WFElements_AttChoose4_ID |   |   | NONCLUSTERED | 0 |
IX_WFElements_AttChoose5_ID |   |   | NONCLUSTERED | 0 |
IX_WFElements_AttChoose6_ID |   |   | NONCLUSTERED | 0 |
IX_WFElements_AttChoose7_ID |   |   | NONCLUSTERED | 0 |
IX_WFElements_AttChoose8_ID |   |   | NONCLUSTERED | 0 |
IX_WFElements_AttChoose9_ID |   |   | NONCLUSTERED | 0 |
IX_WFElements_AttChoose10_ID |   |   | NONCLUSTERED | 0 |
IX_WFElements_AttChoose11_ID |   |   | NONCLUSTERED | 0 |
IX_WFElements_AttChoose12_ID |   |   | NONCLUSTERED | 0 |
IX_WFElements_AttChoose13_ID |   |   | NONCLUSTERED | 0 |
IX_WFElements_AttChoose14_ID |   |   | NONCLUSTERED | 0 |
IX_WFElements_AttChoose15_ID |   |   | NONCLUSTERED | 0 |
IX_WFElements_AttChoose16_ID |   |   | NONCLUSTERED | 0 |
IX_WFElements_AttChoose17_ID |   |   | NONCLUSTERED | 0 |
IX_WFElements_AttChoose18_ID |   |   | NONCLUSTERED | 0 |
IX_WFElements_AttChoose19_ID |   |   | NONCLUSTERED | 0 |
IX_WFElements_AttChoose20_ID |   |   | NONCLUSTERED | 0 |
IX_WFElements_AttChoose21_ID |   |   | NONCLUSTERED | 0 |
IX_WFElements_AttChoose22_ID |   |   | NONCLUSTERED | 0 |
IX_WFElements_AttChoose23_ID |   |   | NONCLUSTERED | 0 |
IX_WFElements_AttChoose24_ID |   |   | NONCLUSTERED | 0 |
IX_WFElements_DTYPEID |   |   | NONCLUSTERED | 80 |
IX_WFElements_DTYPEID_STPID_COMID |   |   | NONCLUSTERED | 80 |
IX_WFElements_CreatedBy |   |   | NONCLUSTERED | 100 |
IX_WFElements_WFD_Signature |   |   | NONCLUSTERED | 100 |
IX_WFElements_WFDID |   |   | NONCLUSTERED | 100 |
IX_WFElements_AttChoose25_ID |   |   | NONCLUSTERED | 0 |
IX_WFElements_AttChoose26_ID |   |   | NONCLUSTERED | 0 |
IX_WFElements_AttChoose27_ID |   |   | NONCLUSTERED | 0 |
IX_WFElements_AttChoose28_ID |   |   | NONCLUSTERED | 0 |
IX_WFElements_AttChoose29_ID |   |   | NONCLUSTERED | 0 |
IX_WFElements_AttChoose30_ID |   |   | NONCLUSTERED | 0 |
IX_WFElements_AttChoose31_ID |   |   | NONCLUSTERED | 0 |
IX_WFElements_AttChoose32_ID |   |   | NONCLUSTERED | 0 |
IX_WFElements_AttChoose33_ID |   |   | NONCLUSTERED | 0 |
IX_WFElements_AttChoose34_ID |   |   | NONCLUSTERED | 0 |
IX_WFElements_AttChoose35_ID |   |   | NONCLUSTERED | 0 |
IX_WFElements_AttChoose36_ID |   |   | NONCLUSTERED | 0 |
IX_WFElements_AttChoose37_ID |   |   | NONCLUSTERED | 0 |
IX_WFElements_AttChoose38_ID |   |   | NONCLUSTERED | 0 |
IX_WFElements_AttChoose39_ID |   |   | NONCLUSTERED | 0 |
IX_WFElements_AttChoose40_ID |   |   | NONCLUSTERED | 0 |
IX_WFElements_AttChoose41_ID |   |   | NONCLUSTERED | 0 |
IX_WFElements_AttChoose42_ID |   |   | NONCLUSTERED | 0 |
IX_WFElements_AttChoose43_ID |   |   | NONCLUSTERED | 0 |
IX_WFElements_AttChoose44_ID |   |   | NONCLUSTERED | 0 |
IX_WFElements_AttChoose45_ID |   |   | NONCLUSTERED | 0 |
IX_WFElements_AttChoose46_ID |   |   | NONCLUSTERED | 0 |
IX_WFElements_AttChoose47_ID |   |   | NONCLUSTERED | 0 |
IX_WFElements_AttChoose48_ID |   |   | NONCLUSTERED | 0 |
IX_WFElements_AttChoose49_ID |   |   | NONCLUSTERED | 0 |
IX_WFElements_AttChoose50_ID |   |   | NONCLUSTERED | 0 |
IX_WFElements_AttChoose51_ID |   |   | NONCLUSTERED | 0 |
IX_WFElements_AttChoose52_ID |   |   | NONCLUSTERED | 0 |
IX_WFElements_AttChoose53_ID |   |   | NONCLUSTERED | 0 |
IX_WFElements_AttChoose54_ID |   |   | NONCLUSTERED | 0 |
IX_WFElements_AttChoose55_ID |   |   | NONCLUSTERED | 0 |
IX_WFElements_AttChoose56_ID |   |   | NONCLUSTERED | 0 |
IX_WFElements_AttChoose57_ID |   |   | NONCLUSTERED | 0 |
IX_WFElements_AttChoose58_ID |   |   | NONCLUSTERED | 0 |
IX_WFElements_AttChoose59_ID |   |   | NONCLUSTERED | 0 |
IX_WFElements_AttChoose60_ID |   |   | NONCLUSTERED | 0 |
IX_WFElements_AttChoose61_ID |   |   | NONCLUSTERED | 0 |
IX_WFElements_AttChoose62_ID |   |   | NONCLUSTERED | 0 |
IX_WFElements_AttChoose63_ID |   |   | NONCLUSTERED | 0 |
IX_WFElements_AttChoose64_ID |   |   | NONCLUSTERED | 0 |
IX_WFElements_AttChoose65_ID |   |   | NONCLUSTERED | 0 |
IX_WFElements_AttChoose66_ID |   |   | NONCLUSTERED | 0 |
IX_WFElements_AttChoose67_ID |   |   | NONCLUSTERED | 0 |
IX_WFElements_AttChoose68_ID |   |   | NONCLUSTERED | 0 |
IX_WFElements_AttChoose69_ID |   |   | NONCLUSTERED | 0 |
IX_WFElements_AttChoose70_ID |   |   | NONCLUSTERED | 0 |
IX_WFElements_AttChoose71_ID |   |   | NONCLUSTERED | 0 |
IX_WFElements_AttChoose72_ID |   |   | NONCLUSTERED | 0 |
IX_WFElements_AttChoose73_ID |   |   | NONCLUSTERED | 0 |
IX_WFElements_AttChoose74_ID |   |   | NONCLUSTERED | 0 |
IX_WFElements_AttChoose75_ID |   |   | NONCLUSTERED | 0 |
IX_WFElements_AttChoose76_ID |   |   | NONCLUSTERED | 0 |
IX_WFElements_AttChoose77_ID |   |   | NONCLUSTERED | 0 |
IX_WFElements_AttChoose78_ID |   |   | NONCLUSTERED | 0 |
IX_WFElements_AttChoose79_ID |   |   | NONCLUSTERED | 0 |
IX_WFElements_AttChoose80_ID |   |   | NONCLUSTERED | 0 |
IX_WFElements_AttChoose81_ID |   |   | NONCLUSTERED | 0 |
IX_WFElements_AttChoose82_ID |   |   | NONCLUSTERED | 0 |
IX_WFElements_AttChoose83_ID |   |   | NONCLUSTERED | 0 |
IX_WFElements_AttChoose84_ID |   |   | NONCLUSTERED | 0 |
IX_WFElements_AttChoose85_ID |   |   | NONCLUSTERED | 0 |
IX_WFElements_AttChoose86_ID |   |   | NONCLUSTERED | 0 |
IX_WFElements_AttChoose87_ID |   |   | NONCLUSTERED | 0 |
IX_WFElements_AttChoose88_ID |   |   | NONCLUSTERED | 0 |
IX_WFElements_AttChoose89_ID |   |   | NONCLUSTERED | 0 |
IX_WFElements_AttChoose90_ID |   |   | NONCLUSTERED | 0 |
IX_WFElements_AttPeople1_ID |   |   | NONCLUSTERED | 0 |
IX_WFElements_AttPeople2_ID |   |   | NONCLUSTERED | 0 |
IX_WFElements_AttPeople3_ID |   |   | NONCLUSTERED | 0 |
IX_WFElements_AttPeople4_ID |   |   | NONCLUSTERED | 0 |
IX_WFElements_AttPeople5_ID |   |   | NONCLUSTERED | 0 |
IX_WFElements_AttPeople6_ID |   |   | NONCLUSTERED | 0 |
IX_WFElements_AttPeople7_ID |   |   | NONCLUSTERED | 0 |
IX_WFElements_AttPeople8_ID |   |   | NONCLUSTERED | 0 |
IX_WFElements_AttPeople9_ID |   |   | NONCLUSTERED | 0 |
IX_WFElements_AttPeople10_ID |   |   | NONCLUSTERED | 0 |
IX_WFElements_AttPeople11_ID |   |   | NONCLUSTERED | 0 |
IX_WFElements_AttPeople12_ID |   |   | NONCLUSTERED | 0 |
IX_WFElements_AttPeople13_ID |   |   | NONCLUSTERED | 0 |
IX_WFElements_AttPeople14_ID |   |   | NONCLUSTERED | 0 |
IX_WFElements_AttPeople15_ID |   |   | NONCLUSTERED | 0 |
IX_WFElements_AttChoose1Glob_ID |   |   | NONCLUSTERED | 0 |
IX_WFElements_AttChoose2Glob_ID |   |   | NONCLUSTERED | 0 |
IX_WFElements_AttChoose3Glob_ID |   |   | NONCLUSTERED | 0 |
IX_WFElements_AttChoose4Glob_ID |   |   | NONCLUSTERED | 0 |
IX_WFElements_AttChoose5Glob_ID |   |   | NONCLUSTERED | 0 |
IX_WFElements_AttChoose6Glob_ID |   |   | NONCLUSTERED | 0 |
IX_WFElements_AttChoose7Glob_ID |   |   | NONCLUSTERED | 0 |
IX_WFElements_AttChoose8Glob_ID |   |   | NONCLUSTERED | 0 |
IX_WFElements_AttChoose9Glob_ID |   |   | NONCLUSTERED | 0 |
IX_WFElements_AttChoose10Glob_ID |   |   | NONCLUSTERED | 0 |
Description: | Table contains global environment variables |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
EGV_ID | int | Yes |   |   | Identifier | |
EGV_Name | varchar(255) |   |   |   | Name | |
EGV_Default | varchar(2000) |   |   |   | Default variable value | |
EGV_Dev | varchar(2000) |   |   |   | Value of a variable on developer environment | |
EGV_Test | varchar(2000) |   |   |   | Value of a variable on test environment | |
EGV_Prod | varchar(2000) |   |   |   | Value of a variable on production environment | |
EGV_Description | varchar(MAX) |   | Yes |   | Environment variable description | |
EGV_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
EGV_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
EGV_RowVersion | timestamp |   |   | Yes | Timestamp | |
EGV_Guid | varchar(36) |   |   |   | (newid()) | GUID |
EGV_UseDev | bit |   |   |   | ((0)) | Determines if DEV values is should be used |
EGV_UseTest | bit |   |   |   | ((0)) | Determines if TEST values is should be used |
EGV_UseProd | bit |   |   |   | ((0)) | Determines if PROD values is should be used |
EGV_GroupID | int |   | Yes |   | Related variables group Id |
Name | Foreign Table | Primary Key |
---|---|---|
FK_WFEnvironmentGlobalVariables_WFEnvironmentGlobalVariablesGroups | WFEnvironmentGlobalVariables | PK_WFEnvironmentGlobalVariablesGroups |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_WFEnvironmentGlobalVariables | Yes | Yes | CLUSTERED | 100 |
UQ_EnvironmentGlobalVariables_Guid | Yes |   | NONCLUSTERED | 100 |
Description: | Table contains global environment variables groups |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
EGVG_ID | int | Yes |   |   | Environment Global Variables Groups ID | |
EGVG_Name | varchar(256) |   |   |   | Group name | |
EGVG_Description | varchar(MAX) |   | Yes |   | Group description | |
EGVG_Guid | varchar(36) |   |   |   | (newid()) | Guid |
EGVG_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Insert time |
EGVG_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last update time |
EGVG_RowVersion | timestamp |   |   | Yes | Timestamp |
Name | Foreign Table | Primary Key |
---|---|---|
FK_WFEnvironmentGlobalVariables_WFEnvironmentGlobalVariablesGroups | WFEnvironmentGlobalVariables | PK_WFEnvironmentGlobalVariablesGroups |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_WFEnvironmentGlobalVariablesGroups | Yes | Yes | CLUSTERED | 100 |
UQ_WFEnvironmentGlobalVariablesGroups_Guid | Yes |   | NONCLUSTERED | 100 |
Description: | Table contains process environment variables |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
EPV_ID | int | Yes |   |   | Identifier | |
EPV_DEFID | int |   |   |   | Foreign key referenced to WFDefinition ID | |
EPV_Name | varchar(255) |   |   |   | Name | |
EPV_Default | varchar(2000) |   |   |   | Default variable value | |
EPV_Dev | varchar(2000) |   |   |   | Value of a variable on developer environment | |
EPV_Test | varchar(2000) |   |   |   | Value of a variable on test environment | |
EPV_Prod | varchar(2000) |   |   |   | Value of a variable on production environment | |
EPV_Description | varchar(MAX) |   | Yes |   | Environment variable description | |
EPV_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
EPV_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
EPV_RowVersion | timestamp |   |   | Yes | Timestamp | |
EPV_Guid | varchar(36) |   |   |   | (newid()) | GUID |
EPV_UseDev | bit |   |   |   | ((0)) | Determines if DEV values is should be used |
EPV_UseTest | bit |   |   |   | ((0)) | Determines if TEST values is should be used |
EPV_UseProd | bit |   |   |   | ((0)) | Determines if PROD values is should be used |
EPV_GroupID | int |   | Yes |   | Related variables group Id |
Name | Foreign Table | Primary Key |
---|---|---|
FK_WFEnvironmentProcessVariables_WFDefinitions | WFEnvironmentProcessVariables | PK_WFDefinitions |
FK_WFEnvironmentProcessVariables_WFEnvironmentProcessVariablesGroups | WFEnvironmentProcessVariables | PK_WFEnvironmentProcessVariablesGroups |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_WFEnvironmentProcessVariables | Yes | Yes | CLUSTERED | 100 |
UQ_EnvironmentProcessVariables_Guid | Yes |   | NONCLUSTERED | 100 |
IX_WFEnvironmentProcessVariables_EPV_DEFID |   |   | NONCLUSTERED | 100 |
Description: | Table contains process environment variables groups |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
EPVG_ID | int | Yes |   |   | Environment Process Variables Groups ID | |
EPVG_Name | varchar(256) |   |   |   | Group name | |
EPVG_Description | varchar(MAX) |   | Yes |   | Group description | |
EPVG_DEFID | int |   |   |   | Related Process ID | |
EPVG_Guid | varchar(36) |   |   |   | (newid()) | Guid |
EPVG_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Insert time |
EPVG_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last update time |
EPVG_RowVersion | timestamp |   |   | Yes | Timestamp |
Name | Foreign Table | Primary Key |
---|---|---|
FK_WFEnvironmentProcessVariablesGroups_WFDefinitions | WFEnvironmentProcessVariablesGroups | PK_WFDefinitions |
FK_WFEnvironmentProcessVariables_WFEnvironmentProcessVariablesGroups | WFEnvironmentProcessVariables | PK_WFEnvironmentProcessVariablesGroups |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_WFEnvironmentProcessVariablesGroups | Yes | Yes | CLUSTERED | 100 |
UQ_WFEnvironmentProcessVariablesGroups_Guid | Yes |   | NONCLUSTERED | 100 |
IX_WFEnvironmentProcessVariablesGroups_EPVG_DEFID |   |   | NONCLUSTERED | 100 |
Description: | Table contains definition of columns contained in WFElements, along with information what kind of form fields can be contained in those columns. |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
FDEF_ID | int | Yes |   |   | Identifier | |
FDEF_Name | varchar(50) |   |   |   | Name | |
FDEF_WFFieldTypeID | int |   |   |   | Field type identifier: 1-Varchar(255) 2-Text 3-Boolean 4.VarcharChoose 5-Int 6-Decimal 7-DateTime 10-DocType 11-AssignedPerson | |
FDEF_Description | varchar(500) |   | Yes |   | Description | |
FDEF_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Row insert date |
FDEF_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Row update date |
FDEF_RowVersion | timestamp |   |   | Yes | Wersja wiersza *Row version | |
FDEF_Guid | varchar(36) |   |   |   |
Name | Foreign Table | Primary Key |
---|---|---|
FK_WFFieldDefinitions_DicWFFieldTypes | WFFieldDefinitions | PK_DicWFFieldTypes |
FK_FieldTemplates_WFFieldDefinitions | FieldTemplates | PK_WFFieldDefinitions |
FK_WFConfigurations_WFFieldDefinitions | WFConfigurations | PK_WFFieldDefinitions |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_WFFieldDefinitions | Yes | Yes | CLUSTERED | 100 |
UQ_WFFieldDefinitions_Guid | Yes |   | NONCLUSTERED | 100 |
UQ_WFFieldDefinitions_Name | Yes |   | NONCLUSTERED | 100 |
Description: | Table contains definition of columns from WFElementsDetails It also defines what kind of items list columns can be contained in certain table’s columns |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
FDD_ID | int | Yes |   |   | Identifier | |
FDD_Name | varchar(50) |   |   |   | Name of the field detail definition | |
FDD_FieldDetailTypeID | int |   |   |   | Related DicFieldDetailTypes identifier | |
FDD_Description | varchar(500) |   | Yes |   | Description | |
FDD_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
FDD_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
FDD_RowVersion | timestamp |   |   | Yes | Timestamp | |
FDD_Guid | varchar(36) |   |   |   | Entry unique identifier for import export mechanism |
Name | Foreign Table | Primary Key |
---|---|---|
FK_WFFieldDetailDefinitions_DicFieldDetailTypes | WFFieldDetailDefinitions | PK_DicFieldDetailTypes |
FK_WFDetailConfigs_WFFieldDetailDefinitions | WFDetailConfigs | PK_WFFieldDetailDefinitions |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_WFFieldDetailDefinitions | Yes | Yes | CLUSTERED | 100 |
UQ_WFFieldDetailDefinitions_Guid | Yes |   | NONCLUSTERED | 100 |
UQ_WFFieldDetailDefinitions_Name | Yes |   | NONCLUSTERED | 100 |
Description: | Table contains attachments metadata history from WFDataAttachments table. |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
WFA_ID | int | Yes |   |   | Identifier | |
WFA_OrgID | int |   |   |   | Original instance identifier from WFAttachments table | |
WFA_WFDID | int |   | Yes |   | Workflow instance identifier which refers to a row in WFElement table | |
WFA_WFHID | int |   |   |   | Workflow instance history version identifier which refers to a row in WFHistoryElements table | |
WFA_Name | varchar(255) |   | Yes |   | HistoryAttachment name | |
WFA_Value | image(2147483647) |   | Yes |   | Attachment (binary) | |
WFA_Description | varchar(500) |   | Yes |   | HistoryAttachment description | |
WFA_IsSecret | bit |   | Yes |   | Is secret | |
WFA_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
WFA_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
WFA_CreatedBy | varchar(255) |   | Yes |   | Author | |
WFA_UpdatedBy | varchar(255) |   | Yes |   | Last modifier | |
WFA_RowVersion | timestamp |   |   | Yes | Timestamp | |
WFA_IsDeleted | bit |   |   |   | ((0)) | A flag indicating whether the row is deleted |
WFA_FileType | varchar(20) |   | Yes |   | File type | |
WFA_FileIsOcr | int |   | Yes |   | Is file OCR | |
WFA_FileVersion | int |   |   |   | ((0)) | File version |
WFA_Attribute1 | varchar(1000) |   | Yes |   | Attribute | |
WFA_TypeID | int |   |   |   | ((0)) | Attachment type |
WFA_IsMailMessage | bit |   |   |   | ((0)) | Is mail message |
WFA_MessageTo | varchar(MAX) |   | Yes |   | Message to | |
WFA_MessageCc | varchar(MAX) |   | Yes |   | Message Cc | |
WFA_MessageSubject | varchar(MAX) |   | Yes |   | Message subject | |
WFA_MessageFrom | varchar(MAX) |   | Yes |   | Message from | |
WFA_ContentLength | int |   | Yes |   | Content length | |
WFA_MessageSentDate | datetime |   | Yes |   | Column contains informations about date of sent message | |
WFA_MessageFromMail | varchar(MAX) |   | Yes |   | Message from mail | |
WFA_DEFID | int |   | Yes |   | Stores process ID of history attachment | |
WFA_MessageId | varchar(MAX) |   | Yes |   | Column contains mail message ID | |
WFA_Impersonator | varchar(255) |   | Yes |   | Column contains mail impersonator's login and name |
Name | Foreign Table | Primary Key |
---|
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_WFHistoryAttachments | Yes | Yes | CLUSTERED | 100 |
IX_WFHistoryAttachments_OrgID |   |   | NONCLUSTERED | 100 |
IX_WFHistoryAttachments_WFDID |   |   | NONCLUSTERED | 100 |
IX_WFHistoryAttachments_WFHID |   |   | NONCLUSTERED | 100 |
Description: | Contains historical data from items’ lists rows . as a full snapshot of rows with information who and when created them. |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
HDT_ID | int | Yes |   |   | ||
HDT_DETID | int |   | Yes |   | ||
HDT_Name | varchar(50) |   | Yes |   | ||
HDT_Description | varchar(500) |   | Yes |   | ||
HDT_WFDID | int |   | Yes |   | ||
HDT_Att1 | varchar(1000) |   | Yes |   | ||
HDT_Att2 | varchar(1000) |   | Yes |   | ||
HDT_Att3 | varchar(1000) |   | Yes |   | ||
HDT_Att4 | varchar(1000) |   | Yes |   | ||
HDT_Att5 | varchar(1000) |   | Yes |   | ||
HDT_Att6 | varchar(1000) |   | Yes |   | ||
HDT_Att7 | varchar(1000) |   | Yes |   | ||
HDT_Att8 | varchar(1000) |   | Yes |   | ||
HDT_Att9 | varchar(1000) |   | Yes |   | ||
HDT_Att10 | varchar(1000) |   | Yes |   | ||
HDT_Value | decimal(25,10) |   | Yes |   | ||
HDT_Value1 | decimal(25,10) |   | Yes |   | ||
HDT_Value2 | decimal(25,10) |   | Yes |   | ||
HDT_Percent | decimal(25,10) |   | Yes |   | ||
HDT_Version | int |   |   |   | ((1)) | |
HDT_CreatedBy | varchar(255) |   | Yes |   | Author | |
HDT_UpdatedBy | varchar(255) |   | Yes |   | Last modifier | |
HDT_IsDeleted | bit |   |   |   | ((0)) | A flag indicating whether the row is deleted |
HDT_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Row insert date |
HDT_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Row update date |
HDT_RowVersion | timestamp |   |   | Yes | Row version | |
HDT_WFCONID | int |   | Yes |   | ||
HDT_Att11 | varchar(1000) |   | Yes |   | ||
HDT_Att12 | varchar(1000) |   | Yes |   | ||
HDT_Att13 | varchar(1000) |   | Yes |   | ||
HDT_Att14 | varchar(1000) |   | Yes |   | ||
HDT_Att15 | varchar(1000) |   | Yes |   | ||
HDT_Value3 | decimal(21,6) |   | Yes |   | ||
HDT_Value4 | decimal(21,6) |   | Yes |   | ||
HDT_Value5 | decimal(21,6) |   | Yes |   | ||
HDT_Value6 | decimal(21,6) |   | Yes |   | ||
HDT_Value7 | decimal(21,6) |   | Yes |   | ||
HDT_Value8 | decimal(21,6) |   | Yes |   | ||
HDT_Value9 | decimal(21,6) |   | Yes |   | ||
HDT_Value10 | decimal(21,6) |   | Yes |   | ||
HDT_LongText1 | text |   | Yes |   | ||
HDT_LongText2 | text |   | Yes |   | ||
HDT_LongText3 | text |   | Yes |   | ||
HDT_LongText4 | text |   | Yes |   | ||
HDT_LongText5 | text |   | Yes |   | ||
HDT_Att16 | nvarchar(1000) |   | Yes |   | ||
HDT_Att17 | nvarchar(1000) |   | Yes |   | ||
HDT_Att18 | nvarchar(1000) |   | Yes |   | ||
HDT_Att19 | nvarchar(1000) |   | Yes |   | ||
HDT_Att20 | nvarchar(1000) |   | Yes |   | ||
HDT_Att21 | nvarchar(1000) |   | Yes |   | ||
HDT_Att22 | nvarchar(1000) |   | Yes |   | ||
HDT_Att23 | nvarchar(1000) |   | Yes |   | ||
HDT_Att24 | nvarchar(1000) |   | Yes |   | ||
HDT_Att25 | nvarchar(1000) |   | Yes |   | ||
HDT_Att26 | nvarchar(1000) |   | Yes |   | ||
HDT_Att27 | nvarchar(1000) |   | Yes |   | ||
HDT_Att28 | nvarchar(1000) |   | Yes |   | ||
HDT_Att29 | nvarchar(1000) |   | Yes |   | ||
HDT_Att30 | nvarchar(1000) |   | Yes |   | ||
HDT_Att31 | nvarchar(1000) |   | Yes |   | ||
HDT_Att32 | nvarchar(1000) |   | Yes |   | ||
HDT_Att33 | nvarchar(1000) |   | Yes |   | ||
HDT_Att34 | nvarchar(1000) |   | Yes |   | ||
HDT_Att35 | nvarchar(1000) |   | Yes |   | ||
HDT_Att36 | nvarchar(1000) |   | Yes |   | ||
HDT_Att37 | nvarchar(1000) |   | Yes |   | ||
HDT_Att38 | nvarchar(1000) |   | Yes |   | ||
HDT_Att39 | nvarchar(1000) |   | Yes |   | ||
HDT_Att40 | nvarchar(1000) |   | Yes |   | ||
HDT_Value11 | decimal(21,6) |   | Yes |   | HDT_Value11 | |
HDT_Value12 | decimal(21,6) |   | Yes |   | HDT_Value12 | |
HDT_Value13 | decimal(21,6) |   | Yes |   | HDT_Value13 | |
HDT_Value14 | decimal(21,6) |   | Yes |   | HDT_Value14 | |
HDT_Value15 | decimal(21,6) |   | Yes |   | HDT_Value15 | |
HDT_Value16 | decimal(21,6) |   | Yes |   | HDT_Value16 | |
HDT_Value17 | decimal(21,6) |   | Yes |   | HDT_Value17 | |
HDT_Value18 | decimal(21,6) |   | Yes |   | HDT_Value18 | |
HDT_Value19 | decimal(21,6) |   | Yes |   | HDT_Value19 | |
HDT_Value20 | decimal(21,6) |   | Yes |   | HDT_Value20 | |
HDT_Value21 | decimal(21,6) |   | Yes |   | HDT_Value21 | |
HDT_Value22 | decimal(21,6) |   | Yes |   | HDT_Value22 | |
HDT_Value23 | decimal(21,6) |   | Yes |   | HDT_Value23 | |
HDT_Value24 | decimal(21,6) |   | Yes |   | HDT_Value24 | |
HDT_Value25 | decimal(21,6) |   | Yes |   | HDT_Value25 | |
HDT_Value26 | decimal(21,6) |   | Yes |   | HDT_Value26 | |
HDT_Value27 | decimal(21,6) |   | Yes |   | HDT_Value27 | |
HDT_Value28 | decimal(21,6) |   | Yes |   | HDT_Value28 | |
HDT_Value29 | decimal(21,6) |   | Yes |   | HDT_Value29 | |
HDT_Value30 | decimal(21,6) |   | Yes |   | HDT_Value30 | |
HDT_RowIndex | int |   | Yes |   | Row index for sorting purposes |
Name | Foreign Table | Primary Key |
---|
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_WFHistoryElementDetails | Yes | Yes | CLUSTERED | 100 |
IX_WFHistoryElementDetails_WFDID_Version_WFCONID |   |   | NONCLUSTERED | 100 |
Description: | Tabel for WFHistoryElements trace logs |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
HTL_ID | int | Yes |   |   | Identifier | |
HTL_WFHID | int |   |   |   | WFHistoryElements foreign key | |
HTL_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
HTL_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
HTL_RowVersion | timestamp |   |   | Yes | Timestamp | |
HTL_CreatedBy | varchar(255) |   |   |   | Author | |
HTL_UpdatedBy | varchar(255) |   |   |   | Last modifier | |
HTL_LastTraversingLog | varchar(MAX) |   | Yes |   | Trace logs |
Name | Foreign Table | Primary Key |
---|
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_WFHistoryElementTraceLogs | Yes | Yes | CLUSTERED | 100 |
UQ_WFHistoryElementTraceLogs_HTL_WFHID | Yes |   | NONCLUSTERED | 100 |
Description: | Contains historical data from elements (stored in WFElements table), as a full snapshot of rows with information who and when created them. |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
WFH_ID | int | Yes |   |   | ||
WFH_OrgID | int |   | Yes |   | ||
WFH_COMID | int |   |   |   | ((1)) | |
WFH_Name | varchar(50) |   | Yes |   | ||
WFH_Description | text |   | Yes |   | ||
WFH_DTYPEID | int |   | Yes |   | ||
WFH_SUBDTYPEID | int |   | Yes |   | Instance subtype ID | |
WFH_STPID | int |   | Yes |   | ||
WFH_Version | int |   |   |   | ((1)) | Instance version |
WFH_WFVersion | int |   |   |   | ((0)) | |
WFH_CreatedBy | varchar(255) |   | Yes |   | Author | |
WFH_UpdatedBy | varchar(255) |   | Yes |   | Last modifier | |
WFH_AssignedPersons | varchar(255) |   | Yes |   | ||
WFH_AssignedPersonsDW | varchar(1000) |   | Yes |   | ||
WFH_Signature | varchar(100) |   | Yes |   | ||
WFH_ActualCreatedTasks | varchar(50) |   | Yes |   | ||
WFH_IsFinish | bit |   | Yes |   | ||
WFH_IsDeleted | bit |   |   |   | ((0)) | A flag indicating whether the row is deleted |
WFH_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Row insert date |
WFH_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Row update date |
WFH_AttText1Glob | varchar(255) |   | Yes |   | ||
WFH_AttText2Glob | varchar(255) |   | Yes |   | ||
WFH_AttText3Glob | varchar(255) |   | Yes |   | ||
WFH_AttText4Glob | varchar(255) |   | Yes |   | ||
WFH_AttText5Glob | varchar(255) |   | Yes |   | ||
WFH_AttText6Glob | varchar(255) |   | Yes |   | ||
WFH_AttText7Glob | varchar(255) |   | Yes |   | ||
WFH_AttText8Glob | varchar(255) |   | Yes |   | ||
WFH_AttText9Glob | varchar(255) |   | Yes |   | ||
WFH_AttText10Glob | varchar(255) |   | Yes |   | ||
WFH_AttChoose1Glob | varchar(1000) |   | Yes |   | ||
WFH_AttChoose2Glob | varchar(1000) |   | Yes |   | ||
WFH_AttChoose3Glob | varchar(1000) |   | Yes |   | ||
WFH_AttChoose4Glob | varchar(1000) |   | Yes |   | ||
WFH_AttChoose5Glob | varchar(1000) |   | Yes |   | ||
WFH_AttChoose6Glob | varchar(1000) |   | Yes |   | ||
WFH_AttChoose7Glob | varchar(1000) |   | Yes |   | ||
WFH_AttChoose8Glob | varchar(1000) |   | Yes |   | ||
WFH_AttChoose9Glob | varchar(1000) |   | Yes |   | ||
WFH_AttChoose10Glob | varchar(1000) |   | Yes |   | ||
WFH_AttText1 | varchar(255) |   | Yes |   | ||
WFH_AttText2 | varchar(255) |   | Yes |   | ||
WFH_AttText3 | varchar(255) |   | Yes |   | ||
WFH_AttText4 | varchar(255) |   | Yes |   | ||
WFH_AttText5 | varchar(255) |   | Yes |   | ||
WFH_AttText6 | varchar(255) |   | Yes |   | ||
WFH_AttText7 | varchar(255) |   | Yes |   | ||
WFH_AttText8 | varchar(255) |   | Yes |   | ||
WFH_AttText9 | varchar(255) |   | Yes |   | ||
WFH_AttText10 | varchar(255) |   | Yes |   | ||
WFH_AttText11 | varchar(255) |   | Yes |   | ||
WFH_AttText12 | varchar(255) |   | Yes |   | ||
WFH_AttText13 | varchar(255) |   | Yes |   | ||
WFH_AttText14 | varchar(255) |   | Yes |   | ||
WFH_AttText15 | varchar(255) |   | Yes |   | ||
WFH_AttText16 | varchar(255) |   | Yes |   | ||
WFH_AttText17 | varchar(255) |   | Yes |   | ||
WFH_AttText18 | varchar(255) |   | Yes |   | ||
WFH_AttText19 | varchar(255) |   | Yes |   | ||
WFH_AttText20 | varchar(255) |   | Yes |   | ||
WFH_AttText21 | varchar(255) |   | Yes |   | ||
WFH_AttText22 | varchar(255) |   | Yes |   | ||
WFH_AttText23 | varchar(255) |   | Yes |   | ||
WFH_AttText24 | varchar(255) |   | Yes |   | ||
WFH_AttText25 | varchar(255) |   | Yes |   | ||
WFH_AttText26 | varchar(255) |   | Yes |   | ||
WFH_AttText27 | varchar(255) |   | Yes |   | ||
WFH_AttText28 | varchar(255) |   | Yes |   | ||
WFH_AttText29 | varchar(255) |   | Yes |   | ||
WFH_AttText30 | varchar(255) |   | Yes |   | ||
WFH_AttLong1 | text |   | Yes |   | ||
WFH_AttLong2 | text |   | Yes |   | ||
WFH_AttLong3 | text |   | Yes |   | ||
WFH_AttLong4 | text |   | Yes |   | ||
WFH_AttLong5 | text |   | Yes |   | ||
WFH_AttLong6 | text |   | Yes |   | ||
WFH_AttLong7 | text |   | Yes |   | ||
WFH_AttLong8 | text |   | Yes |   | ||
WFH_AttLong9 | text |   | Yes |   | ||
WFH_AttLong10 | text |   | Yes |   | ||
WFH_AttLong11 | text |   | Yes |   | ||
WFH_AttLong12 | text |   | Yes |   | ||
WFH_AttLong13 | text |   | Yes |   | ||
WFH_AttLong14 | text |   | Yes |   | ||
WFH_AttLong15 | text |   | Yes |   | ||
WFH_AttBool1 | bit |   | Yes |   | ((0)) | |
WFH_AttBool2 | bit |   | Yes |   | ((0)) | |
WFH_AttBool3 | bit |   | Yes |   | ((0)) | |
WFH_AttBool4 | bit |   | Yes |   | ((0)) | |
WFH_AttBool5 | bit |   | Yes |   | ((0)) | |
WFH_AttBool6 | bit |   | Yes |   | ((0)) | |
WFH_AttBool7 | bit |   | Yes |   | ((0)) | |
WFH_AttBool8 | bit |   | Yes |   | ((0)) | |
WFH_AttBool9 | bit |   | Yes |   | ((0)) | |
WFH_AttBool10 | bit |   | Yes |   | ((0)) | |
WFH_AttBool11 | bit |   | Yes |   | ||
WFH_AttBool12 | bit |   | Yes |   | ||
WFH_AttBool13 | bit |   | Yes |   | ||
WFH_AttBool14 | bit |   | Yes |   | ||
WFH_AttBool15 | bit |   | Yes |   | ||
WFH_AttBool16 | bit |   | Yes |   | ||
WFH_AttBool17 | bit |   | Yes |   | ||
WFH_AttBool18 | bit |   | Yes |   | ||
WFH_AttBool19 | bit |   | Yes |   | ||
WFH_AttBool20 | bit |   | Yes |   | ||
WFH_AttChoose1 | varchar(1000) |   | Yes |   | ||
WFH_AttChoose2 | varchar(1000) |   | Yes |   | ||
WFH_AttChoose3 | varchar(1000) |   | Yes |   | ||
WFH_AttChoose4 | varchar(1000) |   | Yes |   | ||
WFH_AttChoose5 | varchar(1000) |   | Yes |   | ||
WFH_AttChoose6 | varchar(1000) |   | Yes |   | ||
WFH_AttChoose7 | varchar(1000) |   | Yes |   | ||
WFH_AttChoose8 | varchar(1000) |   | Yes |   | ||
WFH_AttChoose9 | varchar(1000) |   | Yes |   | ||
WFH_AttChoose10 | varchar(1000) |   | Yes |   | ||
WFH_AttChoose11 | varchar(1000) |   | Yes |   | ||
WFH_AttChoose12 | varchar(1000) |   | Yes |   | ||
WFH_AttChoose13 | varchar(1000) |   | Yes |   | ||
WFH_AttChoose14 | varchar(1000) |   | Yes |   | ||
WFH_AttChoose15 | varchar(1000) |   | Yes |   | ||
WFH_AttChoose16 | varchar(1000) |   | Yes |   | ||
WFH_AttChoose17 | varchar(1000) |   | Yes |   | ||
WFH_AttChoose18 | varchar(1000) |   | Yes |   | ||
WFH_AttChoose19 | varchar(1000) |   | Yes |   | ||
WFH_AttChoose20 | varchar(1000) |   | Yes |   | ||
WFH_AttInt1 | int |   | Yes |   | ||
WFH_AttInt2 | int |   | Yes |   | ||
WFH_AttInt3 | int |   | Yes |   | ||
WFH_AttInt4 | int |   | Yes |   | ||
WFH_AttInt5 | int |   | Yes |   | ||
WFH_AttInt6 | int |   | Yes |   | ||
WFH_AttInt7 | int |   | Yes |   | ||
WFH_AttInt8 | int |   | Yes |   | ||
WFH_AttInt9 | int |   | Yes |   | ||
WFH_AttInt10 | int |   | Yes |   | ||
WFH_AttInt11 | int |   | Yes |   | ||
WFH_AttInt12 | int |   | Yes |   | ||
WFH_AttInt13 | int |   | Yes |   | ||
WFH_AttInt14 | int |   | Yes |   | ||
WFH_AttInt15 | int |   | Yes |   | ||
WFH_AttInt16 | int |   | Yes |   | ||
WFH_AttInt17 | int |   | Yes |   | ||
WFH_AttInt18 | int |   | Yes |   | ||
WFH_AttInt19 | int |   | Yes |   | ||
WFH_AttInt20 | int |   | Yes |   | ||
WFH_AttDecimal1 | decimal(21,6) |   | Yes |   | ||
WFH_AttDecimal2 | decimal(21,6) |   | Yes |   | ||
WFH_AttDecimal3 | decimal(21,6) |   | Yes |   | ||
WFH_AttDecimal4 | decimal(21,6) |   | Yes |   | ||
WFH_AttDecimal5 | decimal(21,6) |   | Yes |   | ||
WFH_AttDecimal6 | decimal(21,6) |   | Yes |   | ||
WFH_AttDecimal7 | decimal(21,6) |   | Yes |   | ||
WFH_AttDecimal8 | decimal(21,6) |   | Yes |   | ||
WFH_AttDecimal9 | decimal(21,6) |   | Yes |   | ||
WFH_AttDecimal10 | decimal(21,6) |   | Yes |   | ||
WFH_AttDecimal11 | decimal(21,6) |   | Yes |   | ||
WFH_AttDecimal12 | decimal(21,6) |   | Yes |   | ||
WFH_AttDecimal13 | decimal(21,6) |   | Yes |   | ||
WFH_AttDecimal14 | decimal(21,6) |   | Yes |   | ||
WFH_AttDecimal15 | decimal(21,6) |   | Yes |   | ||
WFH_AttDecimal16 | decimal(21,6) |   | Yes |   | ||
WFH_AttDecimal17 | decimal(21,6) |   | Yes |   | ||
WFH_AttDecimal18 | decimal(21,6) |   | Yes |   | ||
WFH_AttDecimal19 | decimal(21,6) |   | Yes |   | ||
WFH_AttDecimal20 | decimal(21,6) |   | Yes |   | ||
WFH_AttDateTime1 | datetime |   | Yes |   | ||
WFH_AttDateTime2 | datetime |   | Yes |   | ||
WFH_AttDateTime3 | datetime |   | Yes |   | ||
WFH_AttDateTime4 | datetime |   | Yes |   | ||
WFH_AttDateTime5 | datetime |   | Yes |   | ||
WFH_AttDateTime6 | datetime |   | Yes |   | ||
WFH_AttDateTime7 | datetime |   | Yes |   | ||
WFH_AttDateTime8 | datetime |   | Yes |   | ||
WFH_AttDateTime9 | datetime |   | Yes |   | ||
WFH_AttDateTime10 | datetime |   | Yes |   | ||
WFH_AttDateTime11 | datetime |   | Yes |   | ||
WFH_AttDateTime12 | datetime |   | Yes |   | ||
WFH_AttDateTime13 | datetime |   | Yes |   | ||
WFH_AttDateTime14 | datetime |   | Yes |   | ||
WFH_AttDateTime15 | datetime |   | Yes |   | ||
WFH_AttDateTime16 | datetime |   | Yes |   | ||
WFH_AttDateTime17 | datetime |   | Yes |   | ||
WFH_AttDateTime18 | datetime |   | Yes |   | ||
WFH_AttDateTime19 | datetime |   | Yes |   | ||
WFH_AttDateTime20 | datetime |   | Yes |   | ||
WFH_AttPeople1 | varchar(1000) |   | Yes |   | ||
WFH_AttPeople2 | varchar(1000) |   | Yes |   | ||
WFH_AttPeople3 | varchar(1000) |   | Yes |   | ||
WFH_AttPeople4 | varchar(1000) |   | Yes |   | ||
WFH_AttPeople5 | varchar(1000) |   | Yes |   | ||
WFH_AttPeople6 | varchar(1000) |   | Yes |   | ||
WFH_AttPeople7 | varchar(1000) |   | Yes |   | ||
WFH_AttPeople8 | varchar(1000) |   | Yes |   | ||
WFH_AttPeople9 | varchar(1000) |   | Yes |   | ||
WFH_AttPeople10 | varchar(1000) |   | Yes |   | ||
WFH_AttPeople11 | varchar(1000) |   | Yes |   | ||
WFH_AttPeople12 | varchar(1000) |   | Yes |   | ||
WFH_AttPeople13 | varchar(1000) |   | Yes |   | ||
WFH_AttPeople14 | varchar(1000) |   | Yes |   | ||
WFH_AttPeople15 | varchar(1000) |   | Yes |   | ||
WFH_FinishDate | datetime |   | Yes |   | ||
WFH_EnterToCurrentStepDate | datetime |   |   |   | ([dbo].[GetDbDate]()) | |
WFH_DurationInStep | int |   |   |   | ((0)) | |
WFH_DurationUnchanged | int |   |   |   | ((0)) | |
WFH_RowVersion | timestamp |   |   | Yes | Row version | |
WFH_FormEditDurationToEnter | int |   | Yes |   | ||
WFH_FormEditDurationToLeave | int |   | Yes |   | ||
WFH_EnteredBy | varchar(255) |   | Yes |   | ||
WFH_LeftBy | varchar(255) |   | Yes |   | ||
WFH_Department | varchar(255) |   | Yes |   | ||
WFH_HistoryPaths | varchar(2000) |   | Yes |   | ||
WFH_HistorySteps | varchar(2000) |   | Yes |   | ||
WFH_RequestInfo | varchar(50) |   | Yes |   | ||
WFH_MailApprovalGuid | varchar(36) |   | Yes |   | ||
WFH_AttMap1 | varchar(255) |   | Yes |   | ||
WFH_AttMap2 | varchar(255) |   | Yes |   | ||
WFH_AttMap3 | varchar(255) |   | Yes |   | ||
WFH_TransitionReason | int |   | Yes |   | ||
WFH_UpdatedFrom | int |   | Yes |   | ||
WFH_AttDateTime1Glob | datetime |   | Yes |   | ||
WFH_AttDateTime2Glob | datetime |   | Yes |   | ||
WFH_AttDateTime3Glob | datetime |   | Yes |   | ||
WFH_AttDateTime4Glob | datetime |   | Yes |   | ||
WFH_AttDateTime5Glob | datetime |   | Yes |   | ||
WFH_LastTraversingTime | int |   |   |   | ((0)) | |
WFH_AttText31 | varchar(255) |   | Yes |   | ||
WFH_AttText32 | varchar(255) |   | Yes |   | ||
WFH_AttText33 | varchar(255) |   | Yes |   | ||
WFH_AttText34 | varchar(255) |   | Yes |   | ||
WFH_AttText35 | varchar(255) |   | Yes |   | ||
WFH_AttText36 | varchar(255) |   | Yes |   | ||
WFH_AttText37 | varchar(255) |   | Yes |   | ||
WFH_AttText38 | varchar(255) |   | Yes |   | ||
WFH_AttText39 | varchar(255) |   | Yes |   | ||
WFH_AttText40 | varchar(255) |   | Yes |   | ||
WFH_AttDecimal21 | decimal(21,6) |   | Yes |   | ||
WFH_AttDecimal22 | decimal(21,6) |   | Yes |   | ||
WFH_AttDecimal23 | decimal(21,6) |   | Yes |   | ||
WFH_AttDecimal24 | decimal(21,6) |   | Yes |   | ||
WFH_AttDecimal25 | decimal(21,6) |   | Yes |   | ||
WFH_AttDecimal26 | decimal(21,6) |   | Yes |   | ||
WFH_AttDecimal27 | decimal(21,6) |   | Yes |   | ||
WFH_AttDecimal28 | decimal(21,6) |   | Yes |   | ||
WFH_AttDecimal29 | decimal(21,6) |   | Yes |   | ||
WFH_AttDecimal30 | decimal(21,6) |   | Yes |   | ||
WFH_AttChoose21 | varchar(1000) |   | Yes |   | ||
WFH_AttChoose22 | varchar(1000) |   | Yes |   | ||
WFH_AttChoose23 | varchar(1000) |   | Yes |   | ||
WFH_AttChoose24 | varchar(1000) |   | Yes |   | ||
WFH_AttChoose25 | varchar(1000) |   | Yes |   | ||
WFH_AttChoose26 | varchar(1000) |   | Yes |   | ||
WFH_AttChoose27 | varchar(1000) |   | Yes |   | ||
WFH_AttChoose28 | varchar(1000) |   | Yes |   | ||
WFH_AttChoose29 | varchar(1000) |   | Yes |   | ||
WFH_AttChoose30 | varchar(1000) |   | Yes |   | ||
WFH_AttLong16 | text |   | Yes |   | ||
WFH_AttLong17 | text |   | Yes |   | ||
WFH_AttLong18 | text |   | Yes |   | ||
WFH_AttLong19 | text |   | Yes |   | ||
WFH_AttLong20 | text |   | Yes |   | ||
WFH_AttLong21 | text |   | Yes |   | ||
WFH_AttLong22 | text |   | Yes |   | ||
WFH_AttLong23 | text |   | Yes |   | ||
WFH_AttLong24 | text |   | Yes |   | ||
WFH_AttLong25 | text |   | Yes |   | ||
WFH_AttDecimal31 | decimal(21,6) |   | Yes |   | ||
WFH_AttDecimal32 | decimal(21,6) |   | Yes |   | ||
WFH_AttDecimal33 | decimal(21,6) |   | Yes |   | ||
WFH_AttDecimal34 | decimal(21,6) |   | Yes |   | ||
WFH_AttDecimal35 | decimal(21,6) |   | Yes |   | ||
WFH_AttDecimal36 | decimal(21,6) |   | Yes |   | ||
WFH_AttDecimal37 | decimal(21,6) |   | Yes |   | ||
WFH_AttDecimal38 | decimal(21,6) |   | Yes |   | ||
WFH_AttDecimal39 | decimal(21,6) |   | Yes |   | ||
WFH_AttDecimal40 | decimal(21,6) |   | Yes |   | ||
WFH_AttDecimal41 | decimal(21,6) |   | Yes |   | ||
WFH_AttDecimal42 | decimal(21,6) |   | Yes |   | ||
WFH_AttDecimal43 | decimal(21,6) |   | Yes |   | ||
WFH_AttDecimal44 | decimal(21,6) |   | Yes |   | ||
WFH_AttDecimal45 | decimal(21,6) |   | Yes |   | ||
WFH_AttDecimal46 | decimal(21,6) |   | Yes |   | ||
WFH_AttDecimal47 | decimal(21,6) |   | Yes |   | ||
WFH_AttDecimal48 | decimal(21,6) |   | Yes |   | ||
WFH_AttDecimal49 | decimal(21,6) |   | Yes |   | ||
WFH_AttDecimal50 | decimal(21,6) |   | Yes |   | ||
WFH_AttInt21 | int |   | Yes |   | ||
WFH_AttInt22 | int |   | Yes |   | ||
WFH_AttInt23 | int |   | Yes |   | ||
WFH_AttInt24 | int |   | Yes |   | ||
WFH_AttInt25 | int |   | Yes |   | ||
WFH_AttInt26 | int |   | Yes |   | ||
WFH_AttInt27 | int |   | Yes |   | ||
WFH_AttInt28 | int |   | Yes |   | ||
WFH_AttInt29 | int |   | Yes |   | ||
WFH_AttInt30 | int |   | Yes |   | ||
WFH_AttText41 | varchar(255) |   | Yes |   | ||
WFH_AttText42 | varchar(255) |   | Yes |   | ||
WFH_AttText43 | varchar(255) |   | Yes |   | ||
WFH_AttText44 | varchar(255) |   | Yes |   | ||
WFH_AttText45 | varchar(255) |   | Yes |   | ||
WFH_AttText46 | varchar(255) |   | Yes |   | ||
WFH_AttText47 | varchar(255) |   | Yes |   | ||
WFH_AttText48 | varchar(255) |   | Yes |   | ||
WFH_AttText49 | varchar(255) |   | Yes |   | ||
WFH_AttText50 | varchar(255) |   | Yes |   | ||
WFH_AttChoose31 | varchar(1000) |   | Yes |   | ||
WFH_AttChoose32 | varchar(1000) |   | Yes |   | ||
WFH_AttChoose33 | varchar(1000) |   | Yes |   | ||
WFH_AttChoose34 | varchar(1000) |   | Yes |   | ||
WFH_AttChoose35 | varchar(1000) |   | Yes |   | ||
WFH_AttChoose36 | varchar(1000) |   | Yes |   | ||
WFH_AttChoose37 | varchar(1000) |   | Yes |   | ||
WFH_AttChoose38 | varchar(1000) |   | Yes |   | ||
WFH_AttChoose39 | varchar(1000) |   | Yes |   | ||
WFH_AttChoose40 | varchar(1000) |   | Yes |   | ||
WFH_InitedSubelement | varchar(255) |   | Yes |   | ||
WFH_LastTraversingLog | varchar(MAX) |   | Yes |   | Column contains trace log. | |
WFH_AttDateTime21 | datetime |   | Yes |   | ||
WFH_AttDateTime22 | datetime |   | Yes |   | ||
WFH_AttDateTime23 | datetime |   | Yes |   | ||
WFH_AttDateTime24 | datetime |   | Yes |   | ||
WFH_AttDateTime25 | datetime |   | Yes |   | ||
WFH_AttDateTime26 | datetime |   | Yes |   | ||
WFH_AttDateTime27 | datetime |   | Yes |   | ||
WFH_AttDateTime28 | datetime |   | Yes |   | ||
WFH_AttDateTime29 | datetime |   | Yes |   | ||
WFH_AttDateTime30 | datetime |   | Yes |   | ||
WFH_AttDateTime31 | datetime |   | Yes |   | ||
WFH_AttDateTime32 | datetime |   | Yes |   | ||
WFH_AttDateTime33 | datetime |   | Yes |   | ||
WFH_AttDateTime34 | datetime |   | Yes |   | ||
WFH_AttDateTime35 | datetime |   | Yes |   | ||
WFH_AttDateTime36 | datetime |   | Yes |   | ||
WFH_AttDateTime37 | datetime |   | Yes |   | ||
WFH_AttDateTime38 | datetime |   | Yes |   | ||
WFH_AttDateTime39 | datetime |   | Yes |   | ||
WFH_AttDateTime40 | datetime |   | Yes |   | ||
WFH_AttDateTime41 | datetime |   | Yes |   | ||
WFH_AttDateTime42 | datetime |   | Yes |   | ||
WFH_AttDateTime43 | datetime |   | Yes |   | ||
WFH_AttDateTime44 | datetime |   | Yes |   | ||
WFH_AttDateTime45 | datetime |   | Yes |   | ||
WFH_AttDateTime46 | datetime |   | Yes |   | ||
WFH_AttDateTime47 | datetime |   | Yes |   | ||
WFH_AttDateTime48 | datetime |   | Yes |   | ||
WFH_AttDateTime49 | datetime |   | Yes |   | ||
WFH_AttDateTime50 | datetime |   | Yes |   | ||
WFH_AttChoose41 | varchar(1000) |   | Yes |   | ||
WFH_AttChoose42 | varchar(1000) |   | Yes |   | ||
WFH_AttChoose43 | varchar(1000) |   | Yes |   | ||
WFH_AttChoose44 | varchar(1000) |   | Yes |   | ||
WFH_AttChoose45 | varchar(1000) |   | Yes |   | ||
WFH_AttChoose46 | varchar(1000) |   | Yes |   | ||
WFH_AttChoose47 | varchar(1000) |   | Yes |   | ||
WFH_AttChoose48 | varchar(1000) |   | Yes |   | ||
WFH_AttChoose49 | varchar(1000) |   | Yes |   | ||
WFH_AttChoose50 | varchar(1000) |   | Yes |   | ||
WFH_AttChoose51 | varchar(1000) |   | Yes |   | ||
WFH_AttChoose52 | varchar(1000) |   | Yes |   | ||
WFH_AttChoose53 | varchar(1000) |   | Yes |   | ||
WFH_AttChoose54 | varchar(1000) |   | Yes |   | ||
WFH_AttChoose55 | varchar(1000) |   | Yes |   | ||
WFH_AttChoose56 | varchar(1000) |   | Yes |   | ||
WFH_AttChoose57 | varchar(1000) |   | Yes |   | ||
WFH_AttChoose58 | varchar(1000) |   | Yes |   | ||
WFH_AttChoose59 | varchar(1000) |   | Yes |   | ||
WFH_AttChoose60 | varchar(1000) |   | Yes |   | ||
WFH_AttChoose61 | varchar(1000) |   | Yes |   | ||
WFH_AttChoose62 | varchar(1000) |   | Yes |   | ||
WFH_AttChoose63 | varchar(1000) |   | Yes |   | ||
WFH_AttChoose64 | varchar(1000) |   | Yes |   | ||
WFH_AttChoose65 | varchar(1000) |   | Yes |   | ||
WFH_AttChoose66 | varchar(1000) |   | Yes |   | ||
WFH_AttChoose67 | varchar(1000) |   | Yes |   | ||
WFH_AttChoose68 | varchar(1000) |   | Yes |   | ||
WFH_AttChoose69 | varchar(1000) |   | Yes |   | ||
WFH_AttChoose70 | varchar(1000) |   | Yes |   | ||
WFH_AttChoose71 | varchar(1000) |   | Yes |   | ||
WFH_AttChoose72 | varchar(1000) |   | Yes |   | ||
WFH_AttChoose73 | varchar(1000) |   | Yes |   | ||
WFH_AttChoose74 | varchar(1000) |   | Yes |   | ||
WFH_AttChoose75 | varchar(1000) |   | Yes |   | ||
WFH_AttChoose76 | varchar(1000) |   | Yes |   | ||
WFH_AttChoose77 | varchar(1000) |   | Yes |   | ||
WFH_AttChoose78 | varchar(1000) |   | Yes |   | ||
WFH_AttChoose79 | varchar(1000) |   | Yes |   | ||
WFH_AttChoose80 | varchar(1000) |   | Yes |   | ||
WFH_AttChoose81 | varchar(1000) |   | Yes |   | ||
WFH_AttChoose82 | varchar(1000) |   | Yes |   | ||
WFH_AttChoose83 | varchar(1000) |   | Yes |   | ||
WFH_AttChoose84 | varchar(1000) |   | Yes |   | ||
WFH_AttChoose85 | varchar(1000) |   | Yes |   | ||
WFH_AttChoose86 | varchar(1000) |   | Yes |   | ||
WFH_AttChoose87 | varchar(1000) |   | Yes |   | ||
WFH_AttChoose88 | varchar(1000) |   | Yes |   | ||
WFH_AttChoose89 | varchar(1000) |   | Yes |   | ||
WFH_AttChoose90 | varchar(1000) |   | Yes |   | ||
WFH_AttText51 | varchar(255) |   | Yes |   | ||
WFH_AttText52 | varchar(255) |   | Yes |   | ||
WFH_AttText53 | varchar(255) |   | Yes |   | ||
WFH_AttText54 | varchar(255) |   | Yes |   | ||
WFH_AttText55 | varchar(255) |   | Yes |   | ||
WFH_AttText56 | varchar(255) |   | Yes |   | ||
WFH_AttText57 | varchar(255) |   | Yes |   | ||
WFH_AttText58 | varchar(255) |   | Yes |   | ||
WFH_AttText59 | varchar(255) |   | Yes |   | ||
WFH_AttText60 | varchar(255) |   | Yes |   | ||
WFH_AttText61 | varchar(255) |   | Yes |   | ||
WFH_AttText62 | varchar(255) |   | Yes |   | ||
WFH_AttText63 | varchar(255) |   | Yes |   | ||
WFH_AttText64 | varchar(255) |   | Yes |   | ||
WFH_AttText65 | varchar(255) |   | Yes |   | ||
WFH_AttText66 | varchar(255) |   | Yes |   | ||
WFH_AttText67 | varchar(255) |   | Yes |   | ||
WFH_AttText68 | varchar(255) |   | Yes |   | ||
WFH_AttText69 | varchar(255) |   | Yes |   | ||
WFH_AttText70 | varchar(255) |   | Yes |   | ||
WFH_AttText71 | varchar(255) |   | Yes |   | ||
WFH_AttText72 | varchar(255) |   | Yes |   | ||
WFH_AttText73 | varchar(255) |   | Yes |   | ||
WFH_AttText74 | varchar(255) |   | Yes |   | ||
WFH_AttText75 | varchar(255) |   | Yes |   | ||
WFH_AttText76 | varchar(255) |   | Yes |   | ||
WFH_AttText77 | varchar(255) |   | Yes |   | ||
WFH_AttText78 | varchar(255) |   | Yes |   | ||
WFH_AttText79 | varchar(255) |   | Yes |   | ||
WFH_AttText80 | varchar(255) |   | Yes |   | ||
WFH_IsVersionOfDeletedElement | bit |   |   |   | ((0)) | determines if history entry represents deleted element |
WFH_FinishDurationDateTime | datetime |   | Yes |   | Time of task completion in step | |
WFH_ArchivingData | varbinary(MAX) |   | Yes |   | Archiving data xml with form fields configuration | |
WFH_LeaveCurrentStepPath | varchar(100) |   | Yes |   | Path that workflow instance left the current step with. Value is stored in format ID#DisplayName. | |
WFH_LeaveCurrentStepDate | datetime |   | Yes |   | Date and time when the workflow instance left the current step. | |
WFH_IsLastVersionInCurrentStep | bit |   | Yes |   | Is set to true when the current history version is last version of workflow instance before leaving the current step. | |
WFH_Impersonator | varchar(255) |   | Yes |   | Impersonator login and name | |
WFH_LeftByImpersonator | varchar(255) |   | Yes |   | Impersonator login and name for transition | |
WFH_Guid | varchar(36) |   | Yes |   | WFElements global unique ID | |
WFH_AttBool21 | bit |   | Yes |   | ||
WFH_AttBool22 | bit |   | Yes |   | ||
WFH_AttBool23 | bit |   | Yes |   | ||
WFH_AttBool24 | bit |   | Yes |   | ||
WFH_AttBool25 | bit |   | Yes |   | ||
WFH_AttBool26 | bit |   | Yes |   | ||
WFH_AttBool27 | bit |   | Yes |   | ||
WFH_AttBool28 | bit |   | Yes |   | ||
WFH_AttBool29 | bit |   | Yes |   | ||
WFH_AttBool30 | bit |   | Yes |   | ||
WFH_AttBool31 | bit |   | Yes |   | ||
WFH_AttBool32 | bit |   | Yes |   | ||
WFH_AttBool33 | bit |   | Yes |   | ||
WFH_AttBool34 | bit |   | Yes |   | ||
WFH_AttBool35 | bit |   | Yes |   | ||
WFH_AttBool36 | bit |   | Yes |   | ||
WFH_AttBool37 | bit |   | Yes |   | ||
WFH_AttBool38 | bit |   | Yes |   | ||
WFH_AttBool39 | bit |   | Yes |   | ||
WFH_AttBool40 | bit |   | Yes |   |
Name | Foreign Table | Primary Key |
---|---|---|
FK_ActiveTasks_WFHistoryElements | ActiveTasks | PK_WFHistory |
FK_ActiveTasks_WFHistoryElements_TaskFinished | ActiveTasks | PK_WFHistory |
FK_HistoryTasks_WFHistoryElements | HistoryTasks | PK_WFHistory |
FK_HistoryTasks_WFHistoryElements_TaskFinished | HistoryTasks | PK_WFHistory |
FK_PathTransitionLocations_WFHistoryElements | PathTransitionLocations | PK_WFHistory |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_WFHistory | Yes | Yes | CLUSTERED | 100 |
IX_WFHistoryElements_STPID |   |   | NONCLUSTERED | 100 |
IX_WFHistoryElements_OrgID |   |   | NONCLUSTERED | 100 |
Description: | Table contains mail attachments |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
MATT_ID | int | Yes |   |   | Identifier | |
MATT_MAILID | int |   |   |   | Mail identifier which refers to a row in WFMails table | |
MATT_Content | varbinary(MAX) |   | Yes |   | Attachment content | |
MATT_Name | varchar(255) |   |   |   | MailAttachment name | |
MATT_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
MATT_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
MATT_RowVersion | timestamp |   |   | Yes | Timestamp | |
MATT_InsertedBy | varchar(255) |   | Yes |   | Author | |
MATT_UpdatedBy | varchar(255) |   | Yes |   | Last modifier |
Name | Foreign Table | Primary Key |
---|---|---|
FK_WFMailAttachments_WFMails | WFMailAttachments | PK_WFMails |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_WFMailAttachments | Yes | Yes | CLUSTERED | 100 |
Description: | Table contains mails. If asynchronous mail sending using a queue is on, mails are sent from system to this table. The service takes them from it and sends them further. |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
MAIL_ID | int | Yes |   |   | Identifier | |
MAIL_Status | int |   |   |   | ((0)) | Status: ProcessingPending = 0 queue element is waiting to be processed by service, Processing = 1 queue element is now being processed, ProcessingSuccess = 2 queue element has been processed sucessfully, ProcessingError = 100 error while processing - number of allowed attempts exceeded, ProcessingSuspended = 200 processing of the queue element was suspended |
MAIL_AttemptsNumber | int |   |   |   | ((0)) | Mail sending attempts number |
MAIL_LastAttemptTime | datetime |   | Yes |   | Mail last sending attempt time | |
MAIL_Sender | varchar(100) |   |   |   | Mail sender | |
MAIL_Subject | varchar(MAX) |   | Yes |   | Mail subject | |
MAIL_Body | varchar(MAX) |   | Yes |   | Mail body | |
MAIL_IsBodyHtml | bit |   |   |   | Mail HTML body | |
MAIL_Charset | int |   |   |   | Mail Charset | |
MAIL_Host | varchar(100) |   |   |   | Mail host | |
MAIL_Credentials | varchar(1000) |   | Yes |   | Mail credentials | |
MAIL_CertificateInfo | varchar(200) |   | Yes |   | Mail certificate info | |
MAIL_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
MAIL_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
MAIL_RowVersion | timestamp |   |   | Yes | Timestamp | |
MAIL_CreatedBy | varchar(255) |   | Yes |   | Author | |
MAIL_UpdatedBy | varchar(255) |   | Yes |   | Last modifier | |
MAIL_ACTID | int |   | Yes |   | Action identifier which refers to a row in WFActions table | |
MAIL_WFDID | int |   | Yes |   | WorkFlow instance identifier which refers to a row in WFElement table | |
MAIL_STPID | int |   | Yes |   | Step identifier which refers to a row in WFSteps table | |
MAIL_WTHID | int |   | Yes |   | Column stores information during which historical version the email was added to the mail sending queue | |
MAIL_SectionGuid | nvarchar(36) |   | Yes |   | Mail section GUID | |
MAIL_DEFID | int |   | Yes |   | Process identifier which refers to a row in WFDefinitions table | |
MAIL_IsBcc | bit |   |   |   | ((0)) | Is mail bcc |
MAIL_ErrorCode | int |   | Yes |   | Mail error code: 0 - Unknown, 1 - InvalidChecksum, 2 - InvalidCredentialsFormatting | |
MAIL_Checksum | varchar(MAX) |   | Yes |   | Mail checksum | |
MAIL_Recipients | varchar(MAX) |   |   |   | Mail recipments | |
MAIL_RecipientsCC | varchar(MAX) |   | Yes |   | Mail recipments cc | |
MAIL_RecipientsBCC | varchar(MAX) |   | Yes |   | Mail recipments bcc | |
MAIL_DeliveryNotification | bit |   |   |   | ((0)) | Server delivery confirmation: 0 - disable, 1 - enable |
MAIL_ReadNotification | bit |   |   |   | ((0)) | Recipient read confirmation: 0 - disable, 1 - enable |
MAIL_Port | int |   | Yes |   | Credentials port | |
MAIL_UseSSL | bit |   |   |   | ((0)) | Use SSL durring send this WFMail |
MAIL_ReplyTo | varchar(255) |   | Yes |   | Mail reply to | |
MAIL_LastError | varchar(MAX) |   | Yes |   | Last error | |
MAIL_Priority | int |   |   |   | ((5)) | Priority |
MAIL_ServiceName | varchar(255) |   | Yes |   | Processing service name | |
MAIL_ThreadId | int |   | Yes |   | Processing Thread Id | |
MAIL_ProcessingFinishedTime | datetime |   | Yes |   | Processing finished time | |
MAIL_ActionExecutionGuid | varchar(36) |   | Yes |   | Action execution log guid |
Name | Foreign Table | Primary Key |
---|---|---|
FK_WFMailAttachments_WFMails | WFMailAttachments | PK_WFMails |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_WFMails | Yes | Yes | CLUSTERED | 100 |
Description: | Table contains user defined e-mail templates. |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
WMT_ID | int | Yes |   |   | ||
WMT_Name | varchar(50) |   |   |   | ||
WMT_TemplateTypeID | int |   |   |   | ||
WMT_DEFID | int |   | Yes |   | ||
WMT_IsSystem | bit |   |   |   | ((0)) | |
WMT_PropertyValue1 | varchar(MAX) |   | Yes |   | ||
WMT_PropertyValue2 | varchar(MAX) |   | Yes |   | ||
WMT_PropertyValue3 | varchar(MAX) |   | Yes |   | ||
WMT_PropertyValue4 | varchar(MAX) |   | Yes |   | ||
WMT_PropertyValue5 | varchar(MAX) |   | Yes |   | ||
WMT_PropertyValue6 | varchar(MAX) |   | Yes |   | ||
WMT_PropertyValue7 | varchar(MAX) |   | Yes |   | ||
WMT_PropertyValue8 | varchar(MAX) |   | Yes |   | ||
WMT_PropertyValue9 | varchar(MAX) |   | Yes |   | ||
WMT_PropertyValue10 | varchar(MAX) |   | Yes |   | ||
WMT_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Row insert date |
WMT_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Row update date |
WMT_UpdatedBy | varchar(255) |   | Yes |   | Last modifier | |
WMT_RowVersion | timestamp |   |   | Yes | Row version | |
WMT_Guid | varchar(36) |   |   |   | (newid()) | |
WMT_OverrideGlobalMessage | bit |   |   |   | ((0)) | |
WMT_PropertyValue11 | nvarchar(MAX) |   | Yes |   | ||
WMT_PropertyValue12 | nvarchar(MAX) |   | Yes |   | ||
WMT_ReplyTo | varchar(MAX) |   | Yes |   | ||
WMT_SubjectCCTasks | varchar(MAX) |   | Yes |   | ||
WMT_HeaderTitleCCTasks | varchar(MAX) |   | Yes |   | ||
WMT_HeaderContentCCTasks | varchar(MAX) |   | Yes |   | ||
WMT_AttachIdForOutlookAddIn | bit |   |   |   | ((1)) | |
WMT_EditMode | int |   |   |   | ((0)) | Message template edit mode |
Name | Foreign Table | Primary Key |
---|---|---|
FK_WFMessageTemplates_WFDefinitions | WFMessageTemplates | PK_WFDefinitions |
FK_WFMessageTemplates_DicTemplateTypes | WFMessageTemplates | PK_DicTemplateTypes |
FK_WFDefinitions_WFMessageTemplates | WFDefinitions | PK_WFMessageTemplates |
FK_WFDefinitions_WFMessageTemplates_DW | WFDefinitions | PK_WFMessageTemplates |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_WFMessageTemplates | Yes | Yes | CLUSTERED | 100 |
UQ_WFMessageTemplates_Guid | Yes |   | NONCLUSTERED | 100 |
IX_WFMessageTemplates_WMT_DEFID |   |   | NONCLUSTERED | 100 |
Description: | Contains definitions of all registered plugins in system. |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
PLU_ID | int | Yes |   |   | ||
PLU_TypeID | int |   |   |   | ||
PLU_Name | varchar(255) |   | Yes |   | ||
PLU_Description | varchar(MAX) |   | Yes |   | ||
PLU_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Row insert date |
PLU_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Row update date |
PLU_RowVersion | timestamp |   |   | Yes | Row version | |
PLU_Guid | varchar(36) |   |   |   | (newid()) | |
PLU_TypeName | nvarchar(MAX) |   | Yes |   | Name of the class implementing the Plug-in | |
PLU_AssemblyFullName | varchar(500) |   | Yes |   | Full name of the assembly for plug-ins which do not need to render such as custom action | |
PLU_AvailableActionTriggers | int |   | Yes |   | ((127)) | Value of the available action trigger enum. It tells where the action can be used. |
PLU_PLFID | int |   | Yes |   | Related plugin file id | |
PLU_AutoLogsLevel | int |   |   |   | ((0)) | Value of automatic plugin logs configuration |
PLU_ManualLogsLevel | int |   |   |   | ((0)) | Value of manual plugin logs configuration |
PLU_Synchronized | bit |   |   |   | ((1)) | Plugin synchronization status |
PLU_MPFID | int |   | Yes |   | Modern control file id |
Name | Foreign Table | Primary Key |
---|---|---|
FK_WFPlugins_PluginFiles_Modern | WFPlugIns | PK_PluginFiles |
FK_WFPlugins_PluginFiles | WFPlugIns | PK_PluginFiles |
FK_WFActions_WFPlugIns | WFActions | PK_WFPlugIns |
FK_WFBusinessRuleDefinitions_WFPlugIns | WFBusinessRuleDefinitions | PK_WFPlugIns |
FK_WFConfigurations_WFPlugIns | WFConfigurations | PK_WFPlugIns |
FK_WFDataConnections_WFPlugIns | WFDataConnections | PK_WFPlugIns |
FK_WFDataConnections_WFPlugIns_DEV | WFDataConnections | PK_WFPlugIns |
FK_WFDataConnections_WFPlugIns_PROD | WFDataConnections | PK_WFPlugIns |
FK_WFDataConnections_WFPlugIns_TEST | WFDataConnections | PK_WFPlugIns |
FK_WFDataSources_Plugins | WFDataSources | PK_WFPlugIns |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_WFPlugIns | Yes | Yes | CLUSTERED | 100 |
UQ_WFPlugIns_Guid | Yes |   | NONCLUSTERED | 100 |
Description: | Table contains definition of recurrent actions. |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
RAD_ID | int | Yes |   |   | Identifier | |
RAD_WFID | int |   |   |   | Workflow identifier which refers to a row in Workflows table | |
RAD_Name | nvarchar(50) |   |   |   | RecurrentActionsDefinition name | |
RAD_TypeId | int |   |   |   | Time interval type: 1 - minute, 2 - hour, 3 - day, 4 - week, 5 - month | |
RAD_Interval | int |   |   |   | Number of time units telling how many Times the action is to be performed | |
RAD_RepeatCount | int |   |   |   | ((0)) | Number of action repetitions |
RAD_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
RAD_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
RAD_RowVersion | timestamp |   |   | Yes | Timestamp | |
RAD_StartDate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Action start date |
RAD_Guid | varchar(36) |   |   |   | (newid()) | Entry unique identifier for import export mechanism |
RAD_RunInTransaction | bit |   |   |   | ((0)) | Should the execution of the cyclical action be performer in a transaction |
RAD_MaxFailureCount | int |   |   |   | ((0)) | Number of maximum failures |
RAD_Description | varchar(MAX) |   | Yes |   | RecurrentActionsDefinition description | |
RAD_AUTMID | int |   | Yes |   | Automation identifier |
Name | Foreign Table | Primary Key |
---|---|---|
FK_WFRecurrentActionsDefinitions_Automations | WFRecurrentActionsDefinitions | PK_Automations |
WFRecurrentActionsDefinitions_fk | WFRecurrentActionsDefinitions | PK_WorkFlows |
FK_WFActions_WFRecurrentActionsDefinitions | WFActions | PK_WFRecurrentActionsDefinitions |
FK_WFRecurrentActionsStats_WFRecurrentActionsDefinitions | WFRecurrentActionsStats | PK_WFRecurrentActionsDefinitions |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_WFRecurrentActionsDefinitions | Yes | Yes | CLUSTERED | 100 |
UQ_WFRecurrentActionsDefinitions_Guid | Yes |   | NONCLUSTERED | 100 |
IX_WFRecurrentActionsDefinitions_RAD_WFID |   |   | NONCLUSTERED | 100 |
Description: | Contains logs about recurrent actions executed in the system and element processing operations. Descriptions can be compressed and are readable with Designer Studio. |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
RAE_ID | int | Yes |   |   | Identifier | |
RAE_DEFID | int |   | Yes |   | Related WFDefinitions identifier | |
RAE_WFDID | int |   | Yes |   | Related element identifier | |
RAE_WTHID | int |   | Yes |   | Information about executed action | |
RAE_STPID | int |   | Yes |   | Related WFSteps identifier | |
RAE_ACTID | int |   | Yes |   | Related WFActions identifier | |
RAE_Status | int |   | Yes |   | Execution status (Information = 0, OK = 1, Error = 2, Exception = 3) | |
RAE_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
RAE_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
RAE_RowVersion | timestamp |   |   | Yes | Timestamp | |
RAE_WFID | int |   | Yes |   | Related Workflows identifier | |
RAE_ActionSucceeded | bit |   |   |   | ((1)) | Information if the action was correctly executed |
RAE_Duration | int |   | Yes |   | Action execution time | |
RAE_ActionType | int |   | Yes |   | Related DicActionTypes identifier | |
RAE_TransactionType | int |   | Yes |   | Action transaction type | |
RAE_ParentActionID | int |   | Yes |   | Related WFActions identifier - parent action | |
RAE_ShowOnlyInAdminMode | bit |   |   |   | ((0)) | Show only in admin mode |
RAE_CompressedDescription | varbinary(MAX) |   | Yes |   | Compressed description | |
RAE_CompressedAdditionalMessage | varbinary(MAX) |   | Yes |   | Compressed additional description | |
RAE_ACBID | int |   | Yes |   | Column with action button id | |
RAE_ASEID | int |   | Yes |   | Reference to related Automation execution details from table AutomationSessionExecutions | |
RAE_SectionGuid | varchar(36) |   | Yes |   | (newid()) | Section guid |
RAE_ActionExecutionGuid | varchar(36) |   | Yes |   | Action execution guid | |
RAE_Description | varchar(MAX) |   | Yes |   | Description | |
RAE_Name | varchar(MAX) |   | Yes |   | Name of action execution | |
RAE_AdditionalMessage | varchar(MAX) |   | Yes |   | Additional information displayed e.g. in the case of custom actions |
Name | Foreign Table | Primary Key |
---|
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_WFRecurrentActionsExecutions | Yes | Yes | CLUSTERED | 100 |
IX_RAE_SectionGuid |   |   | NONCLUSTERED | 0 |
Description: | Table contains statistics of executed recurrent actions. |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
RAS_ID | int | Yes |   |   | Cyclical action definition identifier | |
RAS_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Date the record was added to the database |
RAS_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Date the record was last updated |
RAS_RowVersion | timestamp |   |   | Yes | Record version | |
RAS_NextLaunch | datetime |   | Yes |   | ([dbo].[GetDbDate]()) | Date of next launch of the cyclical action |
RAS_TimeLastSuccess | datetime |   | Yes |   | Date of the last successful cycle start | |
RAS_TimeLastFailure | datetime |   | Yes |   | Date of the last unsuccessful cycle start | |
RAS_ExecutionCount | int |   |   |   | ((0)) | Number of correct executions |
RAS_FailureCount | int |   |   |   | ((0)) | Number of invalid executions |
RAS_FailureInRowCount | int |   |   |   | ((0)) | Number of consecutive invalid executions |
RAS_ServiceName | varchar(255) |   | Yes |   | Processing service name | |
RAS_ThreadId | int |   | Yes |   | Processing Thread Id | |
RAS_Status | int |   |   |   | ((0)) | Status: ProcessingPending = 0 queue element is waiting to be processed by service, Processing = 1 queue element is now being processed, ProcessingSuccess = 2 queue element has been processed sucessfully, ProcessingError = 100 error while processing - number of allowed attempts exceeded, ProcessingSuspended = 200 processing of the queue element was suspended |
RAS_AttemptsNumber | int |   |   |   | ((0)) | Attempts number |
RAS_LastAttemptTime | datetime |   | Yes |   | Last attempt time | |
RAS_ProcessingFinishedTime | datetime |   | Yes |   | Processing finished time | |
RAS_LastError | varchar(MAX) |   | Yes |   | Last error message | |
RAS_Priority | int |   |   |   | ((0)) | Processing priority |
RAS_Guid | varchar(36) |   |   |   | ||
RAS_LastAttemptGuid | varchar(36) |   | Yes |   |
Name | Foreign Table | Primary Key |
---|---|---|
FK_WFRecurrentActionsStats_WFRecurrentActionsDefinitions | WFRecurrentActionsStats | PK_WFRecurrentActionsDefinitions |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_WFRecurrentActionsStats | Yes | Yes | CLUSTERED | 100 |
UQ_WFRecurrentActionsStats_Guid | Yes |   | NONCLUSTERED | 100 |
Description: | Table contains definition of register points. |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
WFR_ID | int | Yes |   |   | Identifier | |
WFR_Code | varchar(20) |   |   |   | Entry point code | |
WFR_Name | varchar(50) |   |   |   | Entry point name | |
WFR_Description | varchar(1000) |   | Yes |   | Entry point description | |
WFR_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
WFR_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
WFR_RowVersion | timestamp |   |   | Yes | Timestamp | |
WFR_AssignedPeople | varchar(1000) |   | Yes |   | Assigned people to the entry point |
Name | Foreign Table | Primary Key |
---|---|---|
FK_WFElements_WFRegisterPoints | WFElements | PK_WFRegisterPoints |
FK_WFWorkstations_WFRegisterPoints | WFWorkstations | PK_WFRegisterPoints |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_WFRegisterPoints | Yes | Yes | CLUSTERED | 100 |
Description: | List of current permissions for individual elements. Contains information about privileges level. Can be defined on a process level, element level or on a level of document type assignment to a certain workflow. |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
SEC_ID | int | Yes |   |   | Identifier | |
SEC_LevelID | int |   |   |   | Relation to the DicSecurityLevel table (access ID) | |
SEC_WFDID | int |   | Yes |   | Relation to the WFData element | |
SEC_DEFID | int |   | Yes |   | Relation to the definition, which means defining access on the definition level (e.g. to incoming correspondence) | |
SEC_ASSID | int |   | Yes |   | Relation to the association of instance type and workflow. We define who has what access level to the connection of the instance type with a specific workflow | |
SEC_USERGUID | varchar(250) |   |   |   | User GUID from SPS | |
SEC_Department | varchar(50) |   | Yes |   | Name of the department whose manager has access to the instance | |
SEC_UserLoginName | varchar(250) |   | Yes |   | Login Name or Group Name | |
SEC_IsDomainGroup | bit |   |   |   | ((0)) | Is the object a domain group or a user |
SEC_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
SEC_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
SEC_RowVersion | timestamp |   |   | Yes | Timestamp | |
SEC_UserName | varchar(100) |   | Yes |   | User name | |
SEC_COMID | int |   | Yes |   | Company ID | |
SEC_Reason | int |   | Yes |   | Security change reason ID | |
SEC_ReasonAddMsg | varchar(MAX) |   | Yes |   | Security change reason - additional message | |
SEC_IsPermanent | bit |   |   |   | Is permanent security | |
SEC_IsGlobal | bit |   |   |   | ((0)) | Is global security |
SEC_CreatedBy | varchar(255) |   | Yes |   | Author | |
SEC_UpdatedBy | varchar(255) |   | Yes |   | Last modifier |
Name | Foreign Table | Primary Key |
---|---|---|
FK_WFSecurities_DocTypeAssocciations | WFSecurities | PK_DocTypeAssocciation |
FK_WFSecurities_Companies | WFSecurities | PK_Companies |
FK_WFSecurities_WFDefinitions | WFSecurities | PK_WFDefinitions |
FK_WFSecurity_DicSecurityLevel | WFSecurities | PK_DicSecurityLevel |
FK_WFSecurity_WFData | WFSecurities | PK_WFData |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_WFSecurity | Yes | Yes | CLUSTERED | 100 |
IX_WFSecurities_ASSID_USERGUID_LevelID_COMID_FilterASSIDNotNull |   |   | NONCLUSTERED | 0 |
IX_WFSecurities_DEFID_USERGUID_LevelID_InclCOMID_FilterDEFIDNotNull |   |   | NONCLUSTERED | 0 |
IX_WFSecurities_WFDID_USERGUID_LevelID_FilterWFDIDNotNull |   |   | NONCLUSTERED | 0 |
IX_WFSecurities_IsGlobal_LevelID_InclUSERGUID_FilterIsGlobal1 |   |   | NONCLUSTERED | 0 |
IX_WFSecurities_USERGUID_LevelID_INCLWFDID_DEFID_ASSID_COMID |   |   | NONCLUSTERED | 0 |
Description: | Contains information which columns from items lists should be visible in certain steps and also defines which should be required or read-only. Also contains detailed columns configuration in each step. |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
SFD_ID | int | Yes |   |   | ||
SFD_FRMID | int |   |   |   | ||
SFD_DCNID | int |   |   |   | ||
SFD_IsVisible | bit |   |   |   | ((1)) | |
SFD_IsRequired | bit |   |   |   | ((0)) | |
SFD_JScript | varchar(2000) |   | Yes |   | ||
SFD_Order | int |   |   |   | ||
SFD_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Row insert date |
SFD_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Row update date |
SFD_RowVersion | timestamp |   |   | Yes | Row version | |
SFD_GroupColumn | bit |   |   |   | ((0)) | |
SFD_IsConstByGroup | bit |   |   |   | ((0)) | |
SFD_Width | varchar(20) |   | Yes |   | ||
SFD_EditModeId | int |   |   |   | ((1)) | Field visibility: 1 – edit mode 2 – read-only 3 – read-only as HTML |
SFD_Guid | varchar(36) |   |   |   | (newid()) | Global unique ID |
SFD_DefaultBRDID | int |   | Yes |   | Default business rule ID | |
SFD_IsVisibleSqlBRDID | int |   | Yes |   | Is visible sql business rule ID | |
SFD_EditModeSqlBRDID | int |   | Yes |   | Edit mode sql business rule ID | |
SFD_IsRequiredSqlBRDID | int |   | Yes |   | Is required sql business rule ID | |
SFD_JsOnValueChangeBRDID | int |   | Yes |   | Foreign key to ux business rule defining a javascript function to be executed on value change |
Name | Foreign Table | Primary Key |
---|---|---|
FK_WFStepFormFieldDetails_WFDetailConfigs | WFStepFormFieldDetails | PK_WFDetailConfigs |
FK_WFStepFormFieldDetails_WFBusinessRuleDefinitions_DefaultBRDID | WFStepFormFieldDetails | PK_WFBusinessRuleDefinitions |
FK_WFStepFormFieldDetails_WFBusinessRuleDefinitions_EditModeSqlBRDID | WFStepFormFieldDetails | PK_WFBusinessRuleDefinitions |
FK_WFStepFormFieldDetails_WFStepForms | WFStepFormFieldDetails | PK_WFStepForms |
FK_WFStepFormFieldDetails_WFBusinessRuleDefinitions_IsRequiredSqlBRDID | WFStepFormFieldDetails | PK_WFBusinessRuleDefinitions |
FK_WFStepFormFieldDetails_WFBusinessRuleDefinitions_IsVisibleSqlBRDID | WFStepFormFieldDetails | PK_WFBusinessRuleDefinitions |
FK_WFStepFormFieldDetails_WFBusinessRuleDefinitions_JsOnValueChangeBRDID | WFStepFormFieldDetails | PK_WFBusinessRuleDefinitions |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_WFStepFormFieldDetails | Yes | Yes | CLUSTERED | 100 |
IX_WFStepFormFieldDetails_FRMID |   |   | NONCLUSTERED | 100 |
IX_WFStepFormFieldDetails_DCNID |   |   | NONCLUSTERED | 100 |
UQ_WFStepFormFieldDetails_Guid | Yes |   | NONCLUSTERED | 100 |
Description: | Contains visibility configuration for attributes and also contains informations if attributes are flagged as readonly or required and contains detailed attribute configuration for individual step. |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
FLD_ID | int | Yes |   |   | Identifier | |
FLD_FRMID | int |   |   |   | Form identifier | |
FLD_WFCON | int |   |   |   | Identifier of the field to which the row applies | |
FLD_IsVisible | bit |   |   |   | ((1)) | |
FLD_IsRequired | bit |   |   |   | ((0)) | Information if the field is required |
FLD_Order | int |   |   |   | Order of the fields on the form | |
FLD_Prompt | varchar(50) |   | Yes |   | Prompt which is to appear instead of the normal field name. If the value is empty, the default prompt from the WFConfigurations table will be loaded. | |
FLD_PromptStyle | varchar(1000) |   | Yes |   | ||
FLD_ControlStyle | varchar(1000) |   | Yes |   | ||
FLD_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Row insert date |
FLD_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Row update date |
FLD_RowVersion | timestamp |   |   | Yes | Row version | |
FLD_PlaceHolder | int |   |   |   | ((1)) | |
FLD_EditModeId | int |   |   |   | ((1)) | Field visibility: 1 – edit mode 2 – read-only 3 – read-only as HTML |
FLD_SeparatorState | int |   |   |   | ((0)) | |
FLD_AllowExportSqlGrid | bit |   |   |   | ((0)) | |
FLD_Guid | varchar(36) |   |   |   | (newid()) | Global unique ID |
FLD_AllowAdd | bit |   | Yes |   | Determines if item list allows adding new rows | |
FLD_BreakSettingsInheritance | bit |   | Yes |   | Determines if item list has broken inheritance of its settings | |
FLD_AllowClone | bit |   | Yes |   | Determines if item list allows cloning rows | |
FLD_AllowDelete | bit |   | Yes |   | Determines if item list allows deleting rows | |
FLD_AllowExport | bit |   | Yes |   | Determines if item list allows exporting to Excel file | |
FLD_ShowInitButton | bit |   | Yes |   | Determines if item lists initialization button should be visible | |
FLD_ShowDeleteAllButton | bit |   | Yes |   | Determins if button for deleting all rows in item list should be visible | |
FLD_AllowImport | bit |   | Yes |   | Determines if item list allows importing | |
FLD_AcceptanceActive | bit |   | Yes |   | Determines if item lists acceptance is turned on | |
FLD_AllowReplacements | bit |   | Yes |   | Determines if acceptance should accept covers | |
FLD_DynamicPeople | bit |   | Yes |   | Determines if acceptors are being chosen dinamically | |
FLD_HideUnavailable | bit |   | Yes |   | Determines if rows unavailable due to acceptance should be hidden | |
FLD_ChangeBackground | bit |   | Yes |   | Determines if rows available due to acceptance should have their background changed | |
FLD_ShowOrdinalNumberColumn | bit |   | Yes |   | Detemines if ordinal column should be visible on item list | |
FLD_AcceptanceDataSourceID | int |   | Yes |   | Holds id of data source used for acceptance | |
FLD_AcceptanceColumn | varchar(255) |   | Yes |   | Holds column name used for acceptance | |
FLD_AcceptancePickerColumn | varchar(255) |   | Yes |   | Holds picker column used for acceptance | |
FLD_AcceptanceQuery | varchar(1000) |   | Yes |   | Holds query used for acceptance | |
FLD_Background | varchar(20) |   | Yes |   | Holds custom background for available rows in acceptance | |
FLD_AcceptanceQueryColumn | varchar(255) |   | Yes |   | Holds column used for determining acceptance by query | |
FLD_ShowActionsColumn | bit |   | Yes |   | Determines if actions column should be visible on item list | |
FLD_DefaultBRDID | int |   | Yes |   | Default value business rule ID | |
FLD_IsVisibleSqlBRDID | int |   | Yes |   | Is visible sql business rule ID | |
FLD_EditModeSqlBRDID | int |   | Yes |   | Edit mode sql business rule ID | |
FLD_IsRequiredSqlBRDID | int |   | Yes |   | Is required sql business rule ID | |
FLD_IsOnToolbar | bit |   |   |   | ((0)) | Is system field draged on toolbar |
FLD_GroupID | int |   | Yes |   | ID of group or tab panel to which the form field belongs. | |
FLD_JsOnValueChangeBRDID | int |   | Yes |   | Foreign key to ux business rule defining a javascript function to be executed on value change |
Name | Foreign Table | Primary Key |
---|---|---|
FK_WFStepFormFields_WFBusinessRuleDefinitions_FLD_DefaultBRDID | WFStepFormFields | PK_WFBusinessRuleDefinitions |
FK_WFStepFormFields_WFBusinessRuleDefinitions_EditModeSqlBRDID | WFStepFormFields | PK_WFBusinessRuleDefinitions |
FK_WFStepFormFields_WFStepForms | WFStepFormFields | PK_WFStepForms |
FK_WFStepFormFields_WFStepFormFields_GroupID | WFStepFormFields | PK_WFStepFormFields |
FK_WFStepFormFields_WFBusinessRuleDefinitions_IsRequiredSqlBRDID | WFStepFormFields | PK_WFBusinessRuleDefinitions |
FK_WFStepFormFields_WFBusinessRuleDefinitions_IsVisibleSqlBRDID | WFStepFormFields | PK_WFBusinessRuleDefinitions |
FK_WFStepFormFields_WFBusinessRuleDefinitions_JsOnValueChangeBRDID | WFStepFormFields | PK_WFBusinessRuleDefinitions |
FK_WFStepFormFields_WFConfigurations | WFStepFormFields | PK_WFConfigurations |
FK_WFStepFormFields_WFStepFormFields_GroupID | WFStepFormFields | PK_WFStepFormFields |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_WFStepFormFields | Yes | Yes | CLUSTERED | 100 |
IX_WFStepFormFields_WFCON |   |   | NONCLUSTERED | 100 |
IX_WFStepFormFields_FRMID |   |   | NONCLUSTERED | 100 |
IX_WFStepFormFields_GroupID |   |   | NONCLUSTERED | 0 |
UQ_WFStepFormFields_Guid | Yes |   | NONCLUSTERED | 100 |
Description: | Contains forms definitions for each step. By default one form is defined per step. |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
FRM_ID | int | Yes |   |   | Identifier | |
FRM_Name | varchar(50) |   | Yes |   | Form name | |
FRM_Description | varchar(500) |   | Yes |   | Form description | |
FRM_STPID | int |   | Yes |   | Identifier of the step to which the form applies | |
FRM_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Row insert date |
FRM_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Row update date |
FRM_RowVersion | timestamp |   |   | Yes | Row version | |
FRM_Guid | varchar(36) |   |   |   | (newid()) | |
FRM_SubDocTypeVisibleMode | int |   |   |   | ((0)) | |
FRM_ShowPanelDW | bit |   |   |   | ((0)) | |
FRM_LayoutInheritance | bit |   |   |   | ((0)) | |
FRM_IsDefaultForm | bit |   |   |   | ((1)) | Is this a default step form |
FRM_ShowAttachmentsCompactView | bit |   |   |   | ((0)) | |
FRM_WFID | int |   | Yes |   | Workflow ID for the global template | |
FRM_ShowAddNewButton | bit |   |   |   | ((1)) | |
FRM_ShowSaveButton | bit |   |   |   | ((1)) | |
FRM_ShowDeleteButton | bit |   |   |   | ((1)) | |
FRM_ShowRefreshButton | bit |   |   |   | ((1)) | |
FRM_ShowForwardTaskButton | bit |   |   |   | ((0)) | |
FRM_EnableAttScanPlugin | bit |   |   |   | ((0)) | |
FRM_EnableAttCopyFromClipboard | bit |   |   |   | ((0)) | |
FRM_EnableAttEditInList | bit |   |   |   | ((1)) | |
FRM_EnableAttAddDelete | bit |   |   |   | ((1)) | |
FRM_ShowOpenLinkInNewWindow | bit |   |   |   | ((0)) | |
FRM_AttachmentsSortOrder | int |   |   |   | ((0)) | |
FRM_ShowInPopup | bit |   |   |   | ((0)) | |
FRM_ViewEditMode | int |   |   |   | ((0)) | |
FRM_ShowSubworkflowsAttachments | bit |   |   |   | ((1)) | |
FRM_SubworkflowsAttachmentsConfig | varchar(MAX) |   | Yes |   | ||
FRM_AttachmentsShortcutsMode | int |   |   |   | ((0)) | |
FRM_ShowStatusPanel | bit |   |   |   | ((0)) | Show status panel |
FRM_FormType | int |   |   |   | ((0)) | Type of form |
FRM_FRMID | int |   | Yes |   | Parent form identifier | |
FRM_ShowPathMenu | bit |   |   |   | ((0)) | Determines if path menu should be displayed on top menu bar. |
FRM_IsJsOnLoadOverwritten | bit |   |   |   | ((0)) | Contains bool if JsOnLoad is overwritten |
FRM_IsJsToRegisterOverwritten | bit |   |   |   | ((0)) | Contains bool if IsJsToRegisterOverwritten is overwritten |
FRM_JSOnLoadBRDID | int |   | Yes |   | Foreign key to ux rule defining JS on load | |
FRM_JSOnLoadAndPostbackBRDID | int |   | Yes |   | Foreign key to ux rule defining JS on load | |
FRM_MobileJsOnLoadBRDID | int |   | Yes |   | Foreign key to ux rule defining mobile JS on load | |
FRM_ShowStatusPanelInformations | bit |   |   |   | ((1)) | |
FRM_ShowStatusPanelSteps | bit |   |   |   | ((1)) | |
FRM_ShowStatusPanelDetails | bit |   |   |   | ((1)) | |
FRM_ShowStatusPanelAssignment | bit |   |   |   | ((1)) | |
FRM_ShowStatusPanelParentElement | bit |   |   |   | ((1)) | |
FRM_ShowStatusPanelSubworkflows | bit |   |   |   | ((1)) | |
FRM_ShowStatusPanelProcessSupervisor | bit |   |   |   | ((1)) | |
FRM_ShowStatusPanelUserManual | bit |   |   |   | ((1)) | |
FRM_AttachmentConversationVisibility | bit |   |   |   | ((1)) | Tells if email conversation should be available on form |
FRM_PathPanelPositionMode | int |   |   |   | ((0)) | |
FRM_ShowStatusPanelElementId | bit |   |   |   | ((1)) | If systemId should be visible |
FRM_ShowSharingButton | bit |   |   |   | ((0)) | If sharing button should be visible |
FRM_IsDiagramPreviewAvailable | bit |   |   |   | ((0)) | If diagram preview is available on step |
FRM_ShowStatusPanelSignature | bit |   |   |   | ((0)) | Should signature be shown |
FRM_ShowInfoPanelStatistics | bit |   |   |   | ((1)) | Show Info panel: statistics |
FRM_ShowTotalDurationInInfoPanelStatistics | bit |   |   |   | ((1)) | Show Total duration in Info panel: statistics |
FRM_ShowFormFillingTimeInInfoPanelStatistics | bit |   |   |   | ((1)) | Show Form filling time in Info panel: statistics |
FRM_ShowKpiByStepInInfoPanelStatistics | bit |   |   |   | ((1)) | Show KPI by step in Info panel: statistics |
FRM_ShowPerformanceIndicatorsInInfoPanelStatistics | bit |   |   |   | ((1)) | Show Performance indicators in Info panel: statistics |
FRM_ShowStatusPanelQrButton | bit |   |   |   | ((1)) | Show Qr Button |
FRM_FormSplitTemplate | int |   |   |   | ((0)) | Defines form split templates |
FRM_SystemWorkflowPhaseSettings | varchar(MAX) |   | Yes |   | Configuration of workflow phase form field | |
FRM_PreviewExcelFilesAsPdf | bit |   |   |   | ((0)) | Should excel files preview as Pdf |
FRM_WorkflowPhaseDisplayType | int |   |   |   | ((0)) | display type of phases control on form |
Name | Foreign Table | Primary Key |
---|---|---|
FK_WFStepForms_WFStepForms | WFStepForms | PK_WFStepForms |
FK_WFStepForms_WFBusinessRuleDefinitions_JSOnLoadAndPostbackBRDID | WFStepForms | PK_WFBusinessRuleDefinitions |
FK_WFStepForms_WFBusinessRuleDefinitions_JSOnLoadBRDID | WFStepForms | PK_WFBusinessRuleDefinitions |
FK_WFStepForms_WFBusinessRuleDefinitions_MobileJsOnLoadBRDID | WFStepForms | PK_WFBusinessRuleDefinitions |
FK_WFStepForms_WFSteps | WFStepForms | PK_WFSteps |
FK_WFStepForms_WorkFlows | WFStepForms | PK_WorkFlows |
FK_ActiveTasks_WFStepForms | ActiveTasks | PK_WFStepForms |
FK_FormPathAssocs_WFStepForms | FormPathAssocs | PK_WFStepForms |
FK_HistoryTasks_WFStepForms | HistoryTasks | PK_WFStepForms |
FK_WFStepFormFieldDetails_WFStepForms | WFStepFormFieldDetails | PK_WFStepForms |
FK_WFStepFormFields_WFStepForms | WFStepFormFields | PK_WFStepForms |
FK_WFStepForms_WFStepForms | WFStepForms | PK_WFStepForms |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_WFStepForms | Yes | Yes | CLUSTERED | 100 |
UQ_WFStepForms_Guid | Yes |   | NONCLUSTERED | 100 |
IX_WFStepForms_FRM_WFID |   |   | NONCLUSTERED | 100 |
IX_WFStepForms_FRM_STPID |   |   | NONCLUSTERED | 100 |
Description: | Contains definitions of steps within workflows. |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
STP_ID | int | Yes |   |   | Identifier | |
STP_WFID | int |   |   |   | Relation to the Workflows table. Identifies with which workflow a specific step is related. | |
STP_Name | varchar(50) |   |   |   | Name | |
STP_Description | varchar(MAX) |   | Yes |   | Description | |
STP_Order | int |   |   |   | Default step order | |
STP_HiddenInStatusPanel | bit |   |   |   | ((0)) | Is a step hidden in the status panel |
STP_MaxStepDuration | int |   |   |   | ((0)) | The maximum time in days in which the transition to another step should take place. If no user reaction occurs at that time, “TIMEOUT” type actions (contained in the WFActions table) will be performed. The action can be sending an e-mail to the manager or assigning another person, or moving to another step |
STP_EnableLabelKS | bit |   |   |   | ((0)) | Enable accounting print |
STP_DesignerData | nvarchar(MAX) |   | Yes |   | Data stored by the graphical workflow designer | |
STP_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Row insert date |
STP_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Row update date |
STP_RowVersion | timestamp |   |   | Yes | Row version | |
STP_TypeId | int |   |   |   | ((2)) | Foreign key to the dictionary table that contains types of steps |
STP_IsFinish | bit |   |   | Yes | Is system responsible for the step (e.g. waiting for a scan) | |
STP_Guid | varchar(36) |   |   |   | (newid()) | Entry unique identifier for import export mechanism |
STP_SubWorkFlowsSettings | varchar(MAX) |   | Yes |   | Subworkflows settings | |
STP_ExpectedAvgStepDurationByHours | int |   | Yes |   | Expected average step duration by hours | |
STP_ExpectedAvgEditDurationBySec | int |   | Yes |   | Expected average step duration by seconds | |
STP_IsFlexiVerification | bit |   |   |   | ((0)) | Is OCR verification step |
STP_ShowInDiagram | bit |   |   |   | ((1)) | Is a step hidden in workflow diagram |
STP_DisplayFirstAttachmentOnLoad | bit |   |   |   | ((0)) | First attachment is displayed when the page is loaded |
STP_DocumentationDescription | varchar(MAX) |   | Yes |   | Description that is used in documentation | |
STP_Icon | image(2147483647) |   | Yes |   | Step icon | |
STP_IconSmall | image(2147483647) |   | Yes |   | Small icon | |
STP_BranchEvaluationType | int |   |   |   | ((1)) | Branch evaluation type |
STP_BranchCustomConfiguration | varchar(MAX) |   | Yes |   | Branch custom configuration | |
STP_DeviceAutenticationRequired | int |   |   |   | ((0)) | Device autentication is required |
STP_DeviceAutenticationExcluedUsers | varchar(MAX) |   | Yes |   | Device authentication users excluded | |
STP_TemplateID | int |   | Yes |   | Template ID | |
STP_TaskHandlingType | int |   |   |   | ((1)) | Flag telling how system step handling tasks |
STP_BranchConditionBRDID | int |   | Yes |   | Foreign key to business rule defining branch target path | |
STP_IsInit | bit |   |   | Yes | Is the step an initiating step in a given workflow | |
STP_IsInSystemProcess | bit |   |   | Yes | Caluculated column - Is current step system step. System steps: - SystemWaitingForScan - SystemWaitingForOtherWorkFlow - Branch - System - SystemWaitingForTextLayer - SystemWaitingForOcrAi - SystemWaitingForOcrAiLearn - SystemStart | |
STP_OnEntryAUTMID | int |   | Yes |   | On Entry Automation identifier | |
STP_OnExitAUTMID | int |   | Yes |   | On Exit Automation identifier | |
STP_OnBrowserOpeningAUTMID | int |   | Yes |   | On Browser Opening Automation identifier | |
STP_OnSaveAUTMID | int |   | Yes |   | On Save Automation identifier | |
STP_OnDeleteAUTMID | int |   | Yes |   | On Delete Automation identifier | |
STP_OnAttachmentAddAUTMID | int |   | Yes |   | On Attachment Add Automation identifier | |
STP_WPID | int |   | Yes |   | Identifier of associated workflow phase | |
STP_WOAID | int |   | Yes |   | Identifier of associated workflow actor |
Name | Foreign Table | Primary Key |
---|---|---|
FK_WFSteps_WFBusinessRuleDefinitions_BranchConditionBRDID | WFSteps | PK_WFBusinessRuleDefinitions |
FK_WFSteps_Automations_OnAttachmentAddAUTMID | WFSteps | PK_Automations |
FK_WFSteps_Automations_OnBrowserOpeningAUTMID | WFSteps | PK_Automations |
FK_WFSteps_Automations_OnDeleteAUTMID | WFSteps | PK_Automations |
FK_WFSteps_Automations_OnEntryAUTMID | WFSteps | PK_Automations |
FK_WFSteps_Automations_OnExitAUTMID | WFSteps | PK_Automations |
FK_WFSteps_Automations_OnSaveAUTMID | WFSteps | PK_Automations |
FK_WFSteps_DicStepTypes | WFSteps | PK_DicStepTypes |
FK_WFSteps_WorkFlows | WFSteps | PK_WorkFlows |
FK_WFSteps_WorkflowActors | WFSteps | PK_WorkflowActors |
FK_WFSteps_WorkflowPhases | WFSteps | PK_WorkflowPhases |
FK_ActiveTasks_WFSteps | ActiveTasks | PK_WFSteps |
FK_AnalyticsSteps_WFSteps | AnalyticsSteps | PK_WFSteps |
FK_AnalyticsUsers_WFSteps | AnalyticsUsers | PK_WFSteps |
FK_HistoryTasks_WFSteps | HistoryTasks | PK_WFSteps |
FK_HistoryTasks_WFSteps | HistoryTasks | PK_WFSteps |
FK_KPIElements_WFSteps | KPIElements | PK_WFSteps |
FK_KPITops_WFSteps | KPITops | PK_WFSteps |
FK_WFActionButtonGroups_WFSteps | WFActionButtonGroups | PK_WFSteps |
FK_WFActionButtons_WFSteps | WFActionButtons | PK_WFSteps |
FK_WFActions_WFSteps | WFActions | PK_WFSteps |
FK_WFAvaiblePaths_WFSteps_NextStep | WFAvaiblePaths | PK_WFSteps |
FK_WFAvaiblePaths_WFSteps | WFAvaiblePaths | PK_WFSteps |
FK_WFData_WFSteps | WFElements | PK_WFSteps |
FK_WFStepForms_WFSteps | WFStepForms | PK_WFSteps |
FK_WFTimeouts_WFSteps | WFTimeouts | PK_WFSteps |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_WFSteps | Yes | Yes | CLUSTERED | 100 |
UQ_WFSteps_Guid | Yes |   | NONCLUSTERED | 100 |
IX_WFSteps_Name |   |   | NONCLUSTERED | 100 |
IX_WFSteps_WFID |   |   | NONCLUSTERED | 100 |
IX_WFSteps_STP_WPID |   |   | NONCLUSTERED | 0 |
IX_WFSteps_STP_WOAID |   |   | NONCLUSTERED | 0 |
Description: | Table contains Webcon BPS timeouts definitions for each step. |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
TIM_ID | int | Yes |   |   | Identifier | |
TIM_Name | varchar(50) |   | Yes |   | Auxilary name | |
TIM_STPID | int |   |   |   | Identifier of the step for which Webcon BPS timeout is defined | |
TIM_Interval | int |   |   |   | ((1)) | How many time units have to pass for Webcon BPS timeout to be activated |
TIM_RepeatCount | int |   |   |   | ((1)) | Number of Webcon BPS timeout repetitions (0 means no limit) |
TIM_DayInPeriod | int |   |   |   | In case of weekly, monthly an annual Webcon BPS timeout it allows to set on which day of these intervals it will start, e.g. on the 3rd day of the week | |
TIM_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
TIM_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
TIM_RowVersion | timestamp |   |   | Yes | Timestamp | |
TIM_IngoreWeekends | bit |   |   |   | ((0)) | Whether calculating the time of the next Webcon BPS timeout should skip weekends |
TIM_IsNightOnly | bit |   |   |   | ((0)) | Whether the Webcon BPS timeout should be activated only at night |
TIM_Delay | int |   | Yes |   | Webcon BPS timeout activation delay (in days) | |
TIM_WFCONID | int |   | Yes |   | Form field ID based on which the Webcon BPS timeout starting date is calculated. If it’s NULL, the starting date will be based on the step entry date | |
TIM_Guid | varchar(36) |   |   |   | (newid()) | Entry unique identifier for import export mechanism |
TIM_RunStartHour | datetime |   | Yes |   | Webcon BPS timeout starting hour | |
TIM_RunEndHour | datetime |   | Yes |   | Webcon BPS timeout eniding hour | |
TIM_RunningInHoursEnabled | bit |   |   |   | ((0)) | Is Webcon BPS timeout running in hours |
TIM_InsertingSQL | varchar(MAX) |   | Yes |   | Additional SQL query can be provided which checks if Webcon BPS timeout can be inserted | |
TIM_PATHID | int |   | Yes |   | Reference to the path which should be called by the Webcon BPS timeout | |
TIM_IsWorkingDaysCalendarMode | bit |   |   |   | ((0)) | Is Webcon BPS timeout in working days calendar mode |
TIM_ErrorPATHID | int |   | Yes |   | Path ID to execute when Webcon BPS timeout action finish with error | |
TIM_Description | varchar(MAX) |   | Yes |   | Webcon BPS timeout description | |
TIM_ValidationErrorPATHID | int |   | Yes |   | Path ID to execute when any Webcon BPS timeout action finishes with validation error | |
TIM_AUTMID | int |   | Yes |   | Automation identifier | |
TIM_FirstRunType | int |   |   |   | ((1)) | Time taken for calculating first run of the timer: Instantaneous = 0, Date attribute = 1, Step entry = 2 |
TIM_IsRunInCycle | bit |   |   |   | ((0)) | Is Webcon BPS Timer set to work in cycle |
TIM_MaxFailureCount | int |   |   |   | ((5)) | Number of allowed Webcon BPS Timer execution errors |
TIM_IntervalType | int |   |   |   | Defines unit of time interval in which timer should launch | |
TIM_FailureRetryMinutes | int |   |   |   | ((10)) | Number of minutes to retry timer execution after error |
Name | Foreign Table | Primary Key |
---|---|---|
FK_WFTimeouts_Automations | WFTimeouts | PK_Automations |
FK_WFTimeouts_ErrorPATHID_WFAvaiblePaths | WFTimeouts | PK_WFAvaiblePaths |
FK_WFTimeouts_WFAvaiblePaths | WFTimeouts | PK_WFAvaiblePaths |
FK_WFTimeouts_WFSteps | WFTimeouts | PK_WFSteps |
FK_WFTimeouts_ValidationErrorPATHID_WFAvaiblePaths | WFTimeouts | PK_WFAvaiblePaths |
FK_WFTimeouts_WFConfigurations | WFTimeouts | PK_WFConfigurations |
FK_WFElementTimeouts_WFTimeouts | WFElementTimeouts | PK_WFTimeouts |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_WFTimeouts | Yes | Yes | CLUSTERED | 100 |
UQ_WFTimeouts_Guid | Yes |   | NONCLUSTERED | 100 |
IX_WFTimeouts_TIM_STPID |   |   | NONCLUSTERED | 100 |
Description: | Table contains affiliation of workstations to register points using computer name/IP/user login. It also contains printer definition for that workstations. |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
WFW_ID | int | Yes |   |   | Identifier | |
WFW_WFRID | int |   |   |   | Related WFRegisterPoints identifier | |
WFW_Code | varchar(20) |   |   |   | Computer code | |
WFW_Name | varchar(50) |   | Yes |   | Computer name | |
WFW_IPAddress | varchar(20) |   | Yes |   | Computer IP address | |
WFW_PrinterName | varchar(255) |   | Yes |   | Main printer | |
WFW_PrinterNameKS | varchar(255) |   | Yes |   | Accounting printer | |
WFW_Description | varchar(1000) |   | Yes |   | Computer description | |
WFW_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
WFW_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
WFW_RowVersion | timestamp |   |   | Yes | Timestamp | |
WFW_UserLogin | varchar(255) |   | Yes |   | User login | |
WFW_IPv6Adress | varchar(45) |   | Yes |   | Computer IPv6 address | |
WFW_CommunicationMode | int |   |   |   | ((0)) | Communication mode for computer terminal of entry point |
Name | Foreign Table | Primary Key |
---|---|---|
FK_WFWorkstations_WFRegisterPoints | WFWorkstations | PK_WFRegisterPoints |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_WFWorkstations | Yes | Yes | CLUSTERED | 100 |
Description: | Stores lock for attachment file access |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
DVL_ID | int | Yes |   |   | Identifier | |
DVL_ATTID | int |   |   |   | ID of locked attachment | |
DVL_Token | varchar(36) |   |   |   | Lock token | |
DVL_Shared | bit |   |   |   | Is lock shared | |
DVL_Deep | bit |   |   |   | Is lock deep | |
DVL_UserName | varchar(255) |   |   |   | Name of user who locked attachment | |
DVL_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
DVL_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
DVL_RowVersion | timestamp |   |   | Yes | Timestamp | |
DVL_BpsId | varchar(255) |   |   |   | ('system') | BpsId of the user who set lock on WebDav file |
DVL_ExpiresUTC | datetime |   |   |   | Time when lock expires expressed as the Coordinated Universal Time (UTC). |
Name | Foreign Table | Primary Key |
---|---|---|
FK_WebDavLocks_WFDataAttachmets_ATTID | WebDavLocks | PK_WFDataAttachmets |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_WebDavLocks | Yes | Yes | CLUSTERED | 100 |
Description: | Contains definitions of workflows. |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
WF_ID | int | Yes |   |   | Identifier | |
WF_WFDEFID | int |   |   |   | Relation to the WFDefinitions table (which is a class which groups the workflows) | |
WF_SignatureDefinition | varchar(4000) |   | Yes |   | Signature definition | |
WF_Name | varchar(50) |   |   |   | Name of workflow | |
WF_Description | varchar(MAX) |   | Yes |   | Description | |
WF_ProcedureFilePath | varchar(255) |   | Yes |   | Procedure file path | |
WF_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
WF_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
WF_RowVersion | timestamp |   |   | Yes | Timestamp | |
WF_Version | int |   |   |   | ((1)) | Instance version |
WF_AttachmentSecurityLevel | int |   |   |   | ((0)) | Attachment security level (high = 0, low = 1) |
WF_Guid | varchar(36) |   |   |   | (newid()) | Entry unique identifier for import export mechanism |
WF_AllowToStartManually | bit |   |   |   | ((1)) | Determines if the workflow can be started by the user. If not, only the parent can do so |
WF_DocumentationDescription | varchar(MAX) |   | Yes |   | Workflow documentation description | |
WF_Acronym | varchar(50) |   | Yes |   | Workflow acronym | |
WF_DesignerData | varchar(MAX) |   | Yes |   | Designer data of workflow dependant objects | |
WF_OnBrowserOpeningAUTMID | int |   | Yes |   | On Browser Opening Automation identifier | |
WF_OnSaveAUTMID | int |   | Yes |   | On Save Automation identifier | |
WF_OnDeleteAUTMID | int |   | Yes |   | On Delete Automation identifier | |
WF_OnAttachmentAddAUTMID | int |   | Yes |   | On Attachment Add Automation identifier | |
WF_LimitScopeOfAnalyticsData | bit |   |   |   | ((0)) | True if workflow is set to limit the scope of data to analyze |
WF_AnalyticsLimitationDate | date(10) |   | Yes |   | Processes data for analytics for elements after this date | |
WF_StagesAndRolesConfig | varchar(MAX) |   | Yes |   | Configuration of stages and roles | |
WF_PhasesEnabled | bit |   |   |   | ((0)) | Should phases be shown on the workflow designer |
WF_ActorsEnabled | bit |   |   |   | ((0)) | Should actors be shown on the workflow designer |
Name | Foreign Table | Primary Key |
---|---|---|
FK_WorkFlows_Automations_OnAttachmentAddAUTMID | WorkFlows | PK_Automations |
FK_WorkFlows_Automations_OnBrowserOpeningAUTMID | WorkFlows | PK_Automations |
FK_WorkFlows_Automations_OnDeleteAUTMID | WorkFlows | PK_Automations |
FK_WorkFlows_Automations_OnSaveAUTMID | WorkFlows | PK_Automations |
FK_WorkFlows_WFDefinitions | WorkFlows | PK_WFDefinitions |
FK_DocTypeAssocciation_WorkFlows | DocTypeAssocciations | PK_WorkFlows |
FK_HotFolders_WorkFlows | HotFolders | PK_WorkFlows |
FK_HotMailBoxs_WorkFlows | HotMailBoxs | PK_WorkFlows |
FK_KPIElements_WorkFlows | KPIElements | PK_WorkFlows |
FK_KPITops_WorkFlows | KPITops | PK_WorkFlows |
FK_TilesConfigurations_WorkFlows | TilesConfigurations | PK_WorkFlows |
FK_WFActionButtonGroups_WorkFlows | WFActionButtonGroups | PK_WorkFlows |
FK_WFActionButtons_WorkFlows | WFActionButtons | PK_WorkFlows |
FK_WFActions_WorkFlows | WFActions | PK_WorkFlows |
WFRecurrentActionsDefinitions_fk | WFRecurrentActionsDefinitions | PK_WorkFlows |
FK_WFStepForms_WorkFlows | WFStepForms | PK_WorkFlows |
FK_WFSteps_WorkFlows | WFSteps | PK_WorkFlows |
FK_WorkflowActors_WorkFlows | WorkflowActors | PK_WorkFlows |
FK_WorkflowPhases_WorkFlows | WorkflowPhases | PK_WorkFlows |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_WorkFlows | Yes | Yes | CLUSTERED | 100 |
IX_WorkFlows_Name |   |   | NONCLUSTERED | 100 |
UQ_WorkFlows_Guid | Yes |   | NONCLUSTERED | 100 |
IX_WorkFlows_WF_WFDEFID |   |   | NONCLUSTERED | 100 |
Description: | Table containing details of workflow actors |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
WOAD_ID | int | Yes |   |   | Identifier | |
WOAD_Guid | varchar(36) |   |   |   | (newid()) | Guid |
WOAD_WOAID | int |   |   |   | Identifier of associated workflow actor | |
WOAD_Height | int |   | Yes |   | Height | |
WOAD_Order | int |   | Yes |   | Order | |
WOAD_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
WOAD_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
WOAD_RowVersion | timestamp |   |   | Yes | Timestamp | |
WOAD_CreatedBy | varchar(255) |   |   |   | Author | |
WOAD_UpdatedBy | varchar(255) |   |   |   | Last modifier |
Name | Foreign Table | Primary Key |
---|---|---|
FK_WorkflowActorDetails_WorkflowActors | WorkflowActorDetails | PK_WorkflowActors |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_WorkflowActorDetails | Yes | Yes | CLUSTERED | 0 |
IX_WorkflowActorDetails_WOAD_WOAID |   |   | NONCLUSTERED | 0 |
Description: | Table containing workflow actors |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
WOA_ID | int | Yes |   |   | Identifier | |
WOA_Guid | varchar(36) |   |   |   | (newid()) | Guid |
WOA_WFID | int |   |   |   | Identifier of associated workflow | |
WOA_Name | varchar(255) |   |   |   | Name | |
WOA_Description | varchar(MAX) |   | Yes |   | Description | |
WOA_Documentation | varchar(MAX) |   | Yes |   | Documentation | |
WOA_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
WOA_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
WOA_RowVersion | timestamp |   |   | Yes | Timestamp | |
WOA_CreatedBy | varchar(255) |   |   |   | Author | |
WOA_UpdatedBy | varchar(255) |   |   |   | Last modifier |
Name | Foreign Table | Primary Key |
---|---|---|
FK_WorkflowActors_WorkFlows | WorkflowActors | PK_WorkFlows |
FK_WFSteps_WorkflowActors | WFSteps | PK_WorkflowActors |
FK_WorkflowActorDetails_WorkflowActors | WorkflowActorDetails | PK_WorkflowActors |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_WorkflowActors | Yes | Yes | CLUSTERED | 0 |
IX_WorkflowActors_WOA_WFID |   |   | NONCLUSTERED | 0 |
Description: | Table containing details of workflow phases |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
WPD_ID | int | Yes |   |   | Identifier | |
WPD_Guid | varchar(36) |   |   |   | (newid()) | Guid |
WPD_WPID | int |   |   |   | Identifier of associated workflow phase | |
WPD_Width | int |   | Yes |   | Width | |
WPD_Order | int |   | Yes |   | Order | |
WPD_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
WPD_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
WPD_RowVersion | timestamp |   |   | Yes | Timestamp | |
WPD_CreatedBy | varchar(255) |   |   |   | Author | |
WPD_UpdatedBy | varchar(255) |   |   |   | Last modifier |
Name | Foreign Table | Primary Key |
---|---|---|
FK_WorkflowPhaseDetails_WorkflowPhases | WorkflowPhaseDetails | PK_WorkflowPhases |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_WorkflowPhaseDetails | Yes | Yes | CLUSTERED | 0 |
IX_WorkflowPhaseDetails_WPD_WPID |   |   | NONCLUSTERED | 0 |
Description: | Table containing workflow phases |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
WP_ID | int | Yes |   |   | Identifier | |
WP_Guid | varchar(36) |   |   |   | (newid()) | Guid |
WP_WFID | int |   |   |   | Identifier of associated workflow | |
WP_Name | varchar(255) |   |   |   | Name | |
WP_Description | varchar(MAX) |   | Yes |   | Description | |
WP_Documentation | varchar(MAX) |   | Yes |   | Documentation | |
WP_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
WP_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
WP_RowVersion | timestamp |   |   | Yes | Timestamp | |
WP_CreatedBy | varchar(255) |   |   |   | Author | |
WP_UpdatedBy | varchar(255) |   |   |   | Last modifier |
Name | Foreign Table | Primary Key |
---|---|---|
FK_WorkflowPhases_WorkFlows | WorkflowPhases | PK_WorkFlows |
FK_WFSteps_WorkflowPhases | WFSteps | PK_WorkflowPhases |
FK_WorkflowPhaseDetails_WorkflowPhases | WorkflowPhaseDetails | PK_WorkflowPhases |
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_WorkflowPhases | Yes | Yes | CLUSTERED | 0 |
IX_WorkflowPhases_WP_WFID |   |   | NONCLUSTERED | 0 |
Description: | Table contains configurations of non-working days for a year |
Column Name | Data Type | Key? | Nullable? | Computed? | Default | Description |
---|---|---|---|---|---|---|
WODC_ID | int | Yes |   |   | Identifier | |
WODC_TSInsert | datetime |   |   |   | ([dbo].[GetDbDate]()) | Creation date |
WODC_TSUpdate | datetime |   |   |   | ([dbo].[GetDbDate]()) | Last modification date |
WODC_RowVersion | timestamp |   |   | Yes | Timestamp | |
WODC_CreatedBy | varchar(255) |   |   |   | Author | |
WODC_UpdatedBy | varchar(255) |   |   |   | Last modifier | |
WODC_Day | int |   | Yes |   | Non-working day (0 - Monday, 1 - Tuesday, etc.) | |
WODC_Date | date(10) |   | Yes |   | Non-working date | |
WODC_Year | int |   |   |   | Calendar year |
Name | Foreign Table | Primary Key |
---|
Name | Unique | Clustered | Type | Fill Factor |
---|---|---|---|---|
PK_WorkingDaysConfigurations | Yes | Yes | CLUSTERED | 100 |
Name | DataTypeComplete | IsPK? | Is Nullable? | IsComputed | IsIdentity | Default | Description |
---|---|---|---|---|---|---|---|
COS_ID | int | false |   |   | Yes | null | |
COS_Login | varchar(255) | false |   |   |   | null | |
COS_ManagerID | int | false | Yes |   |   | null | |
COS_ManagerLogin | varchar(255) | false | Yes |   |   | null | |
COS_ManagerDisplayName | varchar(255) | false | Yes |   |   | null | |
COS_IsActive | bit | false | Yes |   |   | null | |
COS_AD_accountexpires | datetime | false | Yes |   |   | null | |
COS_AD_adspath | varchar(MAX) | false | Yes |   |   | null | |
COS_AD_company | varchar(255) | false | Yes |   |   | null | |
COS_AD_comment | varchar(MAX) | false | Yes |   |   | null | |
COS_AD_countrycode | int | false | Yes |   |   | null | |
COS_AD_department | varchar(255) | false | Yes |   |   | null | |
COS_AD_description | varchar(1025) | false | Yes |   |   | null | |
COS_AD_displayname | varchar(255) | false | Yes |   |   | null | |
COS_AD_distinguishedname | varchar(MAX) | false | Yes |   |   | null | |
COS_AD_givenname | varchar(255) | false | Yes |   |   | null | |
COS_AD_homedirectory | varchar(260) | false | Yes |   |   | null | |
COS_AD_homephone | varchar(255) | false | Yes |   |   | null | |
COS_AD_info | varchar(MAX) | false | Yes |   |   | null | |
COS_AD_ipphone | varchar(255) | false | Yes |   |   | null | |
COS_AD_iscriticalsystemobject | bit | false | Yes |   |   | null | |
COS_AD_localeid | int | false | Yes |   |   | null | |
COS_AD_mail | varchar(MAX) | false | Yes |   |   | null | |
COS_AD_manager | varchar(MAX) | false | Yes |   |   | null | |
COS_AD_memberOf | varchar(MAX) | false | Yes |   |   | null | |
COS_AD_mobile | varchar(255) | false | Yes |   |   | null | |
COS_AD_name | varchar(255) | false | Yes |   |   | null | |
COS_AD_objectcategory | varchar(MAX) | false | Yes |   |   | null | |
COS_AD_objectclass | varchar(MAX) | false | Yes |   |   | null | |
COS_AD_objectguid | binary(16) | false | Yes |   |   | null | |
COS_AD_objectsid | varbinary(100) | false | Yes |   |   | null | |
COS_AD_objectversion | int | false | Yes |   |   | null | |
COS_AD_ou | varchar(MAX) | false | Yes |   |   | null | |
COS_AD_pager | varchar(255) | false | Yes |   |   | null | |
COS_AD_postalcode | varchar(255) | false | Yes |   |   | null | |
COS_AD_postofficebox | varchar(255) | false | Yes |   |   | null | |
COS_AD_primarygroupid | int | false | Yes |   |   | null | |
COS_AD_samaccountname | varchar(MAX) | false | Yes |   |   | null | |
COS_AD_samaccounttype | int | false | Yes |   |   | null | |
COS_AD_securityidentifier | varbinary(100) | false | Yes |   |   | null | |
COS_AD_showinaddressbook | varchar(MAX) | false | Yes |   |   | null | |
COS_AD_sn | varchar(255) | false | Yes |   |   | null | |
COS_AD_st | varchar(255) | false | Yes |   |   | null | |
COS_AD_streetaddress | varchar(MAX) | false | Yes |   |   | null | |
COS_AD_telephonenumber | varchar(255) | false | Yes |   |   | null | |
COS_AD_title | varchar(255) | false | Yes |   |   | null | |
COS_AD_useraccountcontrol | int | false | Yes |   |   | null | |
COS_AD_userparameters | varchar(MAX) | false | Yes |   |   | null | |
COS_AD_userprincipalname | varchar(MAX) | false | Yes |   |   | null | |
COS_AD_whencreated | datetime | false | Yes |   |   | null | |
COS_AD_wwwhomepage | varchar(MAX) | false | Yes |   |   | null | |
COS_ExtensionAttribute01 | varchar(MAX) | false | Yes |   |   | null | |
COS_ExtensionAttribute02 | varchar(MAX) | false | Yes |   |   | null | |
COS_ExtensionAttribute03 | varchar(MAX) | false | Yes |   |   | null | |
COS_ExtensionAttribute04 | varchar(MAX) | false | Yes |   |   | null | |
COS_ExtensionAttribute05 | varchar(MAX) | false | Yes |   |   | null | |
COS_ExtensionAttribute06 | varchar(MAX) | false | Yes |   |   | null | |
COS_ExtensionAttribute07 | varchar(MAX) | false | Yes |   |   | null | |
COS_ExtensionAttribute08 | varchar(MAX) | false | Yes |   |   | null | |
COS_ExtensionAttribute09 | varchar(MAX) | false | Yes |   |   | null | |
COS_ExtensionAttribute10 | varchar(MAX) | false | Yes |   |   | null | |
COS_ExtensionAttribute11 | varchar(MAX) | false | Yes |   |   | null | |
COS_ExtensionAttribute12 | varchar(MAX) | false | Yes |   |   | null | |
COS_ExtensionAttribute13 | varchar(MAX) | false | Yes |   |   | null | |
COS_ExtensionAttribute14 | varchar(MAX) | false | Yes |   |   | null | |
COS_ExtensionAttribute15 | varchar(MAX) | false | Yes |   |   | null | |
COS_ExtensionAttribute16 | varchar(MAX) | false | Yes |   |   | null | |
COS_ExtensionAttribute17 | varchar(MAX) | false | Yes |   |   | null | |
COS_ExtensionAttribute18 | varchar(MAX) | false | Yes |   |   | null | |
COS_ExtensionAttribute19 | varchar(MAX) | false | Yes |   |   | null | |
COS_ExtensionAttribute20 | varchar(MAX) | false | Yes |   |   | null | |
COS_ExtensionAttribute21 | varchar(MAX) | false | Yes |   |   | null | |
COS_ExtensionAttribute22 | varchar(MAX) | false | Yes |   |   | null | |
COS_ExtensionAttribute23 | varchar(MAX) | false | Yes |   |   | null | |
COS_ExtensionAttribute24 | varchar(MAX) | false | Yes |   |   | null | |
COS_ExtensionAttribute25 | varchar(MAX) | false | Yes |   |   | null | |
COS_ExtensionAttribute26 | varchar(MAX) | false | Yes |   |   | null | |
COS_ExtensionAttribute27 | varchar(MAX) | false | Yes |   |   | null | |
COS_ExtensionAttribute28 | varchar(MAX) | false | Yes |   |   | null | |
COS_ExtensionAttribute29 | varchar(MAX) | false | Yes |   |   | null | |
COS_ExtensionAttribute30 | varchar(MAX) | false | Yes |   |   | null | |
COS_TSInsert | datetime | false |   |   |   | null | |
COS_TSUpdate | datetime | false |   |   |   | null | |
COS_RowVersion | timestamp | false |   | Yes |   | null | |
COS_AD_physicalDeliveryOfficeName | varchar(255) | false | Yes |   |   | null | |
COS_DomainPath | varchar(256) | false | Yes |   |   | null | |
COS_SID | varchar(100) | false | Yes |   |   | null | |
COS_Domain | varchar(255) | false | Yes |   |   | null | |
COS_BpsID | varchar(255) | false |   |   |   | null | |
COS_Department | varchar(250) | false | Yes |   |   | null | |
COS_JobTitle | varchar(250) | false | Yes |   |   | null | |
COS_Email | varchar(MAX) | false | Yes |   |   | null | |
COS_DisplayName | varchar(255) | false | Yes |   |   | null | |
COS_AccountType | int | false |   |   |   | null | |
COS_ManagerBpsID | varchar(255) | false | Yes |   |   | null | |
COS_AD_cn | varchar(MAX) | false | Yes |   |   | null | |
COS_AD_proxyaddresses | varchar(MAX) | false | Yes |   |   | null | |
COS_ProviderType | int | false |   |   |   | null | |
COS_LastSuccessfulSyncTime | datetime | false |   |   |   | null | |
COS_SynchronizationError | bit | false |   |   |   | null | |
COS_OnPremisesSyncEnabled | bit | false |   |   |   | null | |
COS_AzureADID | varchar(36) | false | Yes |   |   | null | |
COS_UserType | int | false | Yes |   |   | null | |
COS_GroupType | int | false | Yes |   |   | null | |
COS_PhoneNumber | varchar(255) | false | Yes |   |   | null | |
COS_LastSyncGuid | varchar(36) | false |   |   |   | null | |
COS_DomainSamaccountname | varchar(MAX) | false | Yes |   |   | null |
Name | DataTypeComplete | IsPK? | Is Nullable? | IsComputed | IsIdentity | Default | Description |
---|---|---|---|---|---|---|---|
CHR_ID | bigint | false |   |   |   | null | |
CHR_RowID | varchar(20) | false |   |   |   | null | |
CHR_ChangeType | varchar(50) | false |   |   |   | null | |
CFT_Name | varchar(255) | false |   |   |   | null | |
CHR_CHOID | bigint | false |   |   |   | null | |
CFT_RowName | nvarchar(MAX) | false | Yes |   |   | null |
Name | DataTypeComplete | IsPK? | Is Nullable? | IsComputed | IsIdentity | Default | Description |
---|---|---|---|---|---|---|---|
AUTM_ID | int | false | Yes |   |   | null | |
AUTM_AUTMID | int | false | Yes |   |   | null | |
RootAutmID | int | false | Yes |   |   | null | |
Hierarchy | varchar(MAX) | false | Yes |   |   | null | |
HierarchyNames | nvarchar(MAX) | false | Yes |   |   | null |
Name | DataTypeComplete | IsPK? | Is Nullable? | IsComputed | IsIdentity | Default | Description |
---|---|---|---|---|---|---|---|
BRD_ID | int | false | Yes |   |   | null | |
BRD_BRDID | int | false | Yes |   |   | null | |
RootAutmID | int | false | Yes |   |   | null | |
Hierarchy | nvarchar(MAX) | false | Yes |   |   | null | |
HierarchyNames | nvarchar(MAX) | false | Yes |   |   | null |
Name | DataTypeComplete | IsPK? | Is Nullable? | IsComputed | IsIdentity | Default | Description |
---|---|---|---|---|---|---|---|
AutmID | int | false |   |   |   | null | |
ObjectID | int | false |   |   |   | null | |
ObjectIDColumnName | varchar(7) | false |   |   |   | null | |
TableName | varchar(29) | false |   |   |   | null | |
ColumnName | varchar(26) | false |   |   |   | null |
Name | DataTypeComplete | IsPK? | Is Nullable? | IsComputed | IsIdentity | Default | Description |
---|---|---|---|---|---|---|---|
RuleID | int | false |   |   |   | null | |
ObjectID | int | false |   |   |   | null | |
ObjectIDColumnName | varchar(8) | false |   |   |   | null | |
TableName | varchar(29) | false |   |   |   | null | |
ColumnName | varchar(30) | false |   |   |   | null |
Name | DataTypeComplete | IsPK? | Is Nullable? | IsComputed | IsIdentity | Default | Description |
---|---|---|---|---|---|---|---|
STP_ID | int | false | Yes |   |   | null | |
STP_Name | varchar(50) | false | Yes |   |   | null | |
STP_Order | int | false | Yes |   |   | null | |
STP_IsFinish | bit | false | Yes |   |   | null | |
STP_ExpectedAvgStepDurationByHours | int | false | Yes |   |   | null | |
WF_ID | int | false | Yes |   |   | null | |
WF_Name | varchar(50) | false | Yes |   |   | null | |
DEF_ID | int | false | Yes |   |   | null | |
DEF_Name | varchar(50) | false | Yes |   |   | null | |
DEF_IsOutlookEnable | bit | false | Yes |   |   | null | |
DEF_IncludeWorkingDays | bit | false | Yes |   |   | null | |
APP_ID | int | false | Yes |   |   | null | |
APP_Name | varchar(50) | false | Yes |   |   | null | |
APP_Stage | int | false | Yes |   |   | null | |
AGR_ID | int | false | Yes |   |   | null | |
AGR_Name | varchar(50) | false | Yes |   |   | null | |
DTYPE_ID | int | false | Yes |   |   | null | |
DTYPE_Name | varchar(250) | false | Yes |   |   | null | |
ASS_ID | int | false | Yes |   |   | null | |
SUBDTYPE_Name | varchar(250) | false | Yes |   |   | null | |
WFD_ID | int | false |   |   |   | null | |
WFD_STPID | int | false |   |   |   | null | |
WFD_WFDID | int | false | Yes |   |   | null | |
WFD_WFRID | int | false | Yes |   |   | null | |
WFD_COMID | int | false |   |   |   | null | |
WFD_DTYPEID | int | false | Yes |   |   | null | |
WFD_SUBDTYPEID | int | false | Yes |   |   | null | |
WFD_Signature | varchar(100) | false | Yes |   |   | null | |
WFD_SignatureUniqNumber | int | false |   |   |   | null | |
WFD_SignatureUniqSufix | varchar(255) | false | Yes |   |   | null | |
WFD_Department | varchar(255) | false | Yes |   |   | null | |
WFD_Name | varchar(50) | false | Yes |   |   | null | |
WFD_Description | text | false | Yes |   |   | null | |
WFD_Version | int | false |   |   |   | null | |
WFD_WFVersion | int | false |   |   |   | null | |
WFD_CreatedBy | varchar(255) | false | Yes |   |   | null | |
WFD_UpdatedBy | varchar(255) | false | Yes |   |   | null | |
WFD_TSInsert | datetime | false |   |   |   | null | |
WFD_TSUpdate | datetime | false |   |   |   | null | |
WFD_ActualCreatedTasks | varchar(50) | false | Yes |   |   | null | |
WFD_IsFinish | bit | false |   |   |   | null | |
WFD_IsDeleted | bit | false |   |   |   | null | |
WFD_HistorySteps | varchar(2000) | false | Yes |   |   | null | |
WFD_AttText1Glob | varchar(255) | false | Yes |   |   | null | |
WFD_AttText2Glob | varchar(255) | false | Yes |   |   | null | |
WFD_AttText3Glob | varchar(255) | false | Yes |   |   | null | |
WFD_AttText4Glob | varchar(255) | false | Yes |   |   | null | |
WFD_AttText5Glob | varchar(255) | false | Yes |   |   | null | |
WFD_AttText6Glob | varchar(255) | false | Yes |   |   | null | |
WFD_AttText7Glob | varchar(255) | false | Yes |   |   | null | |
WFD_AttText8Glob | varchar(255) | false | Yes |   |   | null | |
WFD_AttText9Glob | varchar(255) | false | Yes |   |   | null | |
WFD_AttText10Glob | varchar(255) | false | Yes |   |   | null | |
WFD_AttChoose1Glob | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose2Glob | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose3Glob | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose4Glob | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose5Glob | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose6Glob | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose7Glob | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose8Glob | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose9Glob | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose10Glob | varchar(1000) | false | Yes |   |   | null | |
WFD_AttText1 | varchar(255) | false | Yes |   |   | null | |
WFD_AttText2 | varchar(255) | false | Yes |   |   | null | |
WFD_AttText3 | varchar(255) | false | Yes |   |   | null | |
WFD_AttText4 | varchar(255) | false | Yes |   |   | null | |
WFD_AttText5 | varchar(255) | false | Yes |   |   | null | |
WFD_AttText6 | varchar(255) | false | Yes |   |   | null | |
WFD_AttText7 | varchar(255) | false | Yes |   |   | null | |
WFD_AttText8 | varchar(255) | false | Yes |   |   | null | |
WFD_AttText9 | varchar(255) | false | Yes |   |   | null | |
WFD_AttText10 | varchar(255) | false | Yes |   |   | null | |
WFD_AttText11 | varchar(255) | false | Yes |   |   | null | |
WFD_AttText12 | varchar(255) | false | Yes |   |   | null | |
WFD_AttText13 | varchar(255) | false | Yes |   |   | null | |
WFD_AttText14 | varchar(255) | false | Yes |   |   | null | |
WFD_AttText15 | varchar(255) | false | Yes |   |   | null | |
WFD_AttText16 | varchar(255) | false | Yes |   |   | null | |
WFD_AttText17 | varchar(255) | false | Yes |   |   | null | |
WFD_AttText18 | varchar(255) | false | Yes |   |   | null | |
WFD_AttText19 | varchar(255) | false | Yes |   |   | null | |
WFD_AttText20 | varchar(255) | false | Yes |   |   | null | |
WFD_AttText21 | varchar(255) | false | Yes |   |   | null | |
WFD_AttText22 | varchar(255) | false | Yes |   |   | null | |
WFD_AttText23 | varchar(255) | false | Yes |   |   | null | |
WFD_AttText24 | varchar(255) | false | Yes |   |   | null | |
WFD_AttText25 | varchar(255) | false | Yes |   |   | null | |
WFD_AttText26 | varchar(255) | false | Yes |   |   | null | |
WFD_AttText27 | varchar(255) | false | Yes |   |   | null | |
WFD_AttText28 | varchar(255) | false | Yes |   |   | null | |
WFD_AttText29 | varchar(255) | false | Yes |   |   | null | |
WFD_AttText30 | varchar(255) | false | Yes |   |   | null | |
WFD_AttLong1 | text | false | Yes |   |   | null | |
WFD_AttLong2 | text | false | Yes |   |   | null | |
WFD_AttLong3 | text | false | Yes |   |   | null | |
WFD_AttLong4 | text | false | Yes |   |   | null | |
WFD_AttLong5 | text | false | Yes |   |   | null | |
WFD_AttLong6 | text | false | Yes |   |   | null | |
WFD_AttLong7 | text | false | Yes |   |   | null | |
WFD_AttLong8 | text | false | Yes |   |   | null | |
WFD_AttLong9 | text | false | Yes |   |   | null | |
WFD_AttLong10 | text | false | Yes |   |   | null | |
WFD_AttLong11 | text | false | Yes |   |   | null | |
WFD_AttLong12 | text | false | Yes |   |   | null | |
WFD_AttLong13 | text | false | Yes |   |   | null | |
WFD_AttLong14 | text | false | Yes |   |   | null | |
WFD_AttLong15 | text | false | Yes |   |   | null | |
WFD_AttBool1 | bit | false | Yes |   |   | null | |
WFD_AttBool2 | bit | false | Yes |   |   | null | |
WFD_AttBool3 | bit | false | Yes |   |   | null | |
WFD_AttBool4 | bit | false | Yes |   |   | null | |
WFD_AttBool5 | bit | false | Yes |   |   | null | |
WFD_AttBool6 | bit | false | Yes |   |   | null | |
WFD_AttBool7 | bit | false | Yes |   |   | null | |
WFD_AttBool8 | bit | false | Yes |   |   | null | |
WFD_AttBool9 | bit | false | Yes |   |   | null | |
WFD_AttBool10 | bit | false | Yes |   |   | null | |
WFD_AttBool11 | bit | false | Yes |   |   | null | |
WFD_AttBool12 | bit | false | Yes |   |   | null | |
WFD_AttBool13 | bit | false | Yes |   |   | null | |
WFD_AttBool14 | bit | false | Yes |   |   | null | |
WFD_AttBool15 | bit | false | Yes |   |   | null | |
WFD_AttBool16 | bit | false | Yes |   |   | null | |
WFD_AttBool17 | bit | false | Yes |   |   | null | |
WFD_AttBool18 | bit | false | Yes |   |   | null | |
WFD_AttBool19 | bit | false | Yes |   |   | null | |
WFD_AttBool20 | bit | false | Yes |   |   | null | |
WFD_AttChoose1 | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose2 | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose3 | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose4 | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose5 | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose6 | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose7 | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose8 | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose9 | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose10 | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose11 | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose12 | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose13 | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose14 | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose15 | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose16 | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose17 | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose18 | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose19 | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose20 | varchar(1000) | false | Yes |   |   | null | |
WFD_AttInt1 | int | false | Yes |   |   | null | |
WFD_AttInt2 | int | false | Yes |   |   | null | |
WFD_AttInt3 | int | false | Yes |   |   | null | |
WFD_AttInt4 | int | false | Yes |   |   | null | |
WFD_AttInt5 | int | false | Yes |   |   | null | |
WFD_AttInt6 | int | false | Yes |   |   | null | |
WFD_AttInt7 | int | false | Yes |   |   | null | |
WFD_AttInt8 | int | false | Yes |   |   | null | |
WFD_AttInt9 | int | false | Yes |   |   | null | |
WFD_AttInt10 | int | false | Yes |   |   | null | |
WFD_AttInt11 | int | false | Yes |   |   | null | |
WFD_AttInt12 | int | false | Yes |   |   | null | |
WFD_AttInt13 | int | false | Yes |   |   | null | |
WFD_AttInt14 | int | false | Yes |   |   | null | |
WFD_AttInt15 | int | false | Yes |   |   | null | |
WFD_AttInt16 | int | false | Yes |   |   | null | |
WFD_AttInt17 | int | false | Yes |   |   | null | |
WFD_AttInt18 | int | false | Yes |   |   | null | |
WFD_AttInt19 | int | false | Yes |   |   | null | |
WFD_AttInt20 | int | false | Yes |   |   | null | |
WFD_AttDecimal1 | decimal(21,6) | false | Yes |   |   | null | |
WFD_AttDecimal2 | decimal(21,6) | false | Yes |   |   | null | |
WFD_AttDecimal3 | decimal(21,6) | false | Yes |   |   | null | |
WFD_AttDecimal4 | decimal(21,6) | false | Yes |   |   | null | |
WFD_AttDecimal5 | decimal(21,6) | false | Yes |   |   | null | |
WFD_AttDecimal6 | decimal(21,6) | false | Yes |   |   | null | |
WFD_AttDecimal7 | decimal(21,6) | false | Yes |   |   | null | |
WFD_AttDecimal8 | decimal(21,6) | false | Yes |   |   | null | |
WFD_AttDecimal9 | decimal(21,6) | false | Yes |   |   | null | |
WFD_AttDecimal10 | decimal(21,6) | false | Yes |   |   | null | |
WFD_AttDecimal11 | decimal(21,6) | false | Yes |   |   | null | |
WFD_AttDecimal12 | decimal(21,6) | false | Yes |   |   | null | |
WFD_AttDecimal13 | decimal(21,6) | false | Yes |   |   | null | |
WFD_AttDecimal14 | decimal(21,6) | false | Yes |   |   | null | |
WFD_AttDecimal15 | decimal(21,6) | false | Yes |   |   | null | |
WFD_AttDecimal16 | decimal(21,6) | false | Yes |   |   | null | |
WFD_AttDecimal17 | decimal(21,6) | false | Yes |   |   | null | |
WFD_AttDecimal18 | decimal(21,6) | false | Yes |   |   | null | |
WFD_AttDecimal19 | decimal(21,6) | false | Yes |   |   | null | |
WFD_AttDecimal20 | decimal(21,6) | false | Yes |   |   | null | |
WFD_AttDateTime1 | datetime | false | Yes |   |   | null | |
WFD_AttDateTime2 | datetime | false | Yes |   |   | null | |
WFD_AttDateTime3 | datetime | false | Yes |   |   | null | |
WFD_AttDateTime4 | datetime | false | Yes |   |   | null | |
WFD_AttDateTime5 | datetime | false | Yes |   |   | null | |
WFD_AttDateTime6 | datetime | false | Yes |   |   | null | |
WFD_AttDateTime7 | datetime | false | Yes |   |   | null | |
WFD_AttDateTime8 | datetime | false | Yes |   |   | null | |
WFD_AttDateTime9 | datetime | false | Yes |   |   | null | |
WFD_AttDateTime10 | datetime | false | Yes |   |   | null | |
WFD_AttDateTime11 | datetime | false | Yes |   |   | null | |
WFD_AttDateTime12 | datetime | false | Yes |   |   | null | |
WFD_AttDateTime13 | datetime | false | Yes |   |   | null | |
WFD_AttDateTime14 | datetime | false | Yes |   |   | null | |
WFD_AttDateTime15 | datetime | false | Yes |   |   | null | |
WFD_AttDateTime16 | datetime | false | Yes |   |   | null | |
WFD_AttDateTime17 | datetime | false | Yes |   |   | null | |
WFD_AttDateTime18 | datetime | false | Yes |   |   | null | |
WFD_AttDateTime19 | datetime | false | Yes |   |   | null | |
WFD_AttDateTime20 | datetime | false | Yes |   |   | null | |
WFD_Source | int | false |   |   |   | null | |
WFD_AttPeople1 | varchar(1000) | false | Yes |   |   | null | |
WFD_AttPeople2 | varchar(1000) | false | Yes |   |   | null | |
WFD_AttPeople3 | varchar(1000) | false | Yes |   |   | null | |
WFD_AttPeople4 | varchar(1000) | false | Yes |   |   | null | |
WFD_AttPeople5 | varchar(1000) | false | Yes |   |   | null | |
WFD_AttPeople6 | varchar(1000) | false | Yes |   |   | null | |
WFD_AttPeople7 | varchar(1000) | false | Yes |   |   | null | |
WFD_AttPeople8 | varchar(1000) | false | Yes |   |   | null | |
WFD_AttPeople9 | varchar(1000) | false | Yes |   |   | null | |
WFD_AttPeople10 | varchar(1000) | false | Yes |   |   | null | |
WFD_AttPeople11 | varchar(1000) | false | Yes |   |   | null | |
WFD_AttPeople12 | varchar(1000) | false | Yes |   |   | null | |
WFD_AttPeople13 | varchar(1000) | false | Yes |   |   | null | |
WFD_AttPeople14 | varchar(1000) | false | Yes |   |   | null | |
WFD_AttPeople15 | varchar(1000) | false | Yes |   |   | null | |
WFD_SubElems | varchar(255) | false | Yes |   |   | null | |
WFD_RowVersion | timestamp | false |   | Yes |   | null | |
WFD_WriteHistory | bit | false |   |   |   | null | |
WFD_FinishDate | datetime | false | Yes |   |   | null | |
WFD_EnterToCurrentStepDate | datetime | false |   |   |   | null | |
WFD_HistoryPaths | varchar(2000) | false | Yes |   |   | null | |
WFD_StatusId | int | false |   |   |   | null | |
WFD_RequestInfo | varchar(50) | false | Yes |   |   | null | |
WFD_MailApprovalGuid | varchar(36) | false |   |   |   | null | |
WFD_AttMap1 | varchar(255) | false | Yes |   |   | null | |
WFD_AttMap2 | varchar(255) | false | Yes |   |   | null | |
WFD_AttMap3 | varchar(255) | false | Yes |   |   | null | |
WFD_AttDateTime1Glob | datetime | false | Yes |   |   | null | |
WFD_AttDateTime2Glob | datetime | false | Yes |   |   | null | |
WFD_AttDateTime3Glob | datetime | false | Yes |   |   | null | |
WFD_AttDateTime4Glob | datetime | false | Yes |   |   | null | |
WFD_AttDateTime5Glob | datetime | false | Yes |   |   | null | |
WFD_LastTraversingTime | int | false |   |   |   | null | |
WFD_AttText31 | varchar(255) | false | Yes |   |   | null | |
WFD_AttText32 | varchar(255) | false | Yes |   |   | null | |
WFD_AttText33 | varchar(255) | false | Yes |   |   | null | |
WFD_AttText34 | varchar(255) | false | Yes |   |   | null | |
WFD_AttText35 | varchar(255) | false | Yes |   |   | null | |
WFD_AttText36 | varchar(255) | false | Yes |   |   | null | |
WFD_AttText37 | varchar(255) | false | Yes |   |   | null | |
WFD_AttText38 | varchar(255) | false | Yes |   |   | null | |
WFD_AttText39 | varchar(255) | false | Yes |   |   | null | |
WFD_AttText40 | varchar(255) | false | Yes |   |   | null | |
WFD_AttDecimal21 | decimal(21,6) | false | Yes |   |   | null | |
WFD_AttDecimal22 | decimal(21,6) | false | Yes |   |   | null | |
WFD_AttDecimal23 | decimal(21,6) | false | Yes |   |   | null | |
WFD_AttDecimal24 | decimal(21,6) | false | Yes |   |   | null | |
WFD_AttDecimal25 | decimal(21,6) | false | Yes |   |   | null | |
WFD_AttDecimal26 | decimal(21,6) | false | Yes |   |   | null | |
WFD_AttDecimal27 | decimal(21,6) | false | Yes |   |   | null | |
WFD_AttDecimal28 | decimal(21,6) | false | Yes |   |   | null | |
WFD_AttDecimal29 | decimal(21,6) | false | Yes |   |   | null | |
WFD_AttDecimal30 | decimal(21,6) | false | Yes |   |   | null | |
WFD_AttChoose21 | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose22 | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose23 | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose24 | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose25 | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose26 | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose27 | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose28 | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose29 | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose30 | varchar(1000) | false | Yes |   |   | null | |
WFD_AttLong16 | text | false | Yes |   |   | null | |
WFD_AttLong17 | text | false | Yes |   |   | null | |
WFD_AttLong18 | text | false | Yes |   |   | null | |
WFD_AttLong19 | text | false | Yes |   |   | null | |
WFD_AttLong20 | text | false | Yes |   |   | null | |
WFD_AttLong21 | text | false | Yes |   |   | null | |
WFD_AttLong22 | text | false | Yes |   |   | null | |
WFD_AttLong23 | text | false | Yes |   |   | null | |
WFD_AttLong24 | text | false | Yes |   |   | null | |
WFD_AttLong25 | text | false | Yes |   |   | null | |
WFD_AttDecimal31 | decimal(21,6) | false | Yes |   |   | null | |
WFD_AttDecimal32 | decimal(21,6) | false | Yes |   |   | null | |
WFD_AttDecimal33 | decimal(21,6) | false | Yes |   |   | null | |
WFD_AttDecimal34 | decimal(21,6) | false | Yes |   |   | null | |
WFD_AttDecimal35 | decimal(21,6) | false | Yes |   |   | null | |
WFD_AttDecimal36 | decimal(21,6) | false | Yes |   |   | null | |
WFD_AttDecimal37 | decimal(21,6) | false | Yes |   |   | null | |
WFD_AttDecimal38 | decimal(21,6) | false | Yes |   |   | null | |
WFD_AttDecimal39 | decimal(21,6) | false | Yes |   |   | null | |
WFD_AttDecimal40 | decimal(21,6) | false | Yes |   |   | null | |
WFD_AttDecimal41 | decimal(21,6) | false | Yes |   |   | null | |
WFD_AttDecimal42 | decimal(21,6) | false | Yes |   |   | null | |
WFD_AttDecimal43 | decimal(21,6) | false | Yes |   |   | null | |
WFD_AttDecimal44 | decimal(21,6) | false | Yes |   |   | null | |
WFD_AttDecimal45 | decimal(21,6) | false | Yes |   |   | null | |
WFD_AttDecimal46 | decimal(21,6) | false | Yes |   |   | null | |
WFD_AttDecimal47 | decimal(21,6) | false | Yes |   |   | null | |
WFD_AttDecimal48 | decimal(21,6) | false | Yes |   |   | null | |
WFD_AttDecimal49 | decimal(21,6) | false | Yes |   |   | null | |
WFD_AttDecimal50 | decimal(21,6) | false | Yes |   |   | null | |
WFD_AttInt21 | int | false | Yes |   |   | null | |
WFD_AttInt22 | int | false | Yes |   |   | null | |
WFD_AttInt23 | int | false | Yes |   |   | null | |
WFD_AttInt24 | int | false | Yes |   |   | null | |
WFD_AttInt25 | int | false | Yes |   |   | null | |
WFD_AttInt26 | int | false | Yes |   |   | null | |
WFD_AttInt27 | int | false | Yes |   |   | null | |
WFD_AttInt28 | int | false | Yes |   |   | null | |
WFD_AttInt29 | int | false | Yes |   |   | null | |
WFD_AttInt30 | int | false | Yes |   |   | null | |
WFD_AttText41 | varchar(255) | false | Yes |   |   | null | |
WFD_AttText42 | varchar(255) | false | Yes |   |   | null | |
WFD_AttText43 | varchar(255) | false | Yes |   |   | null | |
WFD_AttText44 | varchar(255) | false | Yes |   |   | null | |
WFD_AttText45 | varchar(255) | false | Yes |   |   | null | |
WFD_AttText46 | varchar(255) | false | Yes |   |   | null | |
WFD_AttText47 | varchar(255) | false | Yes |   |   | null | |
WFD_AttText48 | varchar(255) | false | Yes |   |   | null | |
WFD_AttText49 | varchar(255) | false | Yes |   |   | null | |
WFD_AttText50 | varchar(255) | false | Yes |   |   | null | |
WFD_AttChoose31 | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose32 | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose33 | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose34 | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose35 | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose36 | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose37 | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose38 | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose39 | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose40 | varchar(1000) | false | Yes |   |   | null | |
WFD_InitedSubelement | varchar(255) | false | Yes |   |   | null | |
WFD_AttDateTime21 | datetime | false | Yes |   |   | null | |
WFD_AttDateTime22 | datetime | false | Yes |   |   | null | |
WFD_AttDateTime23 | datetime | false | Yes |   |   | null | |
WFD_AttDateTime24 | datetime | false | Yes |   |   | null | |
WFD_AttDateTime25 | datetime | false | Yes |   |   | null | |
WFD_AttDateTime26 | datetime | false | Yes |   |   | null | |
WFD_AttDateTime27 | datetime | false | Yes |   |   | null | |
WFD_AttDateTime28 | datetime | false | Yes |   |   | null | |
WFD_AttDateTime29 | datetime | false | Yes |   |   | null | |
WFD_AttDateTime30 | datetime | false | Yes |   |   | null | |
WFD_AttDateTime31 | datetime | false | Yes |   |   | null | |
WFD_AttDateTime32 | datetime | false | Yes |   |   | null | |
WFD_AttDateTime33 | datetime | false | Yes |   |   | null | |
WFD_AttDateTime34 | datetime | false | Yes |   |   | null | |
WFD_AttDateTime35 | datetime | false | Yes |   |   | null | |
WFD_AttDateTime36 | datetime | false | Yes |   |   | null | |
WFD_AttDateTime37 | datetime | false | Yes |   |   | null | |
WFD_AttDateTime38 | datetime | false | Yes |   |   | null | |
WFD_AttDateTime39 | datetime | false | Yes |   |   | null | |
WFD_AttDateTime40 | datetime | false | Yes |   |   | null | |
WFD_AttDateTime41 | datetime | false | Yes |   |   | null | |
WFD_AttDateTime42 | datetime | false | Yes |   |   | null | |
WFD_AttDateTime43 | datetime | false | Yes |   |   | null | |
WFD_AttDateTime44 | datetime | false | Yes |   |   | null | |
WFD_AttDateTime45 | datetime | false | Yes |   |   | null | |
WFD_AttDateTime46 | datetime | false | Yes |   |   | null | |
WFD_AttDateTime47 | datetime | false | Yes |   |   | null | |
WFD_AttDateTime48 | datetime | false | Yes |   |   | null | |
WFD_AttDateTime49 | datetime | false | Yes |   |   | null | |
WFD_AttDateTime50 | datetime | false | Yes |   |   | null | |
WFD_AttChoose41 | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose42 | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose43 | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose44 | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose45 | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose46 | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose47 | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose48 | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose49 | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose50 | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose51 | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose52 | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose53 | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose54 | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose55 | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose56 | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose57 | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose58 | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose59 | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose60 | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose61 | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose62 | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose63 | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose64 | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose65 | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose66 | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose67 | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose68 | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose69 | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose70 | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose71 | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose72 | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose73 | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose74 | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose75 | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose76 | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose77 | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose78 | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose79 | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose80 | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose81 | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose82 | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose83 | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose84 | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose85 | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose86 | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose87 | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose88 | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose89 | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose90 | varchar(1000) | false | Yes |   |   | null | |
WFD_AttText51 | varchar(255) | false | Yes |   |   | null | |
WFD_AttText52 | varchar(255) | false | Yes |   |   | null | |
WFD_AttText53 | varchar(255) | false | Yes |   |   | null | |
WFD_AttText54 | varchar(255) | false | Yes |   |   | null | |
WFD_AttText55 | varchar(255) | false | Yes |   |   | null | |
WFD_AttText56 | varchar(255) | false | Yes |   |   | null | |
WFD_AttText57 | varchar(255) | false | Yes |   |   | null | |
WFD_AttText58 | varchar(255) | false | Yes |   |   | null | |
WFD_AttText59 | varchar(255) | false | Yes |   |   | null | |
WFD_AttText60 | varchar(255) | false | Yes |   |   | null | |
WFD_AttText61 | varchar(255) | false | Yes |   |   | null | |
WFD_AttText62 | varchar(255) | false | Yes |   |   | null | |
WFD_AttText63 | varchar(255) | false | Yes |   |   | null | |
WFD_AttText64 | varchar(255) | false | Yes |   |   | null | |
WFD_AttText65 | varchar(255) | false | Yes |   |   | null | |
WFD_AttText66 | varchar(255) | false | Yes |   |   | null | |
WFD_AttText67 | varchar(255) | false | Yes |   |   | null | |
WFD_AttText68 | varchar(255) | false | Yes |   |   | null | |
WFD_AttText69 | varchar(255) | false | Yes |   |   | null | |
WFD_AttText70 | varchar(255) | false | Yes |   |   | null | |
WFD_AttText71 | varchar(255) | false | Yes |   |   | null | |
WFD_AttText72 | varchar(255) | false | Yes |   |   | null | |
WFD_AttText73 | varchar(255) | false | Yes |   |   | null | |
WFD_AttText74 | varchar(255) | false | Yes |   |   | null | |
WFD_AttText75 | varchar(255) | false | Yes |   |   | null | |
WFD_AttText76 | varchar(255) | false | Yes |   |   | null | |
WFD_AttText77 | varchar(255) | false | Yes |   |   | null | |
WFD_AttText78 | varchar(255) | false | Yes |   |   | null | |
WFD_AttText79 | varchar(255) | false | Yes |   |   | null | |
WFD_AttText80 | varchar(255) | false | Yes |   |   | null | |
WFD_SIGID | int | false |   |   |   | null | |
WFD_ADBID | int | false | Yes |   |   | null | |
WFD_WasAnonymized | bit | false |   |   |   | null | |
WFD_Guid | varchar(36) | false |   |   |   | null | |
WFD_AttBool21 | bit | false | Yes |   |   | null | |
WFD_AttBool22 | bit | false | Yes |   |   | null | |
WFD_AttBool23 | bit | false | Yes |   |   | null | |
WFD_AttBool24 | bit | false | Yes |   |   | null | |
WFD_AttBool25 | bit | false | Yes |   |   | null | |
WFD_AttBool26 | bit | false | Yes |   |   | null | |
WFD_AttBool27 | bit | false | Yes |   |   | null | |
WFD_AttBool28 | bit | false | Yes |   |   | null | |
WFD_AttBool29 | bit | false | Yes |   |   | null | |
WFD_AttBool30 | bit | false | Yes |   |   | null | |
WFD_AttBool31 | bit | false | Yes |   |   | null | |
WFD_AttBool32 | bit | false | Yes |   |   | null | |
WFD_AttBool33 | bit | false | Yes |   |   | null | |
WFD_AttBool34 | bit | false | Yes |   |   | null | |
WFD_AttBool35 | bit | false | Yes |   |   | null | |
WFD_AttBool36 | bit | false | Yes |   |   | null | |
WFD_AttBool37 | bit | false | Yes |   |   | null | |
WFD_AttBool38 | bit | false | Yes |   |   | null | |
WFD_AttBool39 | bit | false | Yes |   |   | null | |
WFD_AttBool40 | bit | false | Yes |   |   | null | |
WFD_AttChoose1_ID | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose2_ID | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose3_ID | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose4_ID | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose5_ID | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose6_ID | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose7_ID | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose8_ID | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose9_ID | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose10_ID | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose11_ID | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose12_ID | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose13_ID | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose14_ID | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose15_ID | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose16_ID | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose17_ID | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose18_ID | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose19_ID | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose20_ID | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose21_ID | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose22_ID | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose23_ID | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose24_ID | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose25_ID | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose26_ID | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose27_ID | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose28_ID | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose29_ID | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose30_ID | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose31_ID | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose32_ID | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose33_ID | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose34_ID | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose35_ID | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose36_ID | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose37_ID | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose38_ID | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose39_ID | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose40_ID | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose41_ID | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose42_ID | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose43_ID | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose44_ID | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose45_ID | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose46_ID | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose47_ID | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose48_ID | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose49_ID | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose50_ID | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose51_ID | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose52_ID | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose53_ID | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose54_ID | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose55_ID | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose56_ID | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose57_ID | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose58_ID | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose59_ID | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose60_ID | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose61_ID | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose62_ID | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose63_ID | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose64_ID | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose65_ID | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose66_ID | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose67_ID | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose68_ID | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose69_ID | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose70_ID | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose71_ID | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose72_ID | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose73_ID | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose74_ID | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose75_ID | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose76_ID | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose77_ID | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose78_ID | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose79_ID | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose80_ID | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose81_ID | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose82_ID | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose83_ID | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose84_ID | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose85_ID | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose86_ID | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose87_ID | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose88_ID | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose89_ID | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose90_ID | varchar(1000) | false | Yes |   |   | null | |
WFD_AttPeople1_ID | varchar(1000) | false | Yes |   |   | null | |
WFD_AttPeople2_ID | varchar(1000) | false | Yes |   |   | null | |
WFD_AttPeople3_ID | varchar(1000) | false | Yes |   |   | null | |
WFD_AttPeople4_ID | varchar(1000) | false | Yes |   |   | null | |
WFD_AttPeople5_ID | varchar(1000) | false | Yes |   |   | null | |
WFD_AttPeople6_ID | varchar(1000) | false | Yes |   |   | null | |
WFD_AttPeople7_ID | varchar(1000) | false | Yes |   |   | null | |
WFD_AttPeople8_ID | varchar(1000) | false | Yes |   |   | null | |
WFD_AttPeople9_ID | varchar(1000) | false | Yes |   |   | null | |
WFD_AttPeople10_ID | varchar(1000) | false | Yes |   |   | null | |
WFD_AttPeople11_ID | varchar(1000) | false | Yes |   |   | null | |
WFD_AttPeople12_ID | varchar(1000) | false | Yes |   |   | null | |
WFD_AttPeople13_ID | varchar(1000) | false | Yes |   |   | null | |
WFD_AttPeople14_ID | varchar(1000) | false | Yes |   |   | null | |
WFD_AttPeople15_ID | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose1Glob_ID | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose2Glob_ID | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose3Glob_ID | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose4Glob_ID | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose5Glob_ID | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose6Glob_ID | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose7Glob_ID | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose8Glob_ID | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose9Glob_ID | varchar(1000) | false | Yes |   |   | null | |
WFD_AttChoose10Glob_ID | varchar(1000) | false | Yes |   |   | null |
Name | DataTypeComplete | IsPK? | Is Nullable? | IsComputed | IsIdentity | Default | Description |
---|---|---|---|---|---|---|---|
WFT_ID | int | false |   |   |   | null | |
WFT_WFDID | int | false |   |   |   | null | |
WFT_STPID | int | false |   |   |   | null | |
WFT_AssignTypeID | int | false |   |   |   | null | |
WFT_TSInsert | datetime | false |   |   |   | null | |
WFT_TSUpdate | datetime | false |   |   |   | null | |
WFT_IsDeleted | bit | false |   |   |   | null | |
WFT_ElementWasDisplayed | bit | false |   |   |   | null | |
WFT_IsFinished | bit | false |   |   |   | null | |
WFT_ActualCreatedTasks | int | false | Yes |   |   | null | |
WFT_WFHID | int | false | Yes |   |   | null | |
WFT_Version | int | false |   |   |   | null | |
WFT_OrgID | int | false | Yes |   |   | null | |
WFT_ManualCover | bit | false |   |   |   | null | |
WFT_DurationToFinish | int | false |   |   |   | null | |
WFT_FinishedByUser | bit | false |   |   |   | null | |
WFT_FinishDate | datetime | false | Yes |   |   | null | |
WFT_FormID | int | false | Yes |   |   | null | |
WFT_AllowCover | bit | false |   |   |   | null | |
WFT_FinishedByAdmin | bit | false | Yes |   |   | null | |
WFT_WFHIDTaskFinished | int | false | Yes |   |   | null | |
WFT_AssignKind | int | false | Yes |   |   | null | |
WFT_Flag | int | false |   |   |   | null | |
WFT_Overdue | bit | false |   |   |   | null | |
WFT_OverdueDate | datetime | false | Yes |   |   | null | |
WFT_Name | varchar(50) | false | Yes |   |   | null | |
WFT_Description | varchar(MAX) | false | Yes |   |   | null | |
WFT_User | varchar(255) | false | Yes |   |   | null | |
WFT_UserName | varchar(255) | false | Yes |   |   | null | |
WFT_ExecutorLogin | varchar(255) | false | Yes |   |   | null | |
WFT_ExecutorName | varchar(255) | false | Yes |   |   | null | |
WFT_ToGroup | bit | false | Yes |   |   | null | |
WFT_COMID | int | false | Yes |   |   | null | |
WFT_FinishPath | varchar(100) | false | Yes |   |   | null | |
WFT_DeskDescription | varchar(MAX) | false | Yes |   |   | null | |
WFT_RowVersion | timestamp | false |   | Yes |   | null | |
WFT_CreatedBy | varchar(255) | false | Yes |   |   | null | |
WFT_UpdatedBy | varchar(255) | false | Yes |   |   | null |