EGO_BASE_EXPRESSIONS_B

This table stores information about basic Expressions that can be used in the Expression builder. This can be a function or an operator.

Details

  • Schema: FUSION

  • Object owner: EGO

  • Object type: TABLE

  • Tablespace: REFERENCE

Primary Key

Name Columns

EGO_BASE_EXPRESSIONS_B_PK

EXPRESSION_ID

Columns

Name Datatype Length Precision Not-null Comments
EXPRESSION_ID NUMBER 18 Yes Unique identifier of the formula or condition.
EXPRESSION_NAME VARCHAR2 50 Yes Expression Name like split concat multiply plus etc
EXPRESSION_TYPE VARCHAR2 20 Yes Expression Type : Function or Operator
RETURN_TYPE VARCHAR2 20 Yes Return type for the Expression : java.Lang.String, java.sql.TimeStamp etc.
RETURN_TYPE_PARAM_INDEX NUMBER 2 In case the return type of the function is dynamic and dependent on an existing parameter, this attribute track the index of that parameter.
UNLIMITED_PARAMS VARCHAR2 10 Yes Y if the single defined parameter can be repeated 0 to infinite times. if N just follow the parameters defined. In case of Y only one parameter can be defined.
EXPRESSION_SYMBOL VARCHAR2 5 Expression Symbol like + - * / etc
EXPRESSION_GROOVY VARCHAR2 4000 Yes Groovy Code for calculating expression result.
EXPRESSION_SYNTAX VARCHAR2 400 Yes Syntax for Expression like concat(expression1, expression2,..)
EXAMPLES VARCHAR2 4000 Example of the function in an import map.
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_LOGIN VARCHAR2 32 Who column: indicates the session login associated to 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.
SEED_DATA_SOURCE VARCHAR2 512 Source of seed data record. A value of 'BULK_SEED_DATA_SCRIPT' indicates that record was bulk loaded. Otherwise, specifies the name of the seed data file.
ORA_SEED_SET1 VARCHAR2 1 Yes Oracle internal use only. Indicates the edition-based redefinition (EBR) context of the row for SET1. Context values are Y or N.
ORA_SEED_SET2 VARCHAR2 1 Yes Oracle internal use only. Indicates the edition-based redefinition (EBR) context of the row for SET2. Context values are Y or N.

Foreign Keys

Table Foreign Table Foreign Key Column
ego_base_expressions_tl ego_base_expressions_b EXPRESSION_ID
ego_base_expression_params ego_base_expressions_b EXPRESSION_ID

Indexes

Index Uniqueness Tablespace Columns
EGO_BASE_EXPRESSIONS_B_N1 Non Unique Default EXPRESSION_TYPE
EGO_BASE_EXPRESSIONS_B_U1 Unique Default EXPRESSION_ID, ORA_SEED_SET1
EGO_BASE_EXPRESSIONS_B_U11 Unique Default EXPRESSION_ID, ORA_SEED_SET2
EGO_BASE_EXPRESSIONS_B_U2 Unique Default EXPRESSION_NAME, ORA_SEED_SET1
EGO_BASE_EXPRESSIONS_B_U21 Unique Default EXPRESSION_NAME, ORA_SEED_SET2