ZCA_ER_RULES
Eligibility rule definitions for the centralized framework.
Details
-
Schema: FUSION
-
Object owner: ZCA
-
Object type: TABLE
-
Tablespace: REFERENCE
Primary Key
| Name | Columns |
|---|---|
|
ZCA_ER_RULES_PK |
ID |
Columns
| Name | Datatype | Length | Precision | Not-null | Comments |
|---|---|---|---|---|---|
| ID | NUMBER | 18 | Yes | Auto generated primary key of the table. | |
| RULE_NAME | VARCHAR2 | 255 | Yes | Human readable name identifying the rule. | |
| DESCRIPTION | VARCHAR2 | 2000 | Detailed description of the rule purpose and business logic. | ||
| RULE_TYPE | VARCHAR2 | 20 | Yes | Determines the semantic meaning of the selection (AVAILABLE / NOT_AVAILABLE). | |
| CONSUMER_APP_CODE | VARCHAR2 | 30 | Yes | Target consumer application this rule applies to (CPQ, SALES, OM). | |
| RULE_DEFINITION | CLOB | Yes | JSON CLOB containing the full rule logic in HCM Rule Builder if/then/else format. References canonical attribute names and PIM item attribute paths. | ||
| STATUS | VARCHAR2 | 15 | Yes | Lifecycle status of the rule (DRAFT, ACTIVE, INACTIVE). | |
| START_DATE | DATE | Effective start date of the rule. NULL means immediately effective upon activation. | |||
| END_DATE | DATE | Effective end date of the rule. NULL means the rule has no expiry. | |||
| PRIORITY | NUMBER | 5 | Evaluation order for the rule. Lower numbers evaluated first. | ||
| 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. | ||
| 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. |
Indexes
| Index | Uniqueness | Tablespace | Columns |
|---|---|---|---|
| ZCA_ER_RULES_N1 | Non Unique | Default | CONSUMER_APP_CODE, STATUS |
| ZCA_ER_RULES_N2 | Non Unique | Default | STATUS, START_DATE, END_DATE |
| ZCA_ER_RULES_PK | Unique | Default | ID |