Column Name |
Column Datatype |
Column Null Option |
Column Comment |
|
|
ObjectID | INT | NOT NULL | The object ID for the medication prescription |
InstanceHFCID | SMALLINT | NOT NULL | The HFC(Healthcare Foundation Class) ID of the object(1130). 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 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 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 HMedPrescriptionH_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. For more information on HSUser table |
CreationTime | SMALLDATETIME | NULL | The date and time when the object is created |
ValidFrom | DATETIME | NOT NULL | The Date/Time from when the current record became valid |
ValidTo | DATETIME | NULL | The Date/Time until the current record is valid |
PrescriptionFormID | INT | NULL | Form ID used for entering the prescription |
PrescriptionFormInstDt | DATETIME | NULL | The Date/Time when prescription was added |
Printed | DATETIME | NULL | The Date/Time when prescription was printed |
Responsible_oid | INT | NOT NULL | Object ID for the staff who added the prescription(HStaff) |
Patient_oid | INT | NOT NULL | Object ID for the Patient(HPatient) |
PatientVisit_oid | INT | NOT NULL | Object ID for the Patient's Visit(HPatientVisit) |
MedOrder_oid | INT | NOT NULL | Object ID of the stored medication order(HMedOrder) |
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 |
|