FUN_WF_ROUTING_INSTANCES

This table contains details of rule evaluation service like execution time, routing results or error if any. Rule evaluation is a critical activity in approval flow where telemetry data needs to be gathered.

Details

  • Schema: FUSION

  • Object owner: FUN

  • Object type: TABLE

  • Tablespace: Default

Primary Key

Name Columns

fun_wf_routing_instances_PK

INSTANCE_ID

Columns

Name Datatype Length Precision Not-null Comments
INSTANCE_ID NUMBER 18 Yes INSTANCE_ID is the primary identifier to track the request.
TRACE_ID VARCHAR2 100 Yes TRACE_ID is the unique ID to correlate the logs for the flow.
TRANSACTION_ID NUMBER 18 TRANSACTION_ID is the transaction identifier for which the rules are being executed.
WORKFLOW_ID NUMBER 18 Yes WORKFLOW_ID is the identifier for workflow for which the request is made.
EXECUTION_MODE VARCHAR2 30 Yes EXECUTION_MODE is the mode in which the rule engine is executed i.e., from SOA for approval, or a REST API call for rule simulation.
INVOCATION_TIME TIMESTAMP Yes INVOCATION_TIME is the time when the request is made.
START_TIME TIMESTAMP Yes START_TIME is the time when the request actually started processing.
COMPLETION_TIME TIMESTAMP Yes COMPLETION_TIME is the time when the request got completed.
RESPONSE_RECEIPT_TIME TIMESTAMP Yes RESPONSE_RECEIPT_TIME is the time when response was received at BPEL layer.
RESPONSE BLOB RESPONSE is list of actions of the matched rules for given transaction.
ERROR_MESSAGE VARCHAR2 4000 ERROR_MESSAGE is the error occurred during rule evaluation.
ADDITIONAL_PARAMETERS BLOB ADDITIONAL_PARAMETERS is the field to capture identifiers for the bulk submission and name/value pair of runtime processing parameters in a JSON string format.
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.
LAST_UPDATE_DATE TIMESTAMP Yes Who column: indicates the date and time of the last update of the row.
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.

Indexes

Index Uniqueness Tablespace Columns
FUN_WF_ROUTING_INSTANCES_N1 Non Unique Default TRANSACTION_ID, WORKFLOW_ID
FUN_WF_ROUTING_INSTANCES_N2 Non Unique Default WORKFLOW_ID
FUN_WF_ROUTING_INSTANCES_U1 Unique Default INSTANCE_ID
FUN_WF_ROUTING_INSTANCES_U2 Unique Default TRACE_ID