HRM_CANDIDATE_HISTORY
Plan candidate history table stores the history records of the particular candidate of the plan. It contains history data with old and new values.
Details
-
Schema: FUSION
-
Object owner: HRM
-
Object type: TABLE
-
Tablespace: Default
Primary Key
| Name | Columns |
|---|---|
|
HRM_CANDIDATE_HISTORY_PK |
PLAN_CANDIDATE_HISTORY_ID |
Columns
| Name | Datatype | Length | Precision | Not-null | Comments |
|---|---|---|---|---|---|
| PLAN_CANDIDATE_HISTORY_ID | NUMBER | 18 | Yes | Plan candidate history id represents the unique id for all records. | |
| ENTERPRISE_ID | NUMBER | 18 | Yes | Plan enterprise id represents enterprise id for plan candidate history table. | |
| PLAN_ID | NUMBER | 18 | Yes | Plan id represents plan in which candidate belongs to. | |
| PLAN_CANDIDATE_ID | NUMBER | 18 | Yes | Plan candidate id represents unique id for candidate for plan. | |
| MODIFIED_DATE | TIMESTAMP | Yes | modified date represents the date on which this change is committed. | ||
| MODIFIED_BY | NUMBER | 18 | Yes | modified by represents the person id who made this change. | |
| MODIFIED_COLUMN | VARCHAR2 | 40 | Modified column represents the name of modified column. | ||
| OLD_VALUE | VARCHAR2 | 4000 | Old value represents the old value of what changed attribute. | ||
| NEW_VALUE | VARCHAR2 | 4000 | New value represents the new value of what changed attribute. | ||
| OPERATION_TYPE | VARCHAR2 | 15 | Yes | Operation type represents the type of operation committed. | |
| OBJECT_VERSION_NUMBER | NUMBER | 9 | Yes | Used to implement optimistic locking. This number is incremented every time that the row is updated. The number is compared at the start and end of a transaction to detect whether another session has updated the row since it was queried. | |
| CREATED_BY | VARCHAR2 | 64 | Yes | Who column: indicates the user who created the row. | |
| CREATION_DATE | TIMESTAMP | Yes | Who column: indicates the date and time of the creation of the row. | ||
| LAST_UPDATED_BY | VARCHAR2 | 64 | Yes | Who column: indicates the user who last updated the row. | |
| LAST_UPDATE_DATE | TIMESTAMP | Yes | Who column: indicates the date and time of the last update of the row. | ||
| LAST_UPDATE_LOGIN | VARCHAR2 | 32 | Who column: indicates the session login associated to the user who last updated the row. |
Indexes
| Index | Uniqueness | Tablespace | Columns |
|---|---|---|---|
| HRM_CANDIDATE_HISTORY_N1 | Non Unique | HRM_CANDIDATE_HISTORY_N1 | PLAN_ID |
| HRM_CANDIDATE_HISTORY_N2 | Non Unique | HRM_CANDIDATE_HISTORY_N2 | MODIFIED_DATE |
| HRM_CANDIDATE_HISTORY_N3 | Non Unique | HRM_CANDIDATE_HISTORY_N3 | PLAN_CANDIDATE_ID |
| HRM_CANDIDATE_HISTORY_PK | Unique | Default | PLAN_CANDIDATE_HISTORY_ID |