Column Name |
Column Datatype |
Column Null Option |
Column Comment |
|
|
ObjectID | int | NOT NULL | The object ID of the object. This field is always a primary key for the associated table. |
InstanceHFCID | smallint | NOT NULL | The HFC(Healthcare Foundation Class) ID of the object. Note: The value specified in the ObjectID field and in this field enables unique identification of an object across the application. |
RecordId | int | NULL | 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. Note: The length of this field varies with tables. |
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 ID 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. |
CreateDate | smalldatetime | NULL | Date and time when the test record was created. |
LastTestDate | smalldatetime | NULL | Date and time when the last test was performed. |
LastResult | tinyint | NULL | Result of the last test that was performed. |
IsActive | bit | NULL | When set to True, indicates that the instance of the test is active. Allowable Values: 0,1, or NULL Key of allowable values: 0 - False, 1 - True. |
LastChanged | datetime | NULL | The most recent date and time when the test record was modified. |
AccessDate | smalldatetime | NULL | Date and time when the test record became accessible. |
GroupName | varchar(255) | NULL | Name of the group. |
User_oid | int | NOT NULL | Value stored as a result of a one-to-one relationship between HSecurityManTestRec and HSUser. |
Patient_oid | int | NULL | Value stored as a result of a zero-to-one relationship between HSecurityManTestRec and HPatient. |
SecurityObject_oid | int | NOT NULL | Value stored as a result of a one-to-one relationship between HSecurityManTestRec and HSecurityObject. |
ExpResult | tinyint | NULL | Type of expected result. |
SecObjInst | int | NULL | HFC(Healthcare Foundation Class) ID of the security object. |
TestAction | tinyint | NULL | Action of the test performed on the security object. |
Password | varchar(100) | NULL | The password. |
TestStatus | varchar(100) | NULL | The status of the test. |
|