Column Name |
Column Datatype |
Column Null Option |
Column Comment |
|
|
ObjectID | int | NOT NULL | ObjectID of this record.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. |
CreationTime | smalldatetime | NULL | Date and time when the object was created. |
LoginID | varchar(100) | NULL | LoginId of the user |
UserName | varchar(12) | NULL | User abbreviation used in displays and printed output. |
UserDescription | varchar(255) | NULL | Description for the user |
UserComment | varchar(255) | NULL | Remarks as entered by the user. |
UserType | tinyint | NULL | The type of user. Allowable Values: 0, 1, 2, 3, 4, 5, 6, 7, or NULL. Key of allowable values: 0 - UT_Staff, 1 - UT_Patient, 2 - UT_Person, 3 - UT_ExternalSystem, 4 - UT_System, 5 - UT_Others, 6 - UT_SuperSystem, 7 - UT_SuperUser. |
LastChanged | datetime | NULL | Most recent date and time when the user's emergency access privileges were modified. |
EmergencyAccess | bit | NULL | When set to True, indicates that the user has emergency access privilege. When a user has emergency access, he can access a secured object to which he would not normally have access. This special security privilege can be established for a specified period of time without reconfiguring the user's security profile. Allowable Values: 0, 1, or NULL. Key of allowable values: 0 - False, 1 - True |
UserContact | bit | NULL | When set to True, indicates that the user has user contact privilege. When a user has user contact, he can access a patient to whom he would not normally have access. This special security privilege can be established for a specified period without reconfiguring the user's security profile. Allowable Values: 0, 1, or NULL. Key of allowable values: 0 - False, 1 - True |
LastLogonTime | smalldatetime | NULL | Date and time when the user logged on to the application prior to the current logon. |
NormLoginID | varchar(100) | NULL | Normalized form of the login ID of the user. This contains no special characters. |
BeginTime | smalldatetime | NULL | Date and time when the user became a valid user of the application. |
EndTime | smalldatetime | NULL | Last date and time when the user was a valid user of the application. |
PreferenceGroup_oid | int | NULL | The preference group of the user, such as doctors. Note: This is a data dictionary item. |
Person_oid | int | NULL | Object Identifier of the HPerson. |
Password_oid | int | NULL | Object Identifier of the HSPassword. |
SignLevel | int | NULL | Level of signature assigned to the user. Allowable Values: 0, 1, 2, 3, 4, 5, 6, 7, 8, 9. |
UUID | varchar(32) | NULL | GUID(Globally Unique Identifier) of ActiveDirectory mapped user |
UGsMapped | tinyint | NULL | Indicates if the user is migrated to the ActiveDirectory for CDS2. Allowable values - null, 0, 1. Key of allowable values: 0 - False, 1 - True. |
IsUserReadOnly | bit | NULL | Indicates if the user is ReadOnly. Allowable values - null, 0, 1. Key of allowable values: 0 - False, 1 - True. |
|