FOS_UPGRADE_MESSAGES

This table is used to log the error and warning messages that are generated during the Supply Chain Financial Orchestration release 9 upgrade process.

Details

  • Schema: FUSION

  • Object owner: FOS

  • Object type: TABLE

  • Tablespace: Default

Primary Key

Name Columns

FOS_UPGRADE_MESSAGES_PK

UPGRADE_MESSAGE_ID

Columns

Name Datatype Length Precision Not-null Comments
UPGRADE_MESSAGE_ID NUMBER 18 Yes This is the primary key for the table which is an application generated unique id.
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.
SOURCE_TABLE VARCHAR2 30 Yes The name of the inventory intercompany table that was the source of the record that triggered the message. Valid values are 'INV_TRANSACTION_FLOW_HEADERS' and 'INV_INTERORG_PARAMETERS'.
SOURCE_FLOW_ID NUMBER 18 Yes This is a reference to the record in the source table which triggered the message. It is either the HEADER_ID from the INV_TRANSACTION_FLOW_HEADERS table or the INTERORG_PARAMETERS_ID from the INV_INTERORG_PARAMETERS table.
MESSAGE_TYPE VARCHAR2 30 Yes The type of the message. Valid values are 'ERROR' and 'WARNING'.
MESSAGE_NAME VARCHAR2 30 Yes The name of the message that was generated during the attempted upgrade of the identified source flow record.
TOKEN_NAMES VARCHAR2 1000 Concatenated list of token names that identify the substitution values for the message. Token names are separated by a '$' character and the sequence of the names correspond to the sequence of the values in the TOKEN_VALUES column.
TOKEN_VALUES VARCHAR2 1000 Concatenated list of token values to be substituted into the message. Token values are separated by a '$' character and the sequence of the values correspond to the sequence of the names in the TOEKN_NAMES column.
ENTERPRISE_ID NUMBER 18 Yes Identifier of Enterprise, used for multi-tenancy partitioning.
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
FOS_UPGRADE_MESSAGES_N1 Non Unique Default SOURCE_TABLE, SOURCE_FLOW_ID
FOS_UPGRADE_MESSAGES_PK Unique Default UPGRADE_MESSAGE_ID