Results for “ar_late_charge_doc_gt”

36 results




AI-generated from documented ETRM metadata — verify critical details on the linked pages.

Overview

AR_LATE_CHARGE_DOC_GT is an Oracle Receivables (AR) schema table that functions as a global temporary table (indicated by the _GT suffix) used during the late charge and interest calculation and document generation process. It stores the intermediate and staged results of late charge (interest) computations before those charges are converted into Receivables transactions and accounting entries. In Oracle EBS 12.1.1 and 12.2.2, this table supports the Create Late Charge documents workflow, where outstanding balances on overdue transactions are evaluated against late charge terms and an interest amount is calculated, validated, and ultimately posted.

From a heuristic Data Vault modeling perspective, the mined FK structure places this object as a standalone construct — it is a staging/working table rather than a durable hub, link, or satellite. Its transient nature reflects its purpose: it holds document-level rows keyed by INTEREST_HEADER_ID, INTEREST_LINE_ID, and INTEREST_BATCH_ID while the late charge batch is being processed.

Key Information Stored

The table contains 38 documented columns. The most significant include:

Foreign keys to the interest, transaction type, legal entity, and receivables activity tables serve as the principal business-key candidates; INTEREST_HEADER_ID combined with INTEREST_LINE_ID typically distinguishes each working row.

Common Use Cases and Queries

Principal use cases include diagnosing failed late charge generation, auditing calculated interest, and reporting on late charges by customer or legal entity. A representative query retrieves processing errors for a batch:

  • SELECT interest_header_id, customer_id, execution_status, hdr_err_msg, line_err_msg FROM ar_late_charge_doc_gt WHERE execution_status = 'ERROR';
  • Join to AR_INTEREST_HEADERS_ALL and AR_INTEREST_LINES_ALL on the matching IDs to reconcile computed interest against source interest lines.
  • Aggregate INTEREST_CHARGED by ORG_ID or LEGAL_ENTITY_ID for late charge reporting.
  • Join to RA_CUST_TRX_TYPES_ALL and AR_RECEIVABLES_TRX_ALL to validate the document type and receivables activity assigned before posting.

Because this is a global temporary table, rows are session-scoped and generally purged after the concurrent program completes, so queries are intended for real-time monitoring and troubleshooting rather than historical reporting.

Related Objects

  • AR_INTEREST_HEADERS_ALL — joined on INTEREST_HEADER_ID; parent interest header.
  • AR_INTEREST_LINES_ALL — joined on INTEREST_LINE_ID; interest line details.
  • AR_INTEREST_BATCHES_ALL — joined on INTEREST_BATCH_ID; batch definition.
  • RA_CUST_TRX_TYPES_ALL — joined on CUST_TRX_TYPE_ID; transaction type for the charge document.
  • FV_LEGAL_ENTITIES — joined on LEGAL_ENTITY_ID; legal entity and accounting context.
  • AR_RECEIVABLES_TRX_ALL — joined on RECEIVABLES_TRX_ID; receivables activity mapping.

These relationships support the Create Late Charge concurrent program and the AutoInvoice import of generated documents into RA_CUSTOMER_TRX_ALL.