SEARCHLISTCATALOG
The SEARCHLISTCATALOG table stores search list definitions that define search list results and filters for a specific record type.
Primary Key
Primary Key |
Field Type |
ID |
uniqueidentifier |
Fields
Field |
Field Type |
Null |
Notes |
Description |
NAME |
nvarchar(60) |
|
|
The unique name of this search list |
DESCRIPTION |
nvarchar(1000) |
|
Default = '' |
Description of this search list |
IMPLEMENTATIONTYPE |
tinyint |
|
Default = 0 |
0 - SP search list, 1 - CLR search list |
IMPLEMENTATIONTYPENAME |
varchar(3) (Computed) |
|
|
Provides the translation for the IMPLEMENTATIONTYPE column |
PROCEDURENAME |
nvarchar(128) |
|
Default = '' |
The name of the stored procedure used to return the search list results |
ASSEMBLYNAME |
nvarchar(128) |
|
Default = '' |
The name of the CLR assembly used to return the search list results |
CLASSNAME |
nvarchar(128) |
|
Default = '' |
The name of the class in the CLR assembly used to return the search list results |
FILTERFORMDEFINITION |
xml |
|
|
Contains the filter form definition xml |
OUTPUTDEFINITION |
xml |
|
|
Contains the output definition xml |
STATICPARAMETERDEFINITION |
xml |
yes |
|
Contains the static parameter definition xml |
SEARCHLISTSPEC |
xml |
|
|
Contains the spec xml used to create this search list |
QUICKFINDFIELD |
nvarchar(128) |
|
Default = '' |
The name of the search criteria field that will be used for quick finds |
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 |
SECURITYUIFOLDER |
nvarchar(255) |
|
Default = '' |
The folder path where the search list will be displayed in the security tree view. |
SPECUINAME |
nvarchar(60) |
|
Default = '' |
Presentation name of the search list used to override the search list name for display in the application. |
UINAME |
nvarchar(60) (Computed) |
|
case when len(SPECUINAME) = 0 then NAME else SPECUINAME end |
Name of the search list for display in the application. |
Foreign Keys
Indexes
Index Name |
Fields |
Unique |
Primary |
Clustered |
IX_SEARCHLISTCATALOG_DATEADDED |
DATEADDED |
|
|
yes |
PK_SEARCHLISTCATALOG |
ID |
yes |
yes |
|
UC_SEARCHLISTCATALOG_NAME |
NAME |
yes |
|
|
UIX_SEARCHLISTCATALOG_UINAME |
UINAME |
yes |
|
|
Triggers
Referenced by