Field |
Field Type |
Null |
Notes |
Description |
NAME |
nvarchar(43) |
|
Default = '' |
The name of the list. |
DESCRIPTION |
nvarchar(255) |
|
Default = '' |
A description about the list. |
CODE |
nvarchar(10) |
|
Default = '' |
A unique code that identifies the list. |
ISINACTIVE |
bit |
|
Default = 0 |
Indicates whether or not the list is inactive. |
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. |
BASERENTALCOST |
money |
|
Default = 0 |
The base cost to rent the list. |
BASERENTALCOSTBASISCODE |
tinyint |
|
Default = 1 |
The basis on which the base cost to rent the list should be calculated. |
BASEEXCHANGECOST |
money |
|
Default = 0 |
The base cost associated with obtaining the list via an exchange. |
BASEEXCHANGECOSTBASISCODE |
tinyint |
|
Default = 1 |
The basis on which the base cost associated with obtaining the list via an exchange should be calculated. |
BASERENTALCOSTBASIS |
nvarchar(12) (Computed) |
 |
CASE [BASERENTALCOSTBASISCODE] WHEN 1 THEN N'Per thousand' WHEN 2 THEN N'Flat' END |
Provides a translation for the 'BASERENTALCOSTBASISCODE' field. |
BASEEXCHANGECOSTBASIS |
nvarchar(12) (Computed) |
 |
CASE [BASEEXCHANGECOSTBASISCODE] WHEN 1 THEN N'Per thousand' WHEN 2 THEN N'Flat' END |
Provides a translation for the 'BASEEXCHANGECOSTBASISCODE' field. |
ORGANIZATIONBASERENTALCOST |
money |
|
Default = 0 |
The amount of the base rental cost in organization currency. |
ORGANIZATIONBASEEXCHANGECOST |
money |
|
Default = 0 |
The amount of the base exchange cost in organization currency. |