Field |
Field Type |
Null |
Notes |
Description |
JOINDATE |
datetime |
|
|
The date this constituent joined this recognition level. |
EXPIRATIONDATE |
datetime |
 |
|
The expiration date for this recognition record. Only valid for annual programs. |
TOTALAMOUNT |
money |
|
Default = 0 |
The total amount given towards this recognition program. |
TOTALPLANNEDGIFTAMOUNT |
money |
|
Default = 0 |
The total planned gift amount given towards this recognition program. |
STATUSCODE |
tinyint |
|
Default = 0 |
Current status of the constituent recognition: 0 - Active, 1 - Dropped, 2 - Pending |
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. |
COMMENTS |
nvarchar(1000) |
|
Default = '' |
Remarks about this recognition. |
ISANONYMOUS |
bit |
|
Default = 0 |
Indicates that this constituent wishes to be an anonymous member of this recognition program. |
ORGANIZATIONTOTALAMOUNT |
money |
|
Default = 0 |
The total amount given towards this recognition program in organization currency. |
ORGANIZATIONTOTALPLANNEDGIFTAMOUNT |
money |
|
Default = 0 |
The total planned gift amount given towards this recognition program in organization currency. |
STATUS |
nvarchar(16) (Computed) |
 |
CASE [STATUSCODE] WHEN 0 THEN N'Active' WHEN 1 THEN N'Dropped' WHEN 2 THEN N'Pending' WHEN 3 THEN N'Inactive (Merge)' END |
|