Field |
Field Type |
Null |
Notes |
Description |
SUBJECT |
nvarchar(100) |
|
Default = '' |
A short description of the task. |
NOTES |
nvarchar(max) |
|
Default = '' |
|
DUEDATE |
UDT_FUZZYDATE |
|
Default = '00000000' |
The date the task should be completed by. |
DATECOMPLETED |
datetime |
 |
|
The date on which the task was completed. |
MARKETINGPLANTASKSTATUSCODE |
tinyint |
|
Default = 0 |
The status of the current task |
OWNER |
nvarchar(100) |
|
Default = '' |
The person who will be responsible for this task. This field is used by clients that do not have an Infinity powered CRM system. |
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. |
MARKETINGPLANTASKSTATUS |
nvarchar(9) (Computed) |
 |
CASE [MARKETINGPLANTASKSTATUSCODE] WHEN 0 THEN N'Active' WHEN 1 THEN N'Completed' END |
Provides a translation for the 'MARKETINGPLANTASKSTATUSCODE' field. |