Field |
Field Type |
Null |
Notes |
Description |
TRANSACTIONTYPECODE |
tinyint |
|
Default = 0 |
Transaction type - Debit or Credit |
TRANSACTIONTYPE |
nvarchar(6) (Computed) |
 |
CASE [TRANSACTIONTYPECODE] WHEN 0 THEN N'Debit' WHEN 1 THEN N'Credit' END |
Provides a translation for the 'TRANSACTIONTYPECODE' field. |
POSTMETHODCODE |
tinyint |
|
Default = 3 |
Code for how to summarize transaction records. |
POSTMETHOD |
nvarchar(21) (Computed) |
 |
CASE [POSTMETHODCODE] WHEN 1 THEN N'Detail' WHEN 2 THEN N'Detail by transaction' WHEN 3 THEN N'Summary' END |
Provides a translation for the 'POSTMETHODCODE' 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. |