Field |
Field Type |
Null |
Notes |
Description |
REVENUEID |
uniqueidentifier |
|
|
|
WRITEOFFTOTALAMOUNT |
money |
 |
Default = 0 |
|
DATE |
datetime |
 |
|
|
POSTSTATUSCODE |
tinyint |
|
Default = 1 |
|
POSTSTATUS |
nvarchar(11) (Computed) |
 |
CASE [POSTSTATUSCODE] WHEN 1 THEN N'Not posted' WHEN 2 THEN N'Do not post' WHEN 255 THEN N'None' END |
|
POSTDATE |
datetime |
 |
|
|
REASON |
nvarchar(300) |
|
Default = '' |
|
RECOGNITIONCREDITADJUSTMENTCODE |
tinyint |
|
Default = 0 |
|
SEQUENCE |
int |
|
Default = 0 |
|
USERMANUALLYADJUSTEDRECOGNITIONCREDITS |
bit |
|
Default = 0 |
|
DATEADDED |
datetime |
|
Default = getdate() |
|
DATECHANGED |
datetime |
|
Default = getdate() |
|
TS |
timestamp |
|
|
|
TSLONG |
bigint (Computed) |
 |
CONVERT(bigint, TS) |
|
RECOGNITIONCREDITADJUSTMENT |
nvarchar(49) (Computed) |
 |
CASE [RECOGNITIONCREDITADJUSTMENTCODE] WHEN 0 THEN N'Reduce recognition credits by proportional amount' WHEN 1 THEN N'Reduce recognition credits by write-off amount' WHEN 2 THEN N'Manually reduce recognition credits' WHEN 3 THEN N'Do not adjust recognition credits' END |
|