Column Name |
Column Datatype |
Column Null Option |
Column Comment |
|
|
ObjectID | int | NOT NULL | Object Identifier of this record. This field is a primary key for the associated table. |
InstanceHFCID | smallint | NOT NULL | HFC(Healthcare Foundation Class) ID of the object. The value specified in the ObjectID field and in this field enables unique identification of an object across the application. |
RecordId | int | NULL | Indicates the record ID. Modules in the application can use this field to group all objects having something in common and then assign the same RecordId to all the objects. For example, all related information for a patient, such as patient address, patient visits, patient name, etc., can be assigned the same RecordId. The modules can then query on this RecordId to retrieve the related information for that patient. |
Description | varchar(1) | NULL | User-defined information provided by the modules in the application. Not valued in this table. |
IsDeleted | tinyint | NOT NULL | When set to 1, indicates that the object was deleted. Allowable Values: 0,1, or NULL. Key of allowable values: 0 - False, 1 - True. |
IsVersioned | bit | NOT NULL | When set to True, indicates that the object was modified. Once this field is set to True, you cannot reset it to False. Allowable Values: 0,1, or NULL. Key of allowable values: 0 - False, 1 - True. |
CreatedUserId | int | NULL | Object Identifier of the user who created the object. This field is linked to HSUser table to get details about the user |
CreationTime | smalldatetime | NULL | Date and time when the object was created. |
TaskDes | varchar(255) | NULL | Description of the task. |
Visble | bit | NULL | When set to True, indicates that the task is visible on the screen in the application. Allowable Values: 0, 1, or NULL. Key of allowable values: 0 - False, 1 - True |
TaskGroup | tinyint | NULL | The group to which the task belongs. Allowable Values: 0, 1, 2, 3, or NULL. Key of allowable values: 0 - STG_AdministrativeDesktop, 1 - STG_ClinicalDesktop, 2 - STG_SystemDefault, 3 - STG_UserDefault |
BeginTime | smalldatetime | NULL | The date and time when the task began. |
LastChanged | datetime | NULL | Most recent date and time when the task was modified. |
EndTime | smalldatetime | NULL | Date and time when the task ended. |
ParentTask_oid | int | NULL | Object ID for the parent task HSTask. |
TaskTemplate_oid | int | NOT NULL | Object ID for the HSTaskTemplate. |
PatientUnitMatch | tinyint | NULL | The type of match between a patient and a unit. Allowable Values: 0, 1, 2, or NULL. Key of allowable values: 0 - No match, 1 - Any type match, 2 - Zero match |
|