Field |
Field Type |
Null |
Notes |
Description |
ISINACTIVE |
bit |
|
Default = 0 |
Indicates whether the billing item is no longer offered. |
PRICETYPECODE |
tinyint |
|
Default = 1 |
Flag indicating which kind of billing item. |
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. |
DESCRIPTION |
nvarchar(255) (Computed) |
 |
dbo.UFN_BILLINGITEM_GETDESCRIPTIONFROMPRODUCT(ID) |
Description of the Billing Item. |
NAME |
nvarchar(100) (Computed) |
 |
dbo.UFN_BILLINGITEM_GETNAMEFROMPRODUCT(ID) |
Name of the Billing Item. |
PRICETYPE |
nvarchar(19) (Computed) |
 |
CASE [PRICETYPECODE] WHEN 1 THEN N'Flat rate' WHEN 2 THEN N'Vary by grade level' WHEN 3 THEN N'Vary by school' END |
Provides a translation for the 'PRICETYPECODE' field. |