Field |
Field Type |
Null |
Notes |
Description |
TYPECODE |
tinyint |
|
Default = 0 |
The type of fee the item represents |
APPLIESTOCODE |
tinyint |
|
Default = 0 |
The application type of fee |
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. |
APPLIESTO |
nvarchar(5) (Computed) |
 |
CASE [APPLIESTOCODE] WHEN 0 THEN N'Order' WHEN 1 THEN N'Item' END |
Provides a translation for the 'APPLIESTOCODE' field. |
TYPE |
nvarchar(15) (Computed) |
 |
CASE [TYPECODE] WHEN 0 THEN N'Delivery Method' WHEN 1 THEN N'Sales Method' WHEN 2 THEN N'Program' WHEN 3 THEN N'Rate Scale' END |
Provides a translation for the 'TYPECODE' field. |
FEENAME |
nvarchar(100) |
|
Default = '' |
Name of fee at time of sale. |