SVC_OMNI_INTEGRATORS

Table to hold the information about OMNI Messaging external channel integrations configured per customer (Slack application, SMS or WhatsApp Infobip number, etc.).

Details

  • Schema: FUSION

  • Object owner: SVC

  • Object type: TABLE

  • Tablespace: svc_omni_integrators

Primary Key

Name Columns

SVC_OMNI_INTEGRATORS_PK

INTEGRATOR_ID

Columns

Name Datatype Length Precision Not-null Comments
INTEGRATOR_ID NUMBER 18 Yes Unique ID for the channel integrator.
INTEGRATOR_NUMBER VARCHAR2 30 Yes Public unique identifier to identify unique record.
INTEGRATOR_TYPE_ID NUMBER 18 Yes Id of the channel integration type. Acts as a foreign key to SVC_OMNI_INTEGRATOR_TYPES(INTEGRATOR_TYPE_ID).
SUBTYPE VARCHAR2 64 Sub-type of channel integrator, corresponds to vendor channel code value.
EXTERNAL_REF VARCHAR2 256 External reference linked to the channel.
NAME VARCHAR2 128 Yes Channel integrator name. Logical name provided by a customer, not a code.
DESCRIPTION VARCHAR2 256 Channel integrator description.
EGRESS_WEBHOOK_ID NUMBER 18 Id of egress webhook configuration. Acts as a foreign key to SVC_OMNI_WEBHOOKS(WEBHOOK_ID).
INGRESS_AUTH_ID NUMBER 18 Id on ingress auth configuration. Acts as a foreign key to SVC_OMNI_AUTH(AUTH_ID).
STATE_CD VARCHAR2 30 Yes Lookup code that indicates the current state of the channel integration: NEW, ACTIVE, SUSPENDED.
CREATION_DATE TIMESTAMP Yes Who column: indicates the date and time of the creation of the row.
CREATED_BY VARCHAR2 64 Yes Who column: indicates the user who created the row.
LAST_UPDATE_DATE TIMESTAMP Yes Who column: indicates the date and time of the last update 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.
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.

Foreign Keys

Table Foreign Table Foreign Key Column
SVC_OMNI_INTEGRATORS svc_omni_integrator_types INTEGRATOR_TYPE_ID
SVC_OMNI_INTEGRATORS svc_omni_auth INGRESS_AUTH_ID
SVC_OMNI_INTEGRATORS svc_omni_webhooks EGRESS_WEBHOOK_ID
svc_omni_integrator_attrs svc_omni_integrators INTEGRATOR_ID

Indexes

Index Uniqueness Tablespace Columns
SVC_OMNI_INTEGRATORS_N1 Non Unique SVC_OMNI_INTEGRATORS_N1 NAME
SVC_OMNI_INTEGRATORS_N2 Non Unique SVC_OMNI_INTEGRATORS_N2 INGRESS_AUTH_ID
SVC_OMNI_INTEGRATORS_N3 Non Unique SVC_OMNI_INTEGRATORS_N3 EGRESS_WEBHOOK_ID
SVC_OMNI_INTEGRATORS_PK Unique SVC_OMNI_INTEGRATORS_PK INTEGRATOR_ID
SVC_OMNI_INTEGRATORS_U1 Unique SVC_OMNI_INTEGRATORS_U1 INTEGRATOR_NUMBER
SVC_OMNI_INTEGRATORS_U2 Unique SVC_OMNI_INTEGRATORS_U2 INTEGRATOR_TYPE_ID, SUBTYPE, EXTERNAL_REF