Search Results amount_line_items_remaining
Overview
APPS.OKL_BPD_AR_INV_LINES_V is an Oracle E-Business Suite 12.1.1 / 12.2.2 reporting view within the Enterprise Contracts (formerly Oracle Lease and Finance Management / OKL) module. Its name, composed of "BPD" (Billing and Payment Details), "AR," and "INV_LINES," signals its purpose: exposing Accounts Receivable invoice lines generated from contract billing events alongside their originating contract, stream, and transaction detail context. The view is a denormalized read layer that joins Receivables transaction lines to OKL contract and stream tables, primarily serving reporting, analysis, and integration scenarios where users require visibility into invoiced amounts, remaining balances, and payment due dates. Notably, the view does not store data itself; every column is derived at query time from joined base tables or from calls to the OKL_BILLING_UTIL_PVT package. The user search term "amount_line_items_remaining" corresponds directly to a column in this view that quantifies how much of an invoice line's billed amount remains outstanding after applying receipts and credits.
Underlying Base Objects
The view is defined over several documented base objects. RA_CUSTOMER_TRX_LINES_ALL supplies the core Receivables invoice line rows, including quantity invoiced, unit selling price, line number, and the customer_trx_line_id join key. RA_CUSTOMER_TRX_ALL provides the invoice header data, such as transaction number, customer_trx_id, bill-to customer, invoice currency, and org_id. OKL_TXD_AR_LN_DTLS_B holds the OKL transaction detail rows that link contract billing events to AR lines, carrying stream, structure, and late charge/interest assessment flags. OKL_STRM_TYPE_B supplies stream type definitions, while OKL_TXL_AR_INV_LNS_B and AR_PAYMENT_SCHEDULES_ALL contribute additional invoice and scheduling attributes, including APS.DUE_DATE and APS.CLASS. The OKL_BILLING_UTIL_PVT package is invoked inline for the AMOUNT_DUE_REMAINING, AMOUNT_DUE_ORIGINAL, AMOUNT_LINE_ITEMS_REMAINING, and INV_LN_AMT_REMAINING_WOTAX columns, meaning those amounts are computed by PL/SQL logic rather than read directly from a stored column. This design reflects the underlying AR columns having been intentionally commented out in favor of the package-based calculations.
Key Columns
- AMOUNT_LINE_ITEMS_REMAINING — computed via OKL_BILLING_UTIL_PVT.INVOICE_LINE_AMOUNT_REMAINING, the exact column users search for; represents the line-item portion of the invoice still unpaid.
- AMOUNT_DUE_REMAINING / AMOUNT_DUE_ORIGINAL — remaining and original invoice amounts, also package-derived.
- AMOUNT — calculation of QUANTITY_INVOICED multiplied by UNIT_SELLING_PRICE, the gross extended line amount.
- TAX_AMOUNT — subquery summing EXTENDED_AMOUNT from ra_customer_trx_lines_all for linked tax lines.
- CONTRACT_NUMBER / CONTRACT_ID / CONTRACT_LINE_ID — identifiers tying the AR line back to the OKL contract and contract line.
- RECEIVABLES_INVOICE_NUMBER / RECEIVABLES_INVOICE_ID / RECEIVABLES_INVOICE_LINE_ID — AR transaction identifiers.
- DUE_DATE, CURRENCY_CODE, ORG_ID, LINE_NUMBER, LINE_TYPE — supporting attributes for scheduling, currency, multi-org security, and line classification.
Common Use Cases and Queries
Typical uses include contract-to-invoice reconciliation, aged receivables analysis for leased assets, and reports on unapplied or partially applied invoice lines. A sample query retrieving outstanding line balances for a contract:
SELECT CONTRACT_NUMBER, RECEIVABLES_INVOICE_NUMBER, LINE_NUMBER, AMOUNT, AMOUNT_LINE_ITEMS_REMAINING, DUE_DATE FROM APPS.OKL_BPD_AR_INV_LINES_V WHERE CONTRACT_NUMBER = :p_contract ORDER BY DUE_DATE;SELECT RECEIVABLES_INVOICE_NUMBER, SUM(AMOUNT_LINE_ITEMS_REMAINING) AMT_OPEN FROM APPS.OKL_BPD_AR_INV_LINES_V WHERE ORG_ID = :p_org GROUP BY RECEIVABLES_INVOICE_NUMBER HAVING SUM(AMOUNT_LINE_ITEMS_REMAINING) > 0;
Because the remaining-amount columns derive from package functions, performance depends on the volume of lines queried; restricting by ORG_ID, CONTRACT_NUMBER, or DUE_DATE is advisable.
-
VIEW: APPS.OKL_BPD_AR_INV_LINES_V
12.1.1
-
VIEW: APPS.OKL_BPD_AR_INV_LINES_V
12.2.2
-
View: OKL_BPD_AR_INV_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_BPD_AR_INV_LINES_V, object_name:OKL_BPD_AR_INV_LINES_V, status:VALID, product: OKL - Leasing and Finance Management , description: View to display Payable Invoice Line details. , implementation_dba_data: APPS.OKL_BPD_AR_INV_LINES_V ,
-
VIEW: APPS.OKL_CS_BILLINGTRX_UV
12.2.2
-
View: OKL_BPD_AR_INV_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_BPD_AR_INV_LINES_V, object_name:OKL_BPD_AR_INV_LINES_V, status:VALID, product: OKL - Lease and Finance Management , description: View to display Payable Invoice Line details. , implementation_dba_data: APPS.OKL_BPD_AR_INV_LINES_V ,
-
View: OKL_CS_BILLINGTRX_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_CS_BILLINGTRX_UV, object_name:OKL_CS_BILLINGTRX_UV, status:VALID, product: OKL - Leasing and Finance Management , description: Displays transaction-level billing information , implementation_dba_data: APPS.OKL_CS_BILLINGTRX_UV ,
-
VIEW: APPS.OKL_CS_BILLINGTRX_UV
12.1.1
-
View: OKL_BILLING_TRX_ALL_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_BILLING_TRX_ALL_UV, object_name:OKL_BILLING_TRX_ALL_UV, status:VALID, product: OKL - Lease and Finance Management , description: Displays transaction-level billing information , implementation_dba_data: APPS.OKL_BILLING_TRX_ALL_UV ,
-
View: OKL_BILLING_TRX_ALL_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_BILLING_TRX_ALL_UV, object_name:OKL_BILLING_TRX_ALL_UV, status:VALID, product: OKL - Leasing and Finance Management , description: Displays transaction-level billing information , implementation_dba_data: APPS.OKL_BILLING_TRX_ALL_UV ,
-
View: OKL_CS_BILLINGTRX_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_CS_BILLINGTRX_UV, object_name:OKL_CS_BILLINGTRX_UV, status:VALID, product: OKL - Lease and Finance Management , description: Displays transaction-level billing information , implementation_dba_data: APPS.OKL_CS_BILLINGTRX_UV ,
-
VIEW: APPS.OKL_BILLING_TRX_ALL_UV
12.1.1
-
VIEW: APPS.OKL_BILLING_TRX_ALL_UV
12.2.2
-
View: ICX_PANEL_INVOICE_SUM_V
12.2.2
product: ICX - Oracle iProcurement , description: Obsolete , implementation_dba_data: Not implemented in this database ,
-
View: ICX_PANEL_INVOICE_SUM_V
12.1.1
product: ICX - Oracle iProcurement , description: Obsolete , implementation_dba_data: Not implemented in this database ,
-
VIEW: AR.AR_PAYMENT_SCHEDULES_ALL#
12.2.2
-
VIEW: APPS.IEX_CS_BILLINGTRX_UV1
12.1.1
owner:APPS, object_type:VIEW, object_name:IEX_CS_BILLINGTRX_UV1, status:VALID,
-
VIEW: APPS.IEX_CS_BILLINGTRX_UV1
12.2.2
owner:APPS, object_type:VIEW, object_name:IEX_CS_BILLINGTRX_UV1, status:VALID,
-
View: AR_PAYMENT_SCHEDULES_ALL_MRC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_PAYMENT_SCHEDULES_ALL_MRC_V, object_name:AR_PAYMENT_SCHEDULES_ALL_MRC_V, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.AR_PAYMENT_SCHEDULES_ALL_MRC_V ,
-
VIEW: APPS.OKL_CS_BILLINGTRX_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_CS_BILLINGTRX_UV, object_name:OKL_CS_BILLINGTRX_UV, status:VALID,
-
VIEW: APPS.IEX_CS_BILLINGTRX_UV1
12.1.1
-
VIEW: APPS.OKL_CS_BILLINGTRX_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_CS_BILLINGTRX_UV, object_name:OKL_CS_BILLINGTRX_UV, status:VALID,
-
VIEW: APPS.OKL_BILLING_TRX_ALL_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_BILLING_TRX_ALL_UV, object_name:OKL_BILLING_TRX_ALL_UV, status:VALID,
-
View: AR_PAYMENT_SCHEDULES_ALL_MRC_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_PAYMENT_SCHEDULES_ALL_MRC_V, object_name:AR_PAYMENT_SCHEDULES_ALL_MRC_V, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.AR_PAYMENT_SCHEDULES_ALL_MRC_V ,
-
VIEW: APPS.OKL_BILLING_TRX_ALL_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_BILLING_TRX_ALL_UV, object_name:OKL_BILLING_TRX_ALL_UV, status:VALID,
-
VIEW: APPS.AR_PAYMENT_SCHEDULES_ALL_MRC_V
12.1.1
-
VIEW: APPS.IEX_CS_BILLINGTRX_UV1
12.2.2
-
VIEW: APPS.AR_PAYMENT_SCHEDULES_ALL_MRC_V
12.2.2
-
VIEW: APPS.AR_OPEN_TRX_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_OPEN_TRX_V, object_name:AR_OPEN_TRX_V, status:VALID,
-
APPS.OKL_VARIABLE_INT_UTIL_PVT SQL Statements
12.1.1
-
VIEW: APPS.IEX_TRANSACTIONS_QUERY_V
12.1.1
owner:APPS, object_type:VIEW, object_name:IEX_TRANSACTIONS_QUERY_V, status:VALID,
-
VIEW: APPS.AR_OPEN_ITEMS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_OPEN_ITEMS_V, object_name:AR_OPEN_ITEMS_V, status:VALID,
-
VIEW: APPS.OKL_BPD_AR_INV_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_BPD_AR_INV_LINES_V, object_name:OKL_BPD_AR_INV_LINES_V, status:VALID,
-
VIEW: APPS.OKL_BPD_AR_INV_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_BPD_AR_INV_LINES_V, object_name:OKL_BPD_AR_INV_LINES_V, status:VALID,
-
VIEW: APPS.AR_OPEN_ITEMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_OPEN_ITEMS_V, object_name:AR_OPEN_ITEMS_V, status:VALID,
-
View: AR_OPEN_TRX_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_OPEN_TRX_V, object_name:AR_OPEN_TRX_V, status:VALID, product: AR - Receivables , description: (Release 115 Only) , implementation_dba_data: APPS.AR_OPEN_TRX_V ,
-
VIEW: APPS.AR_OPEN_TRX_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_OPEN_TRX_V, object_name:AR_OPEN_TRX_V, status:VALID,
-
VIEW: APPS.IEX_TRANSACTIONS_QUERY_V
12.2.2
owner:APPS, object_type:VIEW, object_name:IEX_TRANSACTIONS_QUERY_V, status:VALID,
-
View: AR_RA_SELECTED_TRX_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_RA_SELECTED_TRX_V, object_name:AR_RA_SELECTED_TRX_V, status:VALID, product: AR - Receivables , description: (Release 11.5 Only) , implementation_dba_data: APPS.AR_RA_SELECTED_TRX_V ,
-
View: ICX_RA_CUSTOMER_TRX_V
12.2.2
product: ICX - Oracle iProcurement , description: Customer Transactions Header View , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.AR_RA_SELECTED_TRX_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_RA_SELECTED_TRX_V, object_name:AR_RA_SELECTED_TRX_V, status:VALID,
-
View: AR_OPEN_TRX_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_OPEN_TRX_V, object_name:AR_OPEN_TRX_V, status:VALID, product: AR - Receivables , description: (Release 115 Only) , implementation_dba_data: APPS.AR_OPEN_TRX_V ,
-
View: AR_RA_SELECTED_TRX_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_RA_SELECTED_TRX_V, object_name:AR_RA_SELECTED_TRX_V, status:VALID, product: AR - Receivables , description: (Release 11.5 Only) , implementation_dba_data: APPS.AR_RA_SELECTED_TRX_V ,
-
View: ICX_RA_CUSTOMER_TRX_V
12.1.1
product: ICX - Oracle iProcurement , description: Customer Transactions Header View , implementation_dba_data: Not implemented in this database ,
-
View: AR_ADJUSTMENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_ADJUSTMENTS_V, object_name:AR_ADJUSTMENTS_V, status:VALID, product: AR - Receivables , description: (Release 11.5 Only) , implementation_dba_data: APPS.AR_ADJUSTMENTS_V ,
-
View: AR_ADJUSTMENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_ADJUSTMENTS_V, object_name:AR_ADJUSTMENTS_V, status:VALID, product: AR - Receivables , description: (Release 11.5 Only) , implementation_dba_data: APPS.AR_ADJUSTMENTS_V ,
-
VIEW: APPS.AR_RA_SELECTED_TRX_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_RA_SELECTED_TRX_V, object_name:AR_RA_SELECTED_TRX_V, status:VALID,
-
VIEW: APPS.AR_OPEN_TRX_V
12.2.2
-
View: ICX_AR_PAYMENT_SCHED_INV_V
12.1.1
product: ICX - Oracle iProcurement , description: Invoice and Debit Memos Payment Schedules View , implementation_dba_data: Not implemented in this database ,
-
View: ICX_AR_PAYMENT_SCHEDULES_V
12.1.1
product: ICX - Oracle iProcurement , description: Payment Schedules View , implementation_dba_data: Not implemented in this database ,
-
VIEW: AR.AR_PAYMENT_SCHEDULES_ALL#
12.2.2
owner:AR, object_type:VIEW, object_name:AR_PAYMENT_SCHEDULES_ALL#, status:VALID,