Field |
Field Type |
Null |
Notes |
Description |
CONSTITUENTID |
uniqueidentifier |
|
|
FK to Constituent table |
GIVENANONYMOUSLY |
bit |
|
Default = 0 |
Indicates if this revenue was given anonymously. |
FINDERNUMBER |
bigint |
|
Default = ((0)) |
The direct marketing finder number for this record. |
DATE |
datetime |
|
|
|
AMOUNT |
money |
|
Default = 0 |
Amount of gift |
SOURCECODE |
nvarchar(50) |
|
Default = '' |
The direct marketing source code for this record. |
BENEFITSWAIVED |
bit |
|
Default = 0 |
Indicates if the benefits for this record were waived by the user. |
FREQUENCYCODE |
tinyint |
|
Default = 0 |
Indicates the frequency of the installment. |
NUMBEROFINSTALLMENTS |
int |
|
Default = 0 |
The number of the schedule. |
STARTDATE |
datetime |
|
|
The start date for the schedule. |
POSTDATE |
datetime |
 |
|
The date to use when posting the revenue record. |
POSTSTATUSCODE |
tinyint |
|
Default = 1 |
Indicates whether the revenue should not be posted. |
SENDPLEDGEREMINDER |
bit |
|
Default = 1 |
Indicates whether or not to send reminders for a pledge. |
DONOTACKNOWLEDGE |
bit |
|
Default = 0 |
Indicates that this record should not be acknowledged. |
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. |
REFERENCE |
nvarchar(255) |
|
Default = '' |
Comment specific to this pledge. |
FREQUENCY |
nvarchar(18) (Computed) |
 |
CASE [FREQUENCYCODE] WHEN 0 THEN N'Annually' WHEN 1 THEN N'Semi-annually' WHEN 2 THEN N'Quarterly' WHEN 3 THEN N'Monthly' WHEN 4 THEN N'Irregular' WHEN 5 THEN N'Single Installment' WHEN 6 THEN N'Bimonthly' WHEN 7 THEN N'Semi-Monthly' WHEN 8 THEN N'Biweekly' WHEN 9 THEN N'Weekly' END |
Provides a translation for the 'FREQUENCYCODE' field. |
BASEEXCHANGERATEID |
uniqueidentifier |
 |
|
The exchange rate used to convert from transaction amount to amount. |
EXCHANGERATE |
decimal(20, 8) |
|
Default = 0 |
The rate to use when adding a spot rate. |