Field |
Field Type |
Null |
Notes |
Description |
SELECTEDSELECTIONS |
xml |
 |
|
|
CHANNELCODE |
tinyint |
|
Default = 0 |
0=Send through both mail and email, according to each constituents preferences., 1=Send through email only, 2=Send through mail only |
CHANNELPREFERENCECODE |
tinyint |
|
Default = 0 |
0=Email, 1=Mail |
CHANNELPREFERENCE |
nvarchar(5) (Computed) |
 |
CASE [CHANNELPREFERENCECODE] WHEN 0 THEN N'Email' WHEN 1 THEN N'Mail' END |
Provides a translation for the 'CHANNELPREFERENCECODE' field. |
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. |
ESTIMATEDRESPONSERATE |
decimal(5, 2) |
|
Default = 0 |
The estimated response rate for this appeal mailing which is used for calculating KPI goals. |
ESTIMATEDAVERAGEGIFTAMOUNT |
money |
|
Default = 0 |
The estimated average gift amount received due to this appeal mailing which is used for calculating KPI goals. |
CHANNEL |
nvarchar(14) (Computed) |
 |
CASE [CHANNELCODE] WHEN 0 THEN N'Mail' WHEN 1 THEN N'Email' WHEN 2 THEN N'Mail and Email' END |
|
HOUSEHOLDINGTYPECODE |
tinyint |
|
Default = 0 |
|
HOUSEHOLDINGTYPE |
nvarchar(49) (Computed) |
 |
CASE [HOUSEHOLDINGTYPECODE] WHEN 0 THEN N'Send one letter per household' WHEN 1 THEN N'Send a letter to each individual in the household' END |
|
ESTIMATEDNETREVENUE |
money |
|
Default = 0 |
|