Search Results ap_check_transmissions
Overview
The AP_CHECK_TRANSMISSIONS table is a temporary data structure within the Oracle E-Business Suite Payables (AP) module. Its primary role is to act as a staging area for payment information during the critical process of posting payment transactions to the General Ledger (GL). As a temporary table, it is designed to hold data for the duration of a specific posting run or interface process, facilitating the accurate and efficient transfer of summarized payment accounting entries from the subledger (Payables) to the central ledger. The metadata explicitly notes it is "Not implemented in this database," which typically indicates it is a seeded, read-only object used by Oracle's internal posting engines and is not intended for direct transactional data storage by customizations or user processes.
Key Information Stored
While the provided metadata does not list the full column structure, the documented foreign key relationships reveal several critical data points the table manages to link payment data to the General Ledger. The key columns include JE_BATCH_ID, which links to the GL_JE_BATCHES table to associate the payment data with a specific journal entry batch. The JE_HEADER_ID links to GL_JE_HEADERS, identifying the specific journal entry within that batch. The SET_OF_BOOKS_ID column, referencing GL_SETS_OF_BOOKS, is crucial for multi-ledger environments, ensuring payments are posted to the correct accounting ledger. Finally, CURRENCY_CODE, linked to FND_CURRENCIES, stores the currency of the payment amounts being transmitted. The table's content would typically include summarized accounting lines (debits and credits) for payments ready for GL creation.
Common Use Cases and Queries
Direct interaction with this table by functional users or custom reports is uncommon, as it is an internal interface table. Its primary use case is the automated "Transfer to General Ledger" process within Payables, which populates, uses, and then clears this table. Administrators or support personnel might query it diagnostically to investigate stalled or failed posting runs. A sample query to check for active data in the table during a posting issue would be:
- SELECT SET_OF_BOOKS_ID, JE_BATCH_ID, COUNT(*)
- FROM AP_CHECK_TRANSMISSIONS
- GROUP BY SET_OF_BOOKS_ID, JE_BATCH_ID;
This can help identify if data is stuck in the interface. Any custom programming should generally avoid inserting or modifying data in this table directly, relying instead on the standard Payables posting APIs.
Related Objects
The AP_CHECK_TRANSMISSIONS table is centrally connected to the General Ledger infrastructure through its foreign keys. The primary related objects are the core GL interface tables: GL_JE_BATCHES and GL_JE_HEADERS, which receive the finalized journal entries. Its relationship to GL_SETS_OF_BOOKS anchors the data to a specific ledger, and the link to FND_CURRENCIES ensures currency validation. In the Payables module, this table is populated by the payment posting engine, which sources its data from underlying payment tables such as AP_CHECKS and AP_INVOICE_PAYMENTS after payment completion. It is part of the data flow between the AP_SUPPLIERS and AP_INVOICES subledger details and the final GL_JE_LINES.
-
Table: AP_CHECK_TRANSMISSIONS
12.2.2
product: AP - Payables , description: Temporary table containing payment information used for posting to the general ledger , implementation_dba_data: Not implemented in this database ,
-
Table: AP_CHECK_TRANSMISSIONS
12.1.1
product: AP - Payables , description: Temporary table containing payment information used for posting to the general ledger , implementation_dba_data: Not implemented in this database ,
-
Table: GL_JE_HEADERS
12.1.1
owner:GL, object_type:TABLE, fnd_design_data:SQLGL.GL_JE_HEADERS, object_name:GL_JE_HEADERS, status:VALID, product: GL - General Ledger , description: Journal entry headers , implementation_dba_data: GL.GL_JE_HEADERS ,
-
Table: GL_JE_HEADERS
12.2.2
owner:GL, object_type:TABLE, fnd_design_data:SQLGL.GL_JE_HEADERS, object_name:GL_JE_HEADERS, status:VALID, product: GL - General Ledger , description: Journal entry headers , implementation_dba_data: GL.GL_JE_HEADERS ,
-
12.1.1 FND Design Data
12.1.1
-
Table: GL_JE_BATCHES
12.2.2
owner:GL, object_type:TABLE, fnd_design_data:SQLGL.GL_JE_BATCHES, object_name:GL_JE_BATCHES, status:VALID, product: GL - General Ledger , description: Journal entry batches , implementation_dba_data: GL.GL_JE_BATCHES ,
-
Table: GL_SETS_OF_BOOKS
12.2.2
product: GL - General Ledger , description: Set of books definitions , implementation_dba_data: Not implemented in this database ,
-
Table: GL_JE_BATCHES
12.1.1
owner:GL, object_type:TABLE, fnd_design_data:SQLGL.GL_JE_BATCHES, object_name:GL_JE_BATCHES, status:VALID, product: GL - General Ledger , description: Journal entry batches , implementation_dba_data: GL.GL_JE_BATCHES ,
-
Table: GL_SETS_OF_BOOKS
12.1.1
product: GL - General Ledger , description: Set of books definitions , implementation_dba_data: Not implemented in this database ,
-
12.2.2 FND Design Data
12.2.2
-
Table: FND_CURRENCIES
12.1.1
owner:APPLSYS, object_type:TABLE, fnd_design_data:FND.FND_CURRENCIES, object_name:FND_CURRENCIES, status:VALID, product: FND - Application Object Library , description: Currencies enabled for use at your site , implementation_dba_data: APPLSYS.FND_CURRENCIES ,
-
Table: FND_CURRENCIES
12.2.2
owner:APPLSYS, object_type:TABLE, fnd_design_data:FND.FND_CURRENCIES, object_name:FND_CURRENCIES, status:VALID, product: FND - Application Object Library , description: Currencies enabled for use at your site , implementation_dba_data: APPLSYS.FND_CURRENCIES ,