Field |
Field Type |
Null |
Notes |
Description |
STARTINGCASH |
money |
|
Default = 0 |
|
ACTUALCASH |
money |
|
Default = 0 |
|
STATUSCODE |
tinyint |
|
Default = 0 |
The status of the reconciliation. |
COMMENT |
nvarchar(max) |
|
Default = '' |
The comment. |
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. |
STATUS |
nvarchar(9) (Computed) |
 |
CASE [STATUSCODE] WHEN 0 THEN N'Open' WHEN 1 THEN N'Submitted' WHEN 2 THEN N'Approved' WHEN 3 THEN N'Deposited' END |
Provides a translation for the 'STATUSCODE' field. |
RECONCILIATIONDATE |
datetime |
 |
|
The date and time when the reconciliation is submitted. |
APPROVALDATE |
datetime |
 |
|
Date and time the reconciliation was approved |
ORIGINALSUBMISSIONDATE |
datetime |
 |
|
The date and time the reconciliation was originally submitted. Should not account for edits made after submission. |
CASHOVERSHORTSALESMETHODCODE |
tinyint |
|
Default = 0 |
|
CHECKOVERSHORTSALESMETHODCODE |
tinyint |
|
Default = 3 |
|
CASHOVERSHORTDEPOSITED |
bit |
|
Default = 0 |
|
CHECKOVERSHORTDEPOSITED |
bit |
|
Default = 0 |
|
CASHOVERSHORTSALESMETHOD |
nvarchar(13) (Computed) |
 |
CASE [CASHOVERSHORTSALESMETHODCODE] WHEN 0 THEN N'Daily Sales' WHEN 1 THEN N'Advance Sales' WHEN 2 THEN N'Online Sales' WHEN 3 THEN N'Group Sales' END |
|
CHECKOVERSHORTSALESMETHOD |
nvarchar(13) (Computed) |
 |
CASE [CHECKOVERSHORTSALESMETHODCODE] WHEN 0 THEN N'Daily Sales' WHEN 1 THEN N'Advance Sales' WHEN 2 THEN N'Online Sales' WHEN 3 THEN N'Group Sales' END |
|