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. Not valued in this table. Column exists as part of persistence framework implementation |
Description | VARCHAR(1) | NULL | User-defined information provided by the modules in the application. Note: The length of this field varies with tables. Not valued |
IsDeleted | TINYINT | NOT NULL | Indicates whether the record was soft deleted. Allowable Values: 0 - Active, 1 - Marked as Deleted |
IsVersioned | TINYINT | NOT NULL | Indicates whether the record was modified through persistent layer after its 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 HMedScreenInfoH_Ver is created. Allowable Values: 0 - False, 1 - True |
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. |
CreationTime | SMALLDATETIME | NULL | The date and time when the object was created |
ValidFrom | DATETIME | NULL | The Date/Time from when the current record became valid |
ValidTo | DATETIME | NULL | The Date/Time the current record became invalid |
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 |