Search Results je_no_gei_messages
Overview
The JE_NO_GEI_MESSAGES table is a core data repository within the European Localizations module of Oracle E-Business Suite (EBS) releases 12.1.1 and 12.2.2. Specifically, it is part of the JE (Journal Entry) product family, which handles financial accounting. As per the official ETRM documentation, this table's primary function is to store messages received from FIN (Financials). It is a critical component for managing the data flow and communication between localized financial reporting processes, particularly in the European context, and the core financials engine. Its status is documented as VALID, confirming its active role in the application's data model.
Key Information Stored
While the provided metadata does not list specific column definitions, the documented foreign key relationships and description provide strong indicators of the key data elements. The central column is ORDER_NUMBER, which acts as a foreign key linking individual messages to their associated control records. Each row in this table represents a discrete message transaction from the financial system. Typical data stored would include the message content or identifier, a status flag (e.g., received, processed, error), timestamps for when the message was received and processed, and potentially a message type or code to categorize the nature of the communication from FIN.
Common Use Cases and Queries
This table is primarily used for auditing, troubleshooting, and monitoring the integration between localized journal entry processes and the core financial system. Common operational and reporting scenarios include reconciling message traffic and investigating processing failures. A typical query would join to control tables to get the full context of a message batch.
- Auditing Received Messages:
SELECT ORDER_NUMBER, MESSAGE_DATE, MESSAGE_TEXT FROM JE.JE_NO_GEI_MESSAGES WHERE TRUNC(MESSAGE_DATE) = TRUNC(SYSDATE) ORDER BY MESSAGE_DATE DESC; - Investigating Messages for a Specific Control Batch:
SELECT m.* FROM JE.JE_NO_GEI_MESSAGES m, JE.JE_NO_GEI_CONTROLS c WHERE m.ORDER_NUMBER = c.ORDER_NUMBER AND c.BATCH_NAME = '&BATCH_NAME'; - Identifying Unprocessed or Erroneous Messages: Queries would filter on a STATUS column (inferred) to find messages pending action or those that failed processing, enabling support teams to take corrective measures.
Related Objects
The ETRM metadata explicitly defines two foreign key relationships for this table, establishing its place in the data hierarchy. Both relationships use the ORDER_NUMBER column as the join key.
- JE_NO_GEI_CONTROLS: This is a primary parent table. The relationship (JE_NO_GEI_MESSAGES.ORDER_NUMBER → JE_NO_GEI_CONTROLS) indicates that messages are grouped under a specific control header or batch, which manages the overall process.
- JE_NO_GEI_CONTROLAS: This table is also a parent referenced by the same ORDER_NUMBER column. The suffix "AS" suggests it may be an auxiliary or summary control table, potentially storing additional attributes or aggregated data for the control process to which the messages belong.
These relationships confirm that JE_NO_GEI_MESSAGES is a child table, storing transactional message details that roll up to master control records in the JE_NO_GEI_CONTROLS and JE_NO_GEI_CONTROLAS tables.
-
Table: JE_NO_GEI_MESSAGES
12.1.1
owner:JE, object_type:TABLE, fnd_design_data:JE.JE_NO_GEI_MESSAGES, object_name:JE_NO_GEI_MESSAGES, status:VALID, product: JE - European Localizations , description: Table Stores messages recieved from FIN , implementation_dba_data: JE.JE_NO_GEI_MESSAGES ,
-
Table: JE_NO_GEI_MESSAGES
12.2.2
owner:JE, object_type:TABLE, fnd_design_data:JE.JE_NO_GEI_MESSAGES, object_name:JE_NO_GEI_MESSAGES, status:VALID, product: JE - European Localizations , description: Table Stores messages recieved from FIN , implementation_dba_data: JE.JE_NO_GEI_MESSAGES ,
-
Table: JE_NO_GEI_CONTROLS
12.2.2
owner:JE, object_type:TABLE, fnd_design_data:JE.JE_NO_GEI_CONTROLS, object_name:JE_NO_GEI_CONTROLS, status:VALID, product: JE - European Localizations , description: Table Stores info about ordering and recieving files related to S-Report. , implementation_dba_data: JE.JE_NO_GEI_CONTROLS ,
-
Table: JE_NO_GEI_CONTROLAS
12.2.2
owner:JE, object_type:TABLE, fnd_design_data:JE.JE_NO_GEI_CONTROLAS, object_name:JE_NO_GEI_CONTROLAS, status:VALID, product: JE - European Localizations , description: Table Stores info about ordering and recieving files related to A-Report. The Order nummber for the sent file and also the ones that is recieved from FIN , implementation_dba_data: JE.JE_NO_GEI_CONTROLAS ,