Search Results ar_ccid_corrections_pk
Overview
The AR_CCID_CORRECTIONS_ALL table is a critical diagnostic and correction repository within Oracle E-Business Suite Receivables (AR) modules, specifically versions 12.1.1 and 12.2.2. Its primary role is to serve as a holding area for individual General Ledger (GL) distribution lines that have been flagged for containing invalid code combinations, meaning the GL account (CCID) is not active or is otherwise invalid for the transaction's context. This table is central to the process of identifying and resolving accounting errors that prevent the successful posting of transactions to the General Ledger, ensuring data integrity before financial data transfer.
Key Information Stored
The table stores a record for each problematic distribution line, keyed by the source transaction's table and the specific distribution identifier. While the full column list is not detailed in the provided metadata, the structure implies the presence of core attributes. The primary key, AR_CCID_CORRECTIONS_PK, is defined on the combination of SOURCE_TABLE and DISTRIBUTION_ID. Typical columns would include identifiers for the original transaction (such as CUSTOMER_TRX_ID, ADJUSTMENT_ID, or CASH_RECEIPT_ID), the invalid CODE_COMBINATION_ID, and fields indicating the correction status and the nature of the error. The ALL suffix indicates it is a multi-organization table, containing data for all operating units.
Common Use Cases and Queries
The primary use case is troubleshooting and fixing accounting errors during the transfer of Receivables transactions to the General Ledger via the "Journal Import" process. Administrators query this table to generate reports of invalid distributions. A common diagnostic query involves joining to transaction tables to get full details:
- Identifying all uncorrected errors for a specific operating unit:
SELECT * FROM ar_ccid_corrections_all corr WHERE corr.status = 'NEW' AND corr.org_id = :org_id; - Linking corrections to the original invoice lines for analysis:
SELECT corr.*, lines.line_number FROM ar_ccid_corrections_all corr, ra_customer_trx_lines_all lines WHERE corr.source_table = 'RA_CUSTOMER_TRX_LINES' AND corr.distribution_id = lines.customer_trx_line_id;
After correcting the GL account mapping in the source transaction (e.g., via AutoAccounting rules or manual override), the corresponding record in this table is typically purged or marked as processed.
Related Objects
This table has direct foreign key relationships with the source transaction distribution tables it references. As indicated by the primary key structure, it joins to other AR tables on the composite of SOURCE_TABLE and DISTRIBUTION_ID. Key related objects include:
- RA_CUSTOMER_TRX_LINES_ALL: A primary source when DISTRIBUTION_ID corresponds to CUSTOMER_TRX_LINE_ID and SOURCE_TABLE references it.
- AR_ADJUSTMENTS_ALL: For adjustment-related invalid distributions.
- AR_CASH_RECEIPT_HISTORY_ALL: For receipt-related invalid distributions.
- GL_CODE_COMBINATIONS: The target table for validating the corrected CODE_COMBINATION_ID.
The table is integral to the AR accounting workflow and is referenced by standard correction reports and diagnostic scripts within the Oracle EBS application.
-
Table: AR_CCID_CORRECTIONS_ALL
12.1.1
owner:AR, object_type:TABLE, fnd_design_data:AR.AR_CCID_CORRECTIONS_ALL, object_name:AR_CCID_CORRECTIONS_ALL, status:VALID, product: AR - Receivables , description: Individual GL distribution lines that contain invalid code combinations (GL accounts) , implementation_dba_data: AR.AR_CCID_CORRECTIONS_ALL ,
-
Table: AR_CCID_CORRECTIONS_ALL
12.2.2
owner:AR, object_type:TABLE, fnd_design_data:AR.AR_CCID_CORRECTIONS_ALL, object_name:AR_CCID_CORRECTIONS_ALL, status:VALID, product: AR - Receivables , description: Individual GL distribution lines that contain invalid code combinations (GL accounts) , implementation_dba_data: AR.AR_CCID_CORRECTIONS_ALL ,
-
eTRM - AR Tables and Views
12.2.2
description: Territory information ,
-
eTRM - AR Tables and Views
12.1.1
description: Territory information ,
-
eTRM - AR Tables and Views
12.1.1
description: Territory information ,
-
eTRM - AR Tables and Views
12.2.2
description: Territory information ,