Column Name |
Column Datatype |
Column Null Option |
Column Comment |
|
|
ObjectID | int | NOT NULL | Object Identifier of this record. This field is a primary key for the associated table. |
InstanceHFCID | smallint | NOT NULL | Healthcare Foundation Class(HFC) Identifier of the object.HFCID of this object is 1413. The value specified in the ObjectID field and in this field enables unique identification of an object instance across the application. |
RecordId | int | NULL | Not Valued in this table. Column exists as part of persistence framework implementation. |
Description | varchar(64) | NULL | User defined description of the type of Service. |
IsDeleted | tinyint | NOT NULL | Specifies whether the record is soft deleted. |
| | | Allowable Values |
| | | 0 - Active |
| | | 1 - Marked as Deleted. |
| | | Note: The presence of this field in tables depends on the configuration at the time of table design. |
IsVersioned | bit | NOT NULL | Whether the table data is Versioned or not. |
| | | Allowable Values: |
| | | 0 - No version data captured. |
| | | 1 - Version changes available in _Ver table. |
| | | Once this field is set to 1, you cannot reset it to 0. If value is 1 , the current row represents the latest state , and all version data will be present in another table with the name HServiceType_Ver. |
| | | Note: The presence of this field in tables depends on the configuration at the time of table design. |
CreatedUserId | int | NULL | Object ID of the logged in user who created this record. |
| | | This field is linked to HSUser table to get details about the user. For more information see description of HSUser table |
CreationTime | smalldatetime | NULL | Date and time when the record is created. |
ServiceTypeName | varchar(64) | NULL | Name of the Service Type |
Abbreviation | varchar(30) | NULL | Abbreviated Name of Service Type |
StartDateTime | smalldatetime | NULL | DateTime since when the record is active |
EndDateTime | smalldatetime | NULL | DateTime when the record will be Inactive |
ObsoleteDateTime | smalldatetime | NULL | DateTime when the record was obsoleted |
HasSubtype | bit | NULL | Whether this record is parent to another record in this table. Allowable Values: 0 - False, 1 - True. |
IsSubtype | bit | NULL | Whether this record is child to another record in this table. Allowable Values: 0 - False, 1 - True. |
IsTemplate | bit | NULL | Whether this record is system defined. Allowable Values: 0 - False, 1 - True. |
ValidityStatus | varchar(16) | NULL | Validity Status of the record. eg Active,Inactive etc |
ValidityStatusCode | smallint | NULL | Code for the Validity Status of the servicetype |
| | | Allowable Values: |
| | | 0 - Active |
| | | 1 - Inactive |
| | | 2 - Incomplete |
| | | 3 - Obsolete |
ParentServiceType_oid | int | NULL | ObjectID of HServiceType table. This is self relation where child servicetypes are linked to the parent. Will only be valued for records having IsSubType as True. |
ServiceTypeCode | smallint | NOT NULL | Unique Internal identifier for the service type record. |
BLMnemonic | Char(3) | Null | Business logic Mnemonic of the ServiceType. For any business logic processing this Mnemonic shall be used. |
LastCngDtime | DATETIME | NOT NULL | Current Universal Time Coordinate or Greenwich Mean Time |
|
|