Key | Name | Data Type | Max Length (Bytes) | Nullability | Identity | Description |
---|
 | ID | [dbo].[dict_id] | 5 | NOT NULL | 1 - 1 | Key to the Form_DE table |
| EnterpriseEntryID | [dbo].[uniqueid] | 9 | NOT NULL | | Master (enterprise) dictionary surrogate key. Points to Dictionary_Entry.EnterpriseEntryID |
| DefinitionSetID | [dbo].[dict_id] | 5 | NOT NULL | | Points to Dict_Definition_Set.DefinitionSetID but is typically zero. |
| Entry | [dbo].[dict_id] | 5 | NOT NULL | | Calculated during insert as rowcount + 1 from Dict_Definition_Set for this dictionary and set |
(3) | EntryCode | [dbo].[code] | 10 | NOT NULL | | Entry Code - Unique alphanumeric code |
(3) | EntryName | [dbo].[name] | 255 | NOT NULL | | Entry Name - Unique alphanumeric "friendly" display name |
(3) | EntryMnemonic | [dbo].[code] | 10 | NOT NULL | | Entry Mnemonic |
(3)![Check Constraints CK_Form_DE_IsInactiveFLAG_Yes_Or_No : ([IsInactiveFLAG]='N' OR [IsInactiveFLAG]='Y') Check Constraints CK_Form_DE_IsInactiveFLAG_Yes_Or_No : ([IsInactiveFLAG]='N' OR [IsInactiveFLAG]='Y')](../../../../Images/c-constraint.png) | IsInactiveFLAG | [dbo].[BOOL] | 1 | NOT NULL | | Is the entry inactive (Y/N)? |
![Check Constraints CK_Form_DE_IsEnforcedFLAG_Yes_Or_No : ([IsEnforcedFLAG]='N' OR [IsEnforcedFLAG]='Y') Check Constraints CK_Form_DE_IsEnforcedFLAG_Yes_Or_No : ([IsEnforcedFLAG]='N' OR [IsEnforcedFLAG]='Y')](../../../../Images/c-constraint.png) | IsEnforcedFLAG | [dbo].[BOOL] | 1 | NOT NULL | | Is the entry Enforced (Y/N)? Enforced entries can not be modified by the application. |
(3)![Check Constraints CK_Form_DE_IsCurrentFLAG_Yes_Or_No : ([IsCurrentFLAG]='N' OR [IsCurrentFLAG]='Y') Check Constraints CK_Form_DE_IsCurrentFLAG_Yes_Or_No : ([IsCurrentFLAG]='N' OR [IsCurrentFLAG]='Y')](../../../../Images/c-constraint.png) | IsCurrentFLAG | [dbo].[BOOL] | 1 | NOT NULL | | Is the entry Current (Y/N)? |
| EffectiveDT | datetime | 8 | NULL allowed | | Effective Date is the last edited date. |
| ServerName | varchar(128) | 128 | NOT NULL | | Server Name |
| DocumentName | varchar(128) | 128 | NOT NULL | | Document Name |
![Foreign Keys FK_Form_DE_ActivityTypeDE_Activity_Type_DE_ID: [dbo].[Activity_Type_DE].ActivityTypeDE Foreign Keys FK_Form_DE_ActivityTypeDE_Activity_Type_DE_ID: [dbo].[Activity_Type_DE].ActivityTypeDE](../../../../Images/fk.png) | ActivityTypeDE | [dbo].[dict_id] | 5 | NOT NULL | | Activity Type. Link to Activity_Type_DE.ID |