Search Results msg_seq_no
Overview
APPS.OKC_QUE_ERROR_TEXT_V is a reporting view in the Oracle E-Business Suite (EBS) 12.1.1 and 12.2.2 environments, owned by the APPS schema. It exposes error text information that has been accumulated on the Advanced Queue (AQ) message stack for the Oracle Contracts (OKC) module. In EBS, contract-related operations frequently rely on concurrent programs, bulk processing, and outbound/inbound messaging that leverage Oracle Advanced Queuing. When a queued message fails, diagnostic information is captured and pushed onto an internal message stack. This view provides a simplified, read-only projection of that stack, allowing functional and technical users to inspect error messages associated with queued contract events without querying the raw staging table directly.
Because the view is defined as a straightforward projection with column aliasing, it plays a supporting role in troubleshooting and integration monitoring rather than acting as a transactional interface. Users searching for "message_number" are typically performing diagnostics against queued contract events and require the numeric message identifier alongside the message name and text.
Underlying Base Objects
The view is defined over a single base object, accessed through a synonym: OKC_AQMSGSTACKS. The documented view text is a SELECT statement that reads from OKC_AQMSGSTACKS and renames several columns for clarity:
- AQE_ID is exposed as ID
- MSG_SEQ_NO is exposed as MSG_SEQ_NO
- MESSAGE_NAME is exposed as MESSAGE_NAME
- MESSAGE_NUMBER is exposed as MESSAGE_NUMBER
- message_text is exposed as MESSAGE_TEXT
Because the view is a direct projection with no joins, filters, or aggregations, its content mirrors the rows held in OKC_AQMSGSTACKS at query time. The synonym resolves to the OKC-owned base table in the standard EBS configuration, though the view itself is registered under the APPS schema for consistent access control and cross-module readability.
Key Columns
- ID (AQE_ID): The unique identifier of the advanced queue error/message record. This is the primary correlation key for a specific stack entry.
- MSG_SEQ_NO: The sequence number of the message within the stack, indicating ordering of messages as they were enqueued or encountered.
- MESSAGE_NAME: The symbolic name of the message, corresponding to the message dictionary entry.
- MESSAGE_NUMBER: The numeric identifier of the message. This is the column retrieved by users who search for "message_number" and is the key used to join to message lookup tables such as FND_NEW_MESSAGES when additional message text or translations are required.
- MESSAGE_TEXT: The actual error or informational text associated with the queued message, generally the human-readable content surfaced to the end user or support analyst.
Common Use Cases and Queries
Typical scenarios include diagnosing failed contract concurrent programs, verifying outbound message contents, and correlating an error surfaced in the UI with its underlying numeric message identifier. The following examples illustrate common access patterns.
Listing recent queue error messages:
SELECT id, msg_seq_no, message_name, message_number, message_text FROM apps.okc_que_error_text_v ORDER BY id, msg_seq_no;
Locating a specific message by its numeric identifier:
SELECT id, message_name, message_number, message_text FROM apps.okc_que_error_text_v WHERE message_number = :p_message_number;
Joining to the message repository for translated text:
SELECT v.id, v.message_number, v.message_text, m.message_text AS dictionary_text FROM apps.okc_que_error_text_v v, fnd_new_messages m WHERE v.message_number = m.message_number AND m.language_code = USERENV('LANG');
These queries support functional troubleshooting and integration monitoring and should be executed in a read-only fashion given the diagnostic nature of the view.
-
VIEW: APPS.OKC_QUE_ERROR_TEXT_V
12.2.2
-
VIEW: OKC.OKC_AQMSGSTACKS#
12.2.2
-
VIEW: APPS.OKC_QUE_ERROR_TEXT_V
12.1.1
-
View: OKC_AQMSGSTACKS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKC.OKC_AQMSGSTACKS_V, object_name:OKC_AQMSGSTACKS_V, status:VALID, product: OKC - Contracts Core , description: View for table OKC_AQMSGSTACKS , implementation_dba_data: APPS.OKC_AQMSGSTACKS_V ,
-
View: OKC_QUE_ERROR_TEXT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKC.OKC_QUE_ERROR_TEXT_V, object_name:OKC_QUE_ERROR_TEXT_V, status:VALID, product: OKC - Contracts Core , implementation_dba_data: APPS.OKC_QUE_ERROR_TEXT_V ,
-
View: OKC_QUE_ERROR_TEXT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKC.OKC_QUE_ERROR_TEXT_V, object_name:OKC_QUE_ERROR_TEXT_V, status:VALID, product: OKC - Contracts Core , implementation_dba_data: APPS.OKC_QUE_ERROR_TEXT_V ,
-
VIEW: APPS.OKC_AQMSGSTACKS_V
12.1.1
-
VIEW: APPS.OKC_AQMSGSTACKS_V
12.2.2
-
View: OKC_AQMSGSTACKS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKC.OKC_AQMSGSTACKS_V, object_name:OKC_AQMSGSTACKS_V, status:VALID, product: OKC - Contracts Core , description: View for table OKC_AQMSGSTACKS , implementation_dba_data: APPS.OKC_AQMSGSTACKS_V ,
-
TABLE: OKC.OKC_AQMSGSTACKS
12.1.1
owner:OKC, object_type:TABLE, fnd_design_data:OKC.OKC_AQMSGSTACKS, object_name:OKC_AQMSGSTACKS, status:VALID,
-
TABLE: OKC.OKC_AQMSGSTACKS
12.2.2
owner:OKC, object_type:TABLE, fnd_design_data:OKC.OKC_AQMSGSTACKS, object_name:OKC_AQMSGSTACKS, status:VALID,
-
VIEW: OKC.OKC_AQMSGSTACKS#
12.2.2
owner:OKC, object_type:VIEW, object_name:OKC_AQMSGSTACKS#, status:VALID,
-
VIEW: APPS.OKC_QUE_ERROR_TEXT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKC.OKC_QUE_ERROR_TEXT_V, object_name:OKC_QUE_ERROR_TEXT_V, status:VALID,
-
APPS.OKC_AQM_PVT SQL Statements
12.1.1
-
VIEW: APPS.OKC_QUE_ERROR_TEXT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKC.OKC_QUE_ERROR_TEXT_V, object_name:OKC_QUE_ERROR_TEXT_V, status:VALID,
-
APPS.OKC_AQM_PVT SQL Statements
12.2.2
-
VIEW: APPS.OKC_AQMSGSTACKS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKC.OKC_AQMSGSTACKS_V, object_name:OKC_AQMSGSTACKS_V, status:VALID,
-
VIEW: APPS.OKC_AQMSGSTACKS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKC.OKC_AQMSGSTACKS_V, object_name:OKC_AQMSGSTACKS_V, status:VALID,
-
Table: OKC_AQMSGSTACKS
12.1.1
owner:OKC, object_type:TABLE, fnd_design_data:OKC.OKC_AQMSGSTACKS, object_name:OKC_AQMSGSTACKS, status:VALID, product: OKC - Contracts Core , description: This holds details of the message stack for errors reported from process(es) subscribing to an AQ. , implementation_dba_data: OKC.OKC_AQMSGSTACKS ,
-
Table: OKC_AQMSGSTACKS
12.2.2
owner:OKC, object_type:TABLE, fnd_design_data:OKC.OKC_AQMSGSTACKS, object_name:OKC_AQMSGSTACKS, status:VALID, product: OKC - Contracts Core , description: This holds details of the message stack for errors reported from process(es) subscribing to an AQ. , implementation_dba_data: OKC.OKC_AQMSGSTACKS ,
-
PACKAGE: APPS.OKC_AQM_PVT
12.2.2
-
PACKAGE: APPS.OKC_AQM_PVT
12.1.1
-
PACKAGE BODY: APPS.OKC_AQ_WRITE_ERROR_PVT
12.1.1
-
PACKAGE BODY: APPS.OKC_AQ_WRITE_ERROR_PVT
12.2.2
-
PACKAGE BODY: APPS.OKC_AQM_PVT
12.1.1
-
PACKAGE BODY: APPS.OKC_AQM_PVT
12.2.2
-
APPS.OKC_AQM_PVT dependencies on OKC_AQMSGSTACKS
12.2.2
-
APPS.OKC_AQM_PVT dependencies on OKC_AQMSGSTACKS
12.1.1
-
APPS.OKC_AQM_PVT dependencies on OKC_API
12.2.2
-
APPS.OKC_AQ_WRITE_ERROR_PVT dependencies on FND_MSG_PUB
12.2.2
-
APPS.OKC_AQ_WRITE_ERROR_PVT dependencies on FND_MSG_PUB
12.1.1
-
APPS.OKC_AQ_WRITE_ERROR_PVT dependencies on FND_API
12.1.1
-
APPS.OKC_AQ_WRITE_ERROR_PVT dependencies on FND_API
12.2.2
-
APPS.OKC_AQM_PVT dependencies on OKC_AQMSGSTACKS_V
12.1.1
-
APPS.OKC_AQM_PVT dependencies on OKC_API
12.1.1
-
APPS.OKC_AQM_PVT dependencies on OKC_AQMSGSTACKS_V
12.2.2
-
APPS.OKC_AQ_WRITE_ERROR_PVT dependencies on OKC_AQERRMSG_PUB
12.1.1
-
APPS.OKC_AQ_WRITE_ERROR_PVT dependencies on OKC_AQERRMSG_PUB
12.2.2
-
APPS.OKC_AQM_PVT dependencies on OKC_AQMSGSTACKS
12.2.2
-
APPS.OKC_AQM_PVT dependencies on OKC_AQMSGSTACKS
12.1.1
-
PACKAGE BODY: APPS.OKC_AQERRMSG_PUB
12.1.1
-
PACKAGE BODY: APPS.OKC_AQERRMSG_PUB
12.2.2
-
APPS.OKC_AQM_PVT dependencies on OKC_API
12.2.2
-
APPS.OKC_AQM_PVT dependencies on OKC_API
12.1.1
-
eTRM - OKC Tables and Views
12.1.1
description: Intersection entity between templates and rules. ,
-
eTRM - OKC Tables and Views
12.2.2
description: Intersection entity between rules and templates ,
-
eTRM - OKC Tables and Views
12.1.1
description: Intersection entity between templates and rules. ,
-
eTRM - OKC Tables and Views
12.2.2
description: Intersection entity between rules and templates ,