Search Results je_no_gei_controlas




Overview

The JE_NO_GEI_CONTROLAS table is a core data object within the Oracle E-Business Suite (EBS) 12.1.1 and 12.2.2, specifically for the European Localizations module (JE). Its primary function is to serve as a control and audit mechanism for the electronic exchange of A-Report files. The A-Report is a critical statutory document in several European countries, used for detailed reporting of financial transactions to tax authorities. This table tracks the ordering and receiving lifecycle of these electronic files between the EBS instance and the external Financial (FIN) authority's system, ensuring a verifiable audit trail for compliance purposes.

Key Information Stored

The central piece of information stored is the ORDER_NUMBER, which uniquely identifies each file transmission or reception event and serves as the table's primary key. While the provided metadata does not list all columns, based on its described purpose, the table typically stores metadata such as the file type (sent or received), the date and time of the order or receipt, the status of the transaction, and potentially identifiers linking to the specific A-Report data or the communication session. The ORDER_NUMBER acts as a universal reference point, connecting the control record in this table to the actual message content or file details stored elsewhere.

Common Use Cases and Queries

The primary use case is monitoring and troubleshooting the A-Report submission process. Administrators can query this table to verify successful file transmissions, identify failed or pending submissions, and reconcile sent files with official acknowledgments received from the tax authority. Common reporting needs include generating a list of all A-Reports submitted within a fiscal period or identifying orders that were sent but for which a confirmation receipt has not been recorded. A fundamental query pattern involves joining this control table with the related messages table to get a complete view of a transaction.

SELECT ctrl.order_number, ctrl.creation_date, msg.message_type, msg.status
FROM je_no_gei_controlas ctrl,
     je_no_gei_messages msg
WHERE ctrl.order_number = msg.order_number
AND ctrl.creation_date > SYSDATE - 30;

Related Objects

The table has a direct and documented foreign key relationship, defining its integration within the EBS data model. The primary key column ORDER_NUMBER is referenced by the JE_NO_GEI_MESSAGES table. This relationship indicates that for every control record in JE_NO_GEI_CONTROLAS, there may be one or more detailed message records in JE_NO_GEI_MESSAGES that contain the substantive data or payload of the A-Report file. This design separates control metadata from the potentially large or complex message content.

  • JE_NO_GEI_MESSAGES: This table references JE_NO_GEI_CONTROLAS via the foreign key column ORDER_NUMBER (JOIN: JE_NO_GEI_MESSAGES.ORDER_NUMBER = JE_NO_GEI_CONTROLAS.ORDER_NUMBER). It stores the detailed message content associated with the file transfer order.