Search Results inv_lines




Overview

The view APPS.OKL_BPD_INVEST_TRX_SUM_LN_UV is an Oracle E-Business Suite reporting object used within the Oracle Lease and Finance Management (OKL) module. It presents a consolidated, line-level summary of investor-related transactions originating from Oracle Receivables. The suffix convention (_UV) indicates a user-facing view typically consumed by Oracle Business Intelligence (OBIEE) reports, Oracle BI Publisher templates, or custom PL/SQL reporting against investor agreement billing data.

The view combines invoice header attributes, investor identification details, payment scheduling information, and individual receivable line details into a single flattened result set. It is scoped specifically to transactions whose INTERFACE_HEADER_CONTEXT equals 'OKL_INVESTOR', meaning it isolates investor-created invoices generated through the lease investor agreement process. This makes it a specialised reporting vehicle rather than a general AR transaction query — the user searching for "inv_lines" is likely looking at how RA_CUSTOMER_TRX_LINES_ALL data surfaces inside this investor reporting context.

Underlying Base Objects

The view is defined across the following documented base objects and synonyms owned or referenced by APPS:

Header-to-line joins are performed on CUSTOMER_TRX_ID, and header-to-schedule joins likewise ensure a single amount due per invoice line grouping.

Key Columns

Common Use Cases and Queries

Typical usage includes investor billing reconciliation, aged balance reporting by investor agreement, and drill-down from a summary report to invoice lines. A representative query:

  • SELECT invoice_number, investor_name, line_number, line_type, invoice_line_amount FROM okl_bpd_invest_trx_sum_ln_uv WHERE investor_agreement = :agreement ORDER BY invoice_number, line_number;
  • SELECT investor_name, SUM(invoice_amount) FROM okl_bpd_invest_trx_sum_ln_uv GROUP BY investor_name;
  • SELECT invoice_number, balance FROM okl_bpd_invest_trx_sum_ln_uv WHERE balance > 0;

Because amounts are pre-formatted by OKL_ACCOUNTING_UTIL.FORMAT_AMOUNT, the columns are suitable for direct display rather than numeric aggregation without conversion.