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(1119). Note: The value specified in the ObjectID field and in this field enables unique indentification of an object across the application |
RecordID | INT, | | The record ID. Not valued in this table. Column exists as part of persistence framework implementation |
Description | VARCHAR(1), | | User-defined information provided by the modules in the application. Note: The length of this field varies with tables. Not valued |
IsDeleted | SMALLINT | NOT NULL | Indicates whether the record is soft deleted. Allowable Values: 0 - Active, 1 - Marked as Deleted |
IsVersioned | BIT | 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 HMedDispOrderSuppInfo_Ver is created. Allowable Values: 0 - False, 1 - True |
CreatedUserID | INT, | | The Object ID of the user who created the object. This field is linked to HSUser table to get details about the user. |
CreationTime | DATETIME, | | The date and time when the object was created |
ValidFrom | DATETIME | NULL | The Date/Time from which the medication prescribed to the patient is valid |
ValidTo | DATETIME | Null | The Date/Time when the medication prescribed to the patient is no longer valid |
PharmacyInstr | VARCHAR(256), | | Instructions given to pharmacy. Example: DO NOT CRUSH OR CHEW / FLUSH BEFORE AND AFTER EACH DOSE ... |
ChangeNo | SMALLINT | NULL | The number of times the order has changed. Used to properly sequence the history information |
IndicationCode | VARCHAR(18) | NULL | Medication indication code |
IndicationDescription | VARCHAR(80) | NULL | Medication indication description |
CodeSystem | VARCHAR(8) | NULL | Code system that defines the indication |
IndicationRequiredCode | TINYINT | NULL | Indicates whether this is mandatory. Allowable values: 0/NULL - Not Available, 1 - Optional, 2 - Mandatory |
LastCngDtime | DATETIME | NOT NULL | Current Universal Time Coordinate or Greenwich Mean Time |
|
|