Field |
Field Type |
Null |
Notes |
Description |
NAME |
nvarchar(100) |
|
Default = '' |
The name of the parameter set. |
DESCRIPTION |
nvarchar(255) |
|
Default = '' |
The description of the parameter set. |
CREATEOUTPUTIDSET |
bit |
|
Default = 0 |
Designates whether or not an ID set should be created as a result of the tribute acknowledgement process. |
OUTPUTIDSETNAME |
nvarchar(100) |
|
Default = '' |
The name of the output ID set to be created by the tribute acknowledgement process. |
OVERWRITEOUTPUTIDSET |
bit |
|
Default = 0 |
Designates whether or not to overwrite the output ID set if one with the same name already exists. |
MARKLETTERSACKNOWLEDGED |
bit |
|
Default = 0 |
Indicates whether or not tribute letters for this process should be marked as acknowledged. |
ACKNOWLEDGEDATETYPECODE |
tinyint |
|
Default = 0 |
Designates whether to use today's date or a specific date in the tribute acknowledgement process as the acknowledge date. |
ACKNOWLEDGEDATE |
datetime |
 |
|
This date is used as the acknowledge date when marking records as acknowledged. |
LABELFILENAME |
nvarchar(255) |
|
Default = '' |
The original file name for the label template. |
LABELFILE |
varbinary |
 |
|
The actual file for the label template. |
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) |
 |
CONVERT(bigint, TS) |
Numeric representation of the timestamp. |
ACKNOWLEDGEDATETYPE |
nvarchar(13) (Computed) |
 |
CASE [ACKNOWLEDGEDATETYPECODE] WHEN 0 THEN N'Today' WHEN 1 THEN N'Specific date' END |
Provides a translation for the 'ACKNOWLEDGEDATETYPECODE' field. |