| NAME |
nvarchar(100) |
|
Default = '' |
Name of donor challenge. |
| TYPECODE |
tinyint |
|
Default = 0 |
Payment type for challenge. |
| TYPE |
nvarchar(14) (Computed) |
yes |
CASE [TYPECODE] WHEN 0 THEN N'Match per gift' WHEN 1 THEN N'Lump sum match' END |
Provides a translation for the 'TYPECODE' field. |
| DESCRIPTION |
nvarchar(255) |
|
Default = '' |
Descriptive text about the donor challenge. |
| STARTDATE |
datetime |
|
|
Date donor challenge begins. |
| ENDDATE |
datetime |
|
|
Date donor challenge ends. |
| TOTALFUNDS |
money |
|
Default = 0 |
Amount of funds provided. |
| PAYPLEDGESWITHIN |
tinyint |
|
Default = 0 |
Number of units to pay pledges within. |
| PAYPLEDGESWITHINUNITCODE |
tinyint |
|
Default = 0 |
Units of time to pay pledges within. |
| PAYPLEDGESWITHINUNIT |
nvarchar(6) (Computed) |
yes |
CASE [PAYPLEDGESWITHINUNITCODE] WHEN 0 THEN N'Years' WHEN 1 THEN N'Months' END |
Provides a translation for the 'PAYPLEDGESWITHINUNITCODE' field. |
| MATCHTYPECODE |
tinyint |
|
Default = 0 |
Gift amount to use when calculating match amount. |
| MATCHTYPE |
nvarchar(27) (Computed) |
yes |
CASE [MATCHTYPECODE] WHEN 0 THEN N'Full gift amount' WHEN 1 THEN N'Tax deductible portion only' END |
Provides a translation for the 'MATCHTYPECODE' field. |
| MATCHINGFACTOR |
decimal(5, 2) |
|
Default = 0 |
Default factor at which gifts will be matched. |
| MATCHTHRESHOLD |
money |
|
Default = 0 |
Target amount for lump sum matches. |
| MINGIFTAMOUNT |
money |
|
Default = 0 |
Minimum gift amount to match. |
| MAXMATCHPERGIFT |
money |
|
Default = 0 |
Maximum match amount per matched gift. |
| 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. |
| PROCESSLASTRUN |
datetime |
yes |
|
Stores the last time the encumber process was run |
| STATUSTYPECODE |
tinyint |
|
Default = 0 |
Gift amount to use when calculating match amount. |
| STATUSTYPE |
nvarchar(9) (Computed) |
yes |
CASE [STATUSTYPECODE] WHEN 0 THEN N'Open' WHEN 1 THEN N'Fulfilled' END |
Provides a translation for the 'STATUSTYPECODE' field. |
| ORGANIZATIONTOTALFUNDS |
money |
|
Default = 0 |
TOTALFUNDS in the organization currency. |
| ORGANIZATIONMATCHTHRESHOLD |
money |
|
Default = 0 |
MATCHTHRESHOLD in the organization currency. |
| ORGANIZATIONMINGIFTAMOUNT |
money |
|
Default = 0 |
MINGIFTAMOUNT in the organization currency. |
| ORGANIZATIONMAXMATCHPERGIFT |
money |
|
Default = 0 |
MAXMATCHPERGIFT in the organization currency. |