Search Results line_tax_amount




Overview

APPS.OKL_RCPT_INVOICE_LINES_UV is a reporting view in Oracle E-Business Suite Release 12.1.1 and 12.2.2 that consolidates Accounts Receivable (AR) invoice and invoice-line data originating from Oracle Lease and Finance Management (OKL) contract and manual receipt transactions. It presents a unified, query-friendly projection of invoice header and line attributes joined to lease contract headers and transaction quotes, allowing downstream reporting, reconciliation, and integration processes to retrieve receipt-related invoice line details without navigating the raw transactional schema directly.

The view is particularly relevant to flows associated with the OKL_MANUAL interface header and line contexts, which represent manually entered lease invoice transactions, alongside the OKL_CONTRACTS context used for contract-generated invoices. By exposing both invoice number and line-level identifiers together with balances, tax amounts, and contract linkage, the view supports reconciliation between AR transactions and the lease management subledger.

Underlying Base Objects

The view is defined over a set of AR and OKL base tables and synonyms, joined on invoice, line, and contract identifiers. The documented objects include:

Joins are established between RA_CUSTOMER_TRX_ALL and RA_CUSTOMER_TRX_LINES_ALL on CUSTOMER_TRX_ID, and between the invoice and AR_PAYMENT_SCHEDULES_ALL on the same key. OKL-specific links bridge AR lines back to lease contract and stream detail via KHR_ID, KLE_ID, and STY_ID.

Key Columns

Common Use Cases and Queries

Typical use cases include reporting on outstanding lease invoice lines, reconciling manually entered (OKL_MANUAL) invoices against contract-generated invoices, and extracting line-level balances for cash application analytics.

  • Identify remaining balances by contract: SELECT contract_number, invoice_number, line_balance, tax_balance FROM okl_rcpt_invoice_lines_uv ORDER BY contract_number;
  • List invoices tied to a specific customer: SELECT invoice_number, invoice_date, amount_due_remaining FROM okl_rcpt_invoice_lines_uv WHERE bill_to_customer_id = :p_customer_id;
  • Reconcile stream-level detail: SELECT invoice_number, stream_type, asset_number FROM okl_rcpt_invoice_lines_uv WHERE sty_id IS NOT NULL;

The view is read-only and can be safely joined to other OKL reporting views for consolidated analysis.