Field |
Field Type |
Null |
Notes |
Description |
PARTID |
uniqueidentifier |
|
|
The BBNC part id instance |
HELPID |
int |
|
Default = 0 |
The id that is passed to the help file |
HELPIDDESCRIPTION |
nvarchar(255) |
|
Default = '' |
Label to describe the specific HELPID's functionality |
HELPSTATUSCODE |
tinyint |
|
Default = 0 |
Marks the help item as off, default or custom |
HELPSTATUS |
nvarchar(7) (Computed) |
 |
CASE [HELPSTATUSCODE] WHEN 0 THEN N'Off' WHEN 1 THEN N'Default' WHEN 2 THEN N'Custom' END |
Provides a translation for the 'HELPSTATUSCODE' field. |
CUSTOMHELPURL |
nvarchar(255) |
|
Default = '' |
URL to a custom help file |
CUSTOMTOOLTIP |
nvarchar(255) |
|
Default = '' |
Tool tip for the help button |
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. |