IRC_STEP_TRANSITIONS

This table is for defining and storing routing step adjacency list. Within a process, for a given step A, another step B can be consider an immediate subsequent step of A only if a transition having FROM_STEP_ID == A and TO_STEP_ID == B exists.

Details

  • Schema: FUSION

  • Object owner: IRC

  • Object type: TABLE

  • Tablespace: TRANSACTION_TABLES

Primary Key

Name Columns

IRC_STEP_TRANSITIONS_PK

STEP_TRANSITION_ID

Columns

Name Datatype Length Precision Not-null Comments Status
STEP_TRANSITION_ID NUMBER 18 Yes Primary key of the table. System generated.
PROCESS_ID NUMBER 18 Yes Foreign keyto IRC_PROCESSES_B table. Stores the reference of the process that have the steps connected with current transition.
FROM_STEP_ID NUMBER 18 Yes Foreign key to IRC_ROUTINGSTEPS_B table. Stores the step having this transition among its outgoing transitions reaching adjacent steps.
TO_STEP_ID NUMBER 18 Yes Foreign key to IRC_ROUTING_STEPS_B table. Stores the step having this transition among its incoming transitions. Step being an adjacent of FROM_STEP_ID.
CODE VARCHAR2 62 Yes Tipically generated by the system for most transitions Ex: ("STATE_CODE_A->STATE_CODE_B")
IS_VISITED_FLAG VARCHAR2 1 Indicates current transition status. Will be set as [visited] upon corresponding toStep activation. Will be reset to not visited upon corresponding toStep reset to INACTIVE.
LAST_VISIT_DATE TIMESTAMP Date of the most recent time the transition has been visited for activating TO_STEP_ID.
MODULE_ID VARCHAR2 32 Seed Data Framework: indicates the module that owns the row. A module is an entry in Application Taxonomy such as a Logical Business Area. When the MODULE_ID column exists and the owner of the row is not specified, then the Seed Data Framework will not extract the row as seed data.
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.
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. Obsolete

Foreign Keys

Table Foreign Table Foreign Key Column
IRC_STEP_TRANSITIONS irc_processes_b PROCESS_ID
IRC_STEP_TRANSITIONS irc_routing_steps_b FROM_STEP_ID
IRC_STEP_TRANSITIONS irc_routing_steps_b TO_STEP_ID

Indexes

Index Uniqueness Tablespace Columns
IRC_STEP_TRANSITIONS_FK2 Non Unique Default FROM_STEP_ID
IRC_STEP_TRANSITIONS_FK3 Non Unique Default TO_STEP_ID
IRC_STEP_TRANSITIONS_N1 Non Unique Default PROCESS_ID
IRC_STEP_TRANSITIONS_PK Unique Default STEP_TRANSITION_ID