Column Name |
Column Datatype |
Column Null Option |
Column Comment |
|
|
ObjectID | INT | NOT NULL | The object ID of the object(such as patient, order, etc.). This field is always a primary key for the associated table. |
InstanceHFCID | SMALLINT | NOT NULL | The HFC(Healthcare Foundation Class) ID of the object(1139). Note: The value specified in the ObjectID field and in this field enables unique indentification 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. Not used. |
IsDeleted | TINYINT | NOT NULL | Indicates whether the record is soft deleted. Allowable Values: 0 - Active , 1 - Marked as Deleted |
IsVersioned | TINYINT | NOT NULL | Indicates whether the record was modified through persistent layer after it's initial creation. Once this field is set to True, you cannot reset it to False. If this field is set to True in a table, another table with the name HMedScreenInfo_Ver is created |
CreatedUserId | INT | NULL | The Object ID of the user who created the object. This field is linked to HSUser table to get details about the user. For more information on HSUser table |
CreationTime | SMALLDATETIME | NULL | The date and time when the object is created |
ValidFrom | DATETIME | NULL | The Date/Time from when the medication is valid |
ValidTo | DATETIME | NULL | The Date/Time till when the medication is valid |
SourceInternalID | INT | NOT NULL | The source order identifier that triggered the alert |
SourceComponentID | INT | NOT NULL | The source component identifier that triggered the alert |
RelatedInternalID | INT | NOT NULL | The affected order identifier |
RelatedComponentID | INT | NOT NULL | The identifier of the affected component |
RelatedComponentType | INT | NOT NULL | Affected component type. Allowable Values: 0 - HMedDispOrderComponent 1 - HmedOrderComponent |
SourceDrugCode | VARCHAR(32) | NULL | The identifier for the source drug |
RelatedDrugCode | VARCHAR(32) | NULL | The identifier for the affected/related drug |
SourceDrugName | VARCHAR(95) | NULL | Name of the source drug |
RelatedDrugName | VARCHAR(95) | NULL | Name of the affected drug |
SourceDrugLevel | INT | NULL | Level of classification of the source Drug or DrugCode |
RelatedDrugLevel | INT | NULL | Level of classification of the affected Drug or DrugCode |
ScreenDescription | VARCHAR(512) | NULL | Message describing the interaction between drugs in Source and Related order. |
MedResolutionAction_oid | INT | NOT NULL | Object ID of the stored resolution action(HMedResolutionAction) |
MedAlert_oid | INT | NOT NULL | Object ID of the stored medication alert(HMedAlerts) |
ChangeNo | SMALLINT | NULL | The number of times the order has changed. Used to properly sequence the history information |
LastCngDtime | DATETIME | NOT NULL | Current Universal Time Coordinate or Greenwich Mean Time |
|