Field |
Field Type |
Null |
Notes |
Description |
APPLICATIONCODE |
tinyint |
|
Default = 0 |
Selects the application to which the aging periods belong. |
APPLICATION |
nvarchar(8) (Computed) |
 |
CASE [APPLICATIONCODE] WHEN 0 THEN N'Defaults' WHEN 1 THEN N'Payables' END |
Provides a translation for the 'APPLICATIONCODE' field. |
PERIODNUMBER |
int |
|
Default = 0 |
Aging period number |
PERIODSTART |
smallint |
|
Default = ((0)) |
Start day for aging period |
PERIODEND |
smallint |
|
Default = ((32767)) |
End day for aging period |
PERIODDESCRIPTION |
nvarchar(20) |
|
Default = '' |
Description of aging period |
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. |