Search Results ra_customer_trx_lines_all
Overview
OKL_RCPT_INVOICE_LINES_UV is a PL/SQL-view owned by the APPS schema in Oracle E-Business Suite Release 12.1.1 and 12.2.2, delivered as part of the OKL — Lease and Finance Management product family. Its purpose, per Oracle's ETRM documentation, is to fetch the open invoice lines for a contract, an investor agreement, a termination quote, or non-OKL invoices. In practice the view consolidates Accounts Receivable transaction lines with lease-specific contract, asset, stream, and termination-quote attributes so that receipts application, cash matching, and lease accounting processes can present a single, unified list of invoice lines that still carry a balance.
Because the user query referenced ra_customer_trx_lines_all, it is worth clarifying that OKL_RCPT_INVOICE_LINES_UV is not a replacement for that table. Rather, the view reads RA_CUSTOMER_TRX_LINES_ALL together with RA_CUSTOMER_TRX_ALL and AR_PAYMENT_SCHEDULES_ALL and enriches each row with lease contract context. It therefore bridges the core Receivables data model and the OKL lease sub-ledger, which is why it is heavily used in lease receipt and invoice reporting rather than in standard AR reporting.
Underlying Base Objects
The documented view text joins AR_PAYMENT_SCHEDULES_ALL, RA_CUSTOMER_TRX_ALL, RA_CUSTOMER_TRX_LINES_ALL, OKL_TXD_AR_LN_DTLS_B, OKC_K_HEADERS_ALL_B, OKL_TRX_QUOTES_ALL_B, OKL_TRX_AR_INVOICES_B, and OKL_TXL_AR_INV_LNS_B. The ETRM 12.2.2 metadata additionally lists OKL_CNSLD_AR_HDRS_ALL_B, OKL_CNSLD_AR_LINES_B, OKL_CNSLD_AR_STRMS_B, and OKL_STRM_TYPE_TL among the referenced objects, all accessed through APPS synonyms.
- RA_CUSTOMER_TRX_ALL / RA_CUSTOMER_TRX_LINES_ALL — supply the invoice header, line number, currency, extended amount, and amount_due_remaining.
- AR_PAYMENT_SCHEDULES_ALL — supplies due dates and terms sequence numbers for each installment.
- OKC_K_HEADERS_ALL_B — the contract header, providing contract number and KHR identifier.
- OKL_TXD_AR_LN_DTLS_B — the OKL transaction detail link, giving KLE identifier and stream type identifier (STY_ID).
- OKL_TRX_QUOTES_ALL_B — termination quote header information (quote number and ID).
- OKL_TRX_AR_INVOICES_B / OKL_TXL_AR_INV_LNS_B — OKL invoice and line staging tables used to relate AR lines back to lease invoices.
Key Columns
The projection exposes identifiers plus computed monetary balances. Notable columns include:
- INVOICE_NUMBER, INVOICE_ID, INVOICE_LINE_ID, INVOICE_LINE_NUMBER — AR transaction identifiers.
- INVOICE_DATE, INVOICE_DUE_DATE, TERMS_SEQUENCE_NUMBER — dates and installment sequencing from the payment schedule.
- ORG_ID, CURRENCY_CODE, BILL_TO_CUSTOMER_ID — operating unit, invoice currency, and customer.
- AMOUNT_DUE_ORIGINAL — the line extended amount plus any linked lines, giving the original billed value.
- AMOUNT_DUE_REMAINING, LINE_BALANCE — remaining open balance, with LINE_BALANCE defaulting to zero when null.
- TAX_BALANCE — the sum of remaining amounts on lines whose LINE_TYPE is 'TAX'.
- ASSET_NUMBER, STREAM_TYPE, STY_ID, KLE_ID, KHR_ID — lease asset and stream identifiers from OKL tables.
- CONTRACT_NUMBER, TERM_QUOTE_ID, TERM_QUOTE_NUMBER — contract and termination-quote linkage.
Common Use Cases and Queries
Typical scenarios include displaying open lease invoice lines during receipt application, reconciling termination quote balances, and reporting outstanding tax balances on lease invoices. A basic query to list open lines for a contract would be:
SELECT INVOICE_NUMBER, INVOICE_LINE_NUMBER, INVOICE_DUE_DATE,
AMOUNT_DUE_REMAINING, LINE_BALANCE, TAX_BALANCE,
CURRENCY_CODE, CONTRACT_NUMBER, ASSET_NUMBER
FROM APPS.OKL_RCPT_INVOICE_LINES_UV
WHERE AMOUNT_DUE_REMAINING > 0
AND CONTRACT_NUMBER = :p_contract_number
ORDER BY INVOICE_DUE_DATE, INVOICE_LINE_NUMBER;
For investor agreement or termination quote review, filtering on TERM_QUOTE_NUMBER or ORG_ID narrows results to the relevant operating unit. Because the view computes balances with correlated subqueries against RA_CUSTOMER_TRX_LINES_ALL, queries should restrict ORG_ID and date ranges to avoid full scans and should avoid joining the view back to its own base tables.
-
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_RECEIPT_APPLICATIONS_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_RECEIPT_APPLICATIONS_UV, object_name:OKL_RECEIPT_APPLICATIONS_UV, status:VALID, product: OKL - Lease and Finance Management , implementation_dba_data: APPS.OKL_RECEIPT_APPLICATIONS_UV ,
-
View: OKL_RCPT_ARINV_BALANCES_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_RCPT_ARINV_BALANCES_UV, object_name:OKL_RCPT_ARINV_BALANCES_UV, status:VALID, product: OKL - Lease and Finance Management , implementation_dba_data: APPS.OKL_RCPT_ARINV_BALANCES_UV ,
-
View: OKL_RCPT_CUST_CONT_BALANCES_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_RCPT_CUST_CONT_BALANCES_UV, object_name:OKL_RCPT_CUST_CONT_BALANCES_UV, status:VALID, product: OKL - Lease and Finance Management , implementation_dba_data: APPS.OKL_RCPT_CUST_CONT_BALANCES_UV ,
-
View: OKL_CS_BPD_INV_DTL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_CS_BPD_INV_DTL_V, object_name:OKL_CS_BPD_INV_DTL_V, status:VALID, product: OKL - Lease and Finance Management , description: New CS Billing base view , implementation_dba_data: APPS.OKL_CS_BPD_INV_DTL_V ,
-
View: OKL_CS_AR_TAX_LINES_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_CS_AR_TAX_LINES_UV, object_name:OKL_CS_AR_TAX_LINES_UV, status:VALID, product: OKL - Lease and Finance Management , description: This view is used by Lease Center screen to display tax lines for a tax schedule. , implementation_dba_data: APPS.OKL_CS_AR_TAX_LINES_UV ,
-
View: OKL_AR_TAX_LINES_ALL_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_AR_TAX_LINES_ALL_UV, object_name:OKL_AR_TAX_LINES_ALL_UV, status:VALID, product: OKL - Lease and Finance Management , description: This view is used by Lease Center to get the tax lines from AR, for a tax schedule. , implementation_dba_data: APPS.OKL_AR_TAX_LINES_ALL_UV ,
-
View: OKL_CS_TRX_PAYMENTS_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_CS_TRX_PAYMENTS_UV, object_name:OKL_CS_TRX_PAYMENTS_UV, status:VALID, product: OKL - Lease and Finance Management , implementation_dba_data: APPS.OKL_CS_TRX_PAYMENTS_UV ,
-
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_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_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_IN_RAMOUNT_BC_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_IN_RAMOUNT_BC_V, object_name:OKL_IN_RAMOUNT_BC_V, status:VALID, product: OKL - Lease and Finance Management , description: View for amount received for the invoice line. , implementation_dba_data: APPS.OKL_IN_RAMOUNT_BC_V ,
-
Table: OKL_XTL_SELL_INVS_B
12.2.2
owner:OKL, object_type:TABLE, fnd_design_data:OKL.OKL_XTL_SELL_INVS_B, object_name:OKL_XTL_SELL_INVS_B, status:VALID, product: OKL - Lease and Finance Management , description: The transaction table for "bill" type transactions, where cash receipts are expected , implementation_dba_data: OKL.OKL_XTL_SELL_INVS_B ,
-
Lookup Type: OKL_SEL_SOURCE
12.2.2
product: OKL - Lease and Finance Management , meaning: Stream Elements Source , description: Source Table for Source Id value ,
-
View: OKL_BPD_AR_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_BPD_AR_LINES_V, object_name:OKL_BPD_AR_LINES_V, status:VALID, product: OKL - Lease and Finance Management , description: View for Operations, Transactions Details page for contract. , implementation_dba_data: APPS.OKL_BPD_AR_LINES_V ,
-
View: OKL_AR_REC_APP_REF_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_AR_REC_APP_REF_VL, object_name:OKL_AR_REC_APP_REF_VL, status:VALID, product: OKL - Lease and Finance Management , implementation_dba_data: APPS.OKL_AR_REC_APP_REF_VL ,
-
View: OKL_AR_REC_APP_IA_REF_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_AR_REC_APP_IA_REF_V, object_name:OKL_AR_REC_APP_IA_REF_V, status:VALID, product: OKL - Lease and Finance Management , implementation_dba_data: APPS.OKL_AR_REC_APP_IA_REF_V ,
-
View: OKL_BPD_INVEST_TRX_SUM_LN_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_BPD_INVEST_TRX_SUM_LN_UV, object_name:OKL_BPD_INVEST_TRX_SUM_LN_UV, status:VALID, product: OKL - Lease and Finance Management , implementation_dba_data: APPS.OKL_BPD_INVEST_TRX_SUM_LN_UV ,
-
View: OKL_RCPT_CONSINV_BALANCES_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_RCPT_CONSINV_BALANCES_UV, object_name:OKL_RCPT_CONSINV_BALANCES_UV, status:VALID, product: OKL - Lease and Finance Management , implementation_dba_data: APPS.OKL_RCPT_CONSINV_BALANCES_UV ,
-
View: OKL_AR_TRX_LINE_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_AR_TRX_LINE_UV, object_name:OKL_AR_TRX_LINE_UV, status:VALID, product: OKL - Lease and Finance Management , implementation_dba_data: APPS.OKL_AR_TRX_LINE_UV ,
-
View: OKL_CS_PROPERTY_TAX_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_CS_PROPERTY_TAX_UV, object_name:OKL_CS_PROPERTY_TAX_UV, status:VALID, product: OKL - Lease and Finance Management , description: UI View for Estimated Property Tax , implementation_dba_data: APPS.OKL_CS_PROPERTY_TAX_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_BPD_INVOICE_HDR_BC_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_BPD_INVOICE_HDR_BC_V, object_name:OKL_BPD_INVOICE_HDR_BC_V, status:VALID, product: OKL - Lease and Finance Management , description: View for consolidated invoice headers. , implementation_dba_data: APPS.OKL_BPD_INVOICE_HDR_BC_V ,
-
View: OKL_BPD_CNTR_INVOICE_HDR_BC_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_BPD_CNTR_INVOICE_HDR_BC_V, object_name:OKL_BPD_CNTR_INVOICE_HDR_BC_V, status:VALID, product: OKL - Lease and Finance Management , description: View for consolidated invoice header for contracts. , implementation_dba_data: APPS.OKL_BPD_CNTR_INVOICE_HDR_BC_V ,
-
View: OKL_BPD_AR_INV_LN_DTLS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_BPD_AR_INV_LN_DTLS_V, object_name:OKL_BPD_AR_INV_LN_DTLS_V, status:VALID, product: OKL - Lease and Finance Management , description: View for Search invoice Page Details. , implementation_dba_data: APPS.OKL_BPD_AR_INV_LN_DTLS_V ,
-
View: OKL_AR_REC_APP_KHR_REF_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_AR_REC_APP_KHR_REF_V, object_name:OKL_AR_REC_APP_KHR_REF_V, status:VALID, product: OKL - Lease and Finance Management , implementation_dba_data: APPS.OKL_AR_REC_APP_KHR_REF_V ,