Search Results okl_trx_ar_invoices_b
Overview
The table OKL_TRX_AR_INVOICES_B is a core transactional entity within the Oracle E-Business Suite (EBS) module OKL (Leasing and Finance Management). It serves as the central repository for all leasing and finance transactions that generate invoices in the Oracle Receivables (AR) module. Its primary role is to act as the bridge between the specialized leasing operations managed in OKL and the standard financial processing handled by AR. Every record in this table represents a distinct business event, such as a lease booking, fee assessment, or adjustment, that results in a billable invoice to a customer. The table's structure, including its numerous foreign key relationships, is designed to maintain the integrity and traceability of these financial transactions from their source contract through to the final receivable.
Key Information Stored
The table's primary key is the ID column, uniquely identifying each transaction that generates an AR invoice. The most critical data points are the foreign key columns that link the invoice transaction to its originating source documents and define its context. These include KHR_ID, linking to the lease contract header in OKL_K_HEADERS; TRY_ID, identifying the transaction type from OKL_TRX_TYPES_B; and QTE_ID and SVF_ID, referencing transaction quotes and service fees, respectively. The TAI_ID_REVERSES column supports corrective accounting by pointing to the original transaction that a given record reverses. Additional links to insurance policies (IPY_ID) and related AP invoices (TAP_ID) provide a comprehensive financial picture.
Common Use Cases and Queries
This table is fundamental for reconciliation, audit, and custom reporting. A common use case involves tracing all invoices generated for a specific lease contract to verify billing completeness. Another critical scenario is identifying reversal transactions for audit trails. Sample queries often join this table with related leasing and Receivables interfaces.
- Find invoices for a lease:
SELECT tai.id, tai.khr_id, kh.contract_number FROM okl_trx_ar_invoices_b tai, okl_k_headers kh WHERE tai.khr_id = kh.id AND kh.contract_number = 'L-10001'; - List transactions by type:
SELECT tt.name, COUNT(tai.id) FROM okl_trx_ar_invoices_b tai, okl_trx_types_b tt WHERE tai.try_id = tt.id GROUP BY tt.name; - Identify reversal pairs:
SELECT original.id AS orig_id, reversal.id AS rev_id FROM okl_trx_ar_invoices_b original, okl_trx_ar_invoices_b reversal WHERE reversal.tai_id_reverses = original.id;
Related Objects
OKL_TRX_AR_INVOICES_B is a central hub with extensive relationships. It is a parent table to line-level details stored in OKL_TXL_AR_INV_LNS_B and to records in OKL_CURE_PAYMENT_LINES. As documented, it is primarily a child table, referencing key master data: lease contracts (OKL_K_HEADERS), transaction types (OKL_TRX_TYPES_B), and source documents like quotes (OKL_TRX_QUOTES_ALL_B) and service fees (OKL_SERVICE_FEES_ALL_B). The self-referencing foreign key on TAI_ID_REVERSES allows for transaction reversals within the same table. For complete invoice data, this base table is typically accessed via its associated entity object or through the standard Receivables interface tables populated by the OKL invoice generation process.
-
Table: OKL_TRX_AR_INVOICES_B
12.2.2
owner:OKL, object_type:TABLE, fnd_design_data:OKL.OKL_TRX_AR_INVOICES_B, object_name:OKL_TRX_AR_INVOICES_B, status:VALID, product: OKL - Lease and Finance Management , description: Collection of all OKL transaction which generate Receivables invoices , implementation_dba_data: OKL.OKL_TRX_AR_INVOICES_B ,
-
Table: OKL_TRX_AR_INVOICES_TL
12.2.2
owner:OKL, object_type:TABLE, fnd_design_data:OKL.OKL_TRX_AR_INVOICES_TL, object_name:OKL_TRX_AR_INVOICES_TL, status:VALID, product: OKL - Lease and Finance Management , description: Translatable columns from OKL_TRX_AR_INVOICES_B, per MLS standards , implementation_dba_data: OKL.OKL_TRX_AR_INVOICES_TL ,
-
Table: OKL_SERVICE_FEES_ALL_B
12.2.2
owner:OKL, object_type:TABLE, fnd_design_data:OKL.OKL_SERVICE_FEES_ALL_B, object_name:OKL_SERVICE_FEES_ALL_B, status:VALID, product: OKL - Lease and Finance Management , description: The fee charged for service rendered. , implementation_dba_data: OKL.OKL_SERVICE_FEES_ALL_B ,
-
Table: OKL_CURE_PAYMENT_LNS_ALL
12.2.2
owner:OKL, object_type:TABLE, fnd_design_data:OKL.OKL_CURE_PAYMENT_LNS_ALL, object_name:OKL_CURE_PAYMENT_LNS_ALL, status:VALID, product: OKL - Lease and Finance Management , description: Stores line level information for OKL CURE PAYMENTS , implementation_dba_data: OKL.OKL_CURE_PAYMENT_LNS_ALL ,
-
Table: OKL_CURE_PAYMENT_LINES
12.2.2
product: OKL - Lease and Finance Management , description: Stores line level information for OKL CURE PAYMENTS , implementation_dba_data: Not implemented in this database ,
-
View: OKL_IN_RAMOUNT_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_IN_RAMOUNT_UV, object_name:OKL_IN_RAMOUNT_UV, status:VALID, product: OKL - Lease and Finance Management , implementation_dba_data: APPS.OKL_IN_RAMOUNT_UV ,
-
View: OKL_CS_VARIABLE_INT_RATE_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_CS_VARIABLE_INT_RATE_UV, object_name:OKL_CS_VARIABLE_INT_RATE_UV, status:VALID, product: OKL - Lease and Finance Management , description: Variable Interest Rate Information , implementation_dba_data: APPS.OKL_CS_VARIABLE_INT_RATE_UV ,
-
Table: OKL_TRX_QUOTES_ALL_B
12.2.2
owner:OKL, object_type:TABLE, fnd_design_data:OKL.OKL_TRX_QUOTES_ALL_B, object_name:OKL_TRX_QUOTES_ALL_B, status:VALID, product: OKL - Lease and Finance Management , description: Termination, restructure or repurchase quotes , implementation_dba_data: OKL.OKL_TRX_QUOTES_ALL_B ,
-
Table: OKL_TXL_AR_INV_LNS_B
12.2.2
owner:OKL, object_type:TABLE, fnd_design_data:OKL.OKL_TXL_AR_INV_LNS_B, object_name:OKL_TXL_AR_INV_LNS_B, status:VALID, product: OKL - Lease and Finance Management , description: Transaction lines to be included into Receivables invoices , implementation_dba_data: OKL.OKL_TXL_AR_INV_LNS_B ,
-
Table: OKL_INS_POLICIES_ALL_B
12.2.2
owner:OKL, object_type:TABLE, fnd_design_data:OKL.OKL_INS_POLICIES_ALL_B, object_name:OKL_INS_POLICIES_ALL_B, status:VALID, product: OKL - Lease and Finance Management , description: Insurance policies and quotes , implementation_dba_data: OKL.OKL_INS_POLICIES_ALL_B ,
-
Table: OKL_TRX_AP_INVOICES_B
12.2.2
product: OKL - Lease and Finance Management , description: Collection of all OKL transaction which generate Payables invoices , implementation_dba_data: Not implemented in this database ,
-
View: OKL_BPD_MANUAL_TRX_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_BPD_MANUAL_TRX_UV, object_name:OKL_BPD_MANUAL_TRX_UV, status:VALID, product: OKL - Lease and Finance Management , implementation_dba_data: APPS.OKL_BPD_MANUAL_TRX_UV ,
-
Table: OKL_TRX_TYPES_B
12.2.2
owner:OKL, object_type:TABLE, fnd_design_data:OKL.OKL_TRX_TYPES_B, object_name:OKL_TRX_TYPES_B, status:VALID, product: OKL - Lease and Finance Management , description: Transaction types , implementation_dba_data: OKL.OKL_TRX_TYPES_B ,
-
View: OKL_CS_CREDIT_MEMO_REQUEST_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_CS_CREDIT_MEMO_REQUEST_UV, object_name:OKL_CS_CREDIT_MEMO_REQUEST_UV, status:VALID, product: OKL - Lease and Finance Management , description: List of Credit memo Requests , implementation_dba_data: APPS.OKL_CS_CREDIT_MEMO_REQUEST_UV ,
-
Table: OKL_K_HEADERS
12.2.2
owner:OKL, object_type:TABLE, fnd_design_data:OKL.OKL_K_HEADERS, object_name:OKL_K_HEADERS, status:VALID, product: OKL - Lease and Finance Management , description: Oracle Lease Management shadow table for Oracle Contracts Core header tables, OKC_K_HEADERS_B and OKC_K_HEADERS_TL. OKL_K_HEADERS contains attributes that relate to contracts created in OKL and do not fit into the standard header tables O , implementation_dba_data: OKL.OKL_K_HEADERS ,
-
View: OKL_BPD_TLD_AR_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_BPD_TLD_AR_LINES_V, object_name:OKL_BPD_TLD_AR_LINES_V, status:VALID, product: OKL - Lease and Finance Management , description: View on TLD and receivables lines for variable rate and bill status API and remarketing view. , implementation_dba_data: APPS.OKL_BPD_TLD_AR_LINES_V ,
-
View: OKL_CURE_INVOICE_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_CURE_INVOICE_UV, object_name:OKL_CURE_INVOICE_UV, status:VALID, product: OKL - Lease and Finance Management , description: View for cure requests , implementation_dba_data: APPS.OKL_CURE_INVOICE_UV ,
-
View: OKL_CS_LC_ACCOUNT_TAB_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_CS_LC_ACCOUNT_TAB_UV, object_name:OKL_CS_LC_ACCOUNT_TAB_UV, status:VALID, product: OKL - Lease and Finance Management , description: View for Lease center accounts tab , implementation_dba_data: APPS.OKL_CS_LC_ACCOUNT_TAB_UV ,
-
View: OKL_TRX_AR_INVOICES_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_TRX_AR_INVOICES_UV, object_name:OKL_TRX_AR_INVOICES_UV, status:VALID, product: OKL - Lease and Finance Management , implementation_dba_data: APPS.OKL_TRX_AR_INVOICES_UV ,
-
View: OKL_TRX_AR_INVOICES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_TRX_AR_INVOICES_V, object_name:OKL_TRX_AR_INVOICES_V, status:VALID, product: OKL - Lease and Finance Management , description: Collection of all OKL transaction which generate Receivables invoices , implementation_dba_data: APPS.OKL_TRX_AR_INVOICES_V ,
-
View: OKL_RCPT_INVOICE_LINES_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_RCPT_INVOICE_LINES_UV, object_name:OKL_RCPT_INVOICE_LINES_UV, status:VALID, product: OKL - Lease and Finance Management , description: This view is used to fetch the open invoice lines for a contract or investor agreement or termination quote or non OKL invoices. , implementation_dba_data: APPS.OKL_RCPT_INVOICE_LINES_UV ,
-
View: OKL_BPD_AR_HEADER_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_BPD_AR_HEADER_V, object_name:OKL_BPD_AR_HEADER_V, status:VALID, product: OKL - Lease and Finance Management , description: View for Operations, Transactions search page , implementation_dba_data: APPS.OKL_BPD_AR_HEADER_V ,
-
View: OKL_CS_INVCM_TAX_SUM_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_CS_INVCM_TAX_SUM_UV, object_name:OKL_CS_INVCM_TAX_SUM_UV, status:VALID, product: OKL - Lease and Finance Management , description: This view displays Tax Summary for Invoice or Credit Memo. , implementation_dba_data: APPS.OKL_CS_INVCM_TAX_SUM_UV ,