The DATAFORMINSTANCECATALOG table stores data forms that are used to view and update data throughout the system.
Primary Key
| Primary Key |
Field Type |
| ID |
uniqueidentifier |
Fields
| Field |
Field Type |
Null |
Notes |
Description |
| FORMNAME |
nvarchar(60) |
|
|
The unique name of this data form |
| DESCRIPTION |
nvarchar(1000) |
|
Default = '' |
Description of this data form |
| FORMUIXML |
xml |
|
|
Contains the form definition xml |
| DATEADDED |
datetime |
|
Default = getdate() |
Indicates the date this record was added |
| DATECHANGED |
datetime |
|
Default = getdate() |
Indicates the date this record was last changed |
| TS |
timestamp |
|
|
Timestamp |
| TSLONG |
bigint (Computed) |
yes |
convert(bigint, TS) |
Numeric representation of the timestamp |
| SPECUINAME |
nvarchar(60) |
|
Default = '' |
Presentation name of the data form instance used to override the data form instance name for display in the application. |
| UINAME |
nvarchar(60) (Computed) |
|
case when len(SPECUINAME) = 0 then FORMNAME else SPECUINAME end |
Name of the data form instance for display in the application. |
| MARTKEY |
nvarchar(255) |
yes |
|
|
Foreign Keys
Indexes
| Index Name |
Fields |
Unique |
Primary |
Clustered |
| IX_DATAFORMINSTANCECATALOG_DATAFORMTEMPLATECATALOGID |
DATAFORMTEMPLATECATALOGID |
|
|
|
| IX_DATAFORMINSTANCECATALOG_DATEADDED |
DATEADDED |
|
|
yes |
| IX_DATAFORMINSTANCECATALOG_ID_DATAFORMTEMPLATECATALOGID |
ID |
|
|
|
| IX_DATAFORMINSTANCECATALOG_ID_METADATA |
ID |
|
|
|
| PK_DATAFORMINSTANCECATALOG |
ID |
yes |
yes |
|
| UC_DATAFORMINSTANCECATALOG_FORMNAME |
FORMNAME |
yes |
|
|
| UIX_DATAFORMINSTANCECATALOG_UINAME |
UINAME |
yes |
|
|
Triggers
Referenced by