ZPS_SYNC_ERRORS

Table to capture error details of synchronization of appointments, contacts, tasks and emails with Microsoft.

Details

  • Schema: FUSION

  • Object owner: ZPS

  • Object type: TABLE

  • Tablespace: Default

Primary Key

Name Columns

zps_sync_errors_PK

SYNC_ERROR_ID

Columns

Name Datatype Length Precision Not-null Comments
SYNC_ERROR_ID NUMBER 18 Yes The primary key of the table.
PRODUCER_ID NUMBER 18 The reference ID of the user or application, which is doing the synchronization.
SYNC_TYPE NUMBER 1 Yes Three types of synchronization: 0 - Standard synchronization 1 - Instant synchronization 2 - Email synchronization.
MSG_TYPE VARCHAR2 30 The type of error message: System or User
SYNC_DIRECTION VARCHAR2 30 The two directions of synchronization: Up sync and Down sync.
OBJECT_TYPE VARCHAR2 20 The object type such as appointment or contact.
OPERATION_TYPE VARCHAR2 30 The operation type such as create, update, or delete.
RECORD_ID NUMBER 18 The Record ID in the sales application.
RECORD_NUMBER VARCHAR2 50 The record number in the sales application.
SYNC_ID NUMBER 18 The foreign key to the table, ZPS_SYNC.
MS_ID VARCHAR2 2000 Id of the Microsoft record.
OBJECT_NAME VARCHAR2 2000 Name of the failed record.
IS_OWNER_ACTION VARCHAR2 1 Flag to indicate that the action on the record was done by the owner.
ERROR_SEVERITY VARCHAR2 30 The severity of an error.
ERROR_REASON VARCHAR2 4000 The reason for an error.
ERROR_STACKTRACE CLOB The stack trace of an error.
ERROR_ADDL_DETAILS CLOB The column that stores additional data related to the Microsoft errors.
HTTP_URL VARCHAR2 4000 Component of Microsoft error details: HTTP URL.
HTTP_HEADERS VARCHAR2 4000 Component of Microsoft error details: HTTP headers.
HTTP_STATUS_CODE NUMBER 9 Component of Microsoft error details: HTTP status code.
HTTP_REASON_PHRASE VARCHAR2 1000 Component of Microsoft error details: HTTP reason phrase.
FULL_MESSAGE VARCHAR2 4000 The non-translated version of an error message.
PAYLOAD CLOB The payload of a failed record.
DISPLAY_MESSAGE VARCHAR2 4000 Formatted error message.
IS_AUTO_SYNC VARCHAR2 1 Flag to indicate that an error occurred during an automatic synchronization.
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.

Indexes

Index Uniqueness Tablespace Columns
zps_sync_errors_N1 Non Unique Default PRODUCER_ID, MSG_TYPE
zps_sync_errors_N2 Non Unique Default PRODUCER_ID, SYNC_TYPE, OBJECT_TYPE
zps_sync_errors_N3 Non Unique Default PRODUCER_ID, IS_AUTO_SYNC
zps_sync_errors_U1 Unique Default SYNC_ERROR_ID