Search Results okl_bpd_ar_header_v
Overview
OKL_BPD_AR_HEADER_V is a presentation view owned by the APPS schema within the Oracle Lease and Finance Management (OKL) module of Oracle E-Business Suite. The view is documented under ETRM 12.2.2 and is marked VALID in the data dictionary for both 12.1.1 and 12.2.2 environments. Its declared purpose is to support the Operations and Transactions search page within the Lease and Finance Management application, providing a consolidated, user-facing projection of accounts receivable transactions that originate from lease contracts and associated billing activity.
The view sits at the boundary between the OKL lease transaction data model and the Oracle Receivables (AR) transaction tables. It presents receivables invoices, their transaction types, statuses, amounts, currencies, and linkage back to lease contract headers and ledger context, so that the OKL transaction search user interface can expose a single queryable source without forcing the calling code to join across the lease and receivables schemas directly.
Underlying Base Objects
The view is defined over a subquery that joins several lease, receivables, and reference objects. Documented referenced base objects include OKC_K_HEADERS_B, OKL_K_HEADERS, OKL_PRODUCTS, OKL_TRX_AR_INVOICES_B, OKL_TXD_AR_LN_DTLS_B, OKL_TXL_AR_INV_LNS_B, RA_CUSTOMER_TRX_ALL, RA_CUSTOMER_TRX_LINES_ALL, RA_CUST_TRX_TYPES, AR_PAYMENT_SCHEDULES_ALL, and HZ_CUST_ACCOUNTS, together with the OKL_ACCOUNTING_UTIL package used for lookup translations.
- OKC_K_HEADERS_B / OKL_K_HEADERS supply contract number and contract header identity (KHR_ID).
- RA_CUSTOMER_TRX_ALL / RA_CUSTOMER_TRX_LINES_ALL provide the receivables invoice header and line detail, including transaction number, date, currency, extended amount, and tax recoverable values.
- RA_CUST_TRX_TYPES supplies transaction type codes and names used to build the description string.
- OKL_PRODUCTS supplies the product name, and OKL_TXD_AR_LN_DTLS_B and the associated invoice line tables bridge lease billing detail into the AR lines.
- OKL_ACCOUNTING_UTIL is invoked through GET_LOOKUP_MEANING to translate lookup codes into descriptive meanings for source, transaction type, transaction status, and actual/draft status.
Key Columns
- ID – the RA_CUSTOMER_TRX_ALL.CUSTOMER_TRX_ID, converted to character, identifying the AR transaction.
- KHR_ID / CONTRACT_NUMBER – the lease contract header identifier and human-readable contract number.
- SOURCE_CODE / SOURCE – source classification such as 'REC', with the lookup meaning resolved via OKL_VIEW_ACC_SOURCES.
- TRANSACTION_NUMBER, TRANSACTION_TYPE, TRANSACTION_DATE, TRX_TYPE – receivables transaction identifying attributes.
- TRANSACTION_STATUS – derived from COMPLETE_FLAG using the INVOICE_DETAIL_REPORT lookup.
- DESCRIPTION – concatenation of interface header attribute, transaction type name, and lookup meaning.
- AMOUNT / TOTAL_TRANSACTION_AMOUNT – the summed extended amount plus tax recoverable, and the summed extended amount for LINE and TAX line types.
- CURRENCY_CODE, LEDGER_ID, ORG_ID, ACCOUNT_NUMBER, TRY_ID, CHECK_ID – currency, ledger, operating unit, account, and secondary reference identifiers.
Common Use Cases and Queries
Typical usage is to drive the OKL Operations and Transactions search page and to build custom receivables-to-lease reconciliation reports. A minimal query returns the transaction list for a contract:
SELECT id, contract_number, transaction_number, transaction_type, transaction_status, transaction_date, amount, currency_code FROM okl_bpd_ar_header_v WHERE contract_number = :p_contract_number ORDER BY transaction_date;
To reconcile billed amounts per ledger and operating unit:
SELECT ledger_id, org_id, currency_code, SUM(amount) total_amount FROM okl_bpd_ar_header_v WHERE transaction_date BETWEEN :p_from AND :p_to GROUP BY ledger_id, org_id, currency_code;
-
View: OKL_BPD_AR_HEADER_V
12.1.1
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 - Leasing and Finance Management , description: View for Operations, Transactions search page , implementation_dba_data: APPS.OKL_BPD_AR_HEADER_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 ,
-
SYNONYM: APPS.OKL_TXD_AR_LN_DTLS_B
12.1.1
owner:APPS, object_type:SYNONYM, object_name:OKL_TXD_AR_LN_DTLS_B, status:VALID,
-
SYNONYM: APPS.OKL_TXL_AR_INV_LNS_B
12.1.1
owner:APPS, object_type:SYNONYM, object_name:OKL_TXL_AR_INV_LNS_B, status:VALID,
-
SYNONYM: APPS.OKL_TRX_AR_INVOICES_B
12.1.1
owner:APPS, object_type:SYNONYM, object_name:OKL_TRX_AR_INVOICES_B, status:VALID,
-
SYNONYM: APPS.OKL_TXL_AR_INV_LNS_B
12.2.2
owner:APPS, object_type:SYNONYM, object_name:OKL_TXL_AR_INV_LNS_B, status:VALID,
-
SYNONYM: APPS.OKL_TXD_AR_LN_DTLS_B
12.2.2
owner:APPS, object_type:SYNONYM, object_name:OKL_TXD_AR_LN_DTLS_B, status:VALID,
-
SYNONYM: APPS.OKL_TRX_AR_INVOICES_B
12.2.2
owner:APPS, object_type:SYNONYM, object_name:OKL_TRX_AR_INVOICES_B, status:VALID,
-
VIEW: APPS.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,
-
VIEW: APPS.OKL_BPD_AR_HEADER_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_BPD_AR_HEADER_V, object_name:OKL_BPD_AR_HEADER_V, status:VALID,
-
VIEW: APPS.OKL_TRX_HEADER_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_TRX_HEADER_UV, object_name:OKL_TRX_HEADER_UV, status:VALID,
-
SYNONYM: APPS.OKL_PRODUCTS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:OKL_PRODUCTS, status:VALID,
-
SYNONYM: APPS.OKL_PRODUCTS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:OKL_PRODUCTS, status:VALID,
-
VIEW: APPS.OKL_TRX_HEADER_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_TRX_HEADER_UV, object_name:OKL_TRX_HEADER_UV, status:VALID,
-
SYNONYM: APPS.AR_PAYMENT_SCHEDULES_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:AR_PAYMENT_SCHEDULES_ALL, status:VALID,
-
SYNONYM: APPS.AR_PAYMENT_SCHEDULES_ALL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:AR_PAYMENT_SCHEDULES_ALL, status:VALID,
-
SYNONYM: APPS.RA_CUSTOMER_TRX_LINES_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:RA_CUSTOMER_TRX_LINES_ALL, status:VALID,
-
SYNONYM: APPS.RA_CUSTOMER_TRX_LINES_ALL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:RA_CUSTOMER_TRX_LINES_ALL, status:VALID,
-
SYNONYM: APPS.OKL_K_HEADERS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:OKL_K_HEADERS, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
View: OKL_TRX_HEADER_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_TRX_HEADER_UV, object_name:OKL_TRX_HEADER_UV, status:VALID, product: OKL - Leasing and Finance Management , implementation_dba_data: APPS.OKL_TRX_HEADER_UV ,
-
View: OKL_TRX_HEADER_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_TRX_HEADER_UV, object_name:OKL_TRX_HEADER_UV, status:VALID, product: OKL - Lease and Finance Management , implementation_dba_data: APPS.OKL_TRX_HEADER_UV ,
-
SYNONYM: APPS.OKL_K_HEADERS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:OKL_K_HEADERS, status:VALID,
-
12.1.1 FND Design Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
SYNONYM: APPS.RA_CUSTOMER_TRX_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:RA_CUSTOMER_TRX_ALL, status:VALID,
-
12.2.2 FND Design Data
12.2.2
-
SYNONYM: APPS.RA_CUST_TRX_TYPES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:RA_CUST_TRX_TYPES, status:VALID,
-
VIEW: APPS.OKL_TRX_HEADER_UV
12.1.1
-
SYNONYM: APPS.RA_CUST_TRX_TYPES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:RA_CUST_TRX_TYPES, status:VALID,
-
SYNONYM: APPS.RA_CUSTOMER_TRX_ALL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:RA_CUSTOMER_TRX_ALL, status:VALID,
-
PACKAGE: APPS.OKL_ACCOUNTING_UTIL
12.2.2
owner:APPS, object_type:PACKAGE, object_name:OKL_ACCOUNTING_UTIL, status:VALID,
-
VIEW: APPS.OKL_TRX_HEADER_UV
12.2.2
-
PACKAGE: APPS.OKL_ACCOUNTING_UTIL
12.1.1
owner:APPS, object_type:PACKAGE, object_name:OKL_ACCOUNTING_UTIL, status:VALID,
-
SYNONYM: APPS.OKC_K_HEADERS_B
12.2.2
owner:APPS, object_type:SYNONYM, object_name:OKC_K_HEADERS_B, status:VALID,
-
SYNONYM: APPS.OKC_K_HEADERS_B
12.1.1
owner:APPS, object_type:SYNONYM, object_name:OKC_K_HEADERS_B, status:VALID,
-
SYNONYM: APPS.HZ_CUST_ACCOUNTS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:HZ_CUST_ACCOUNTS, status:VALID,
-
SYNONYM: APPS.HZ_CUST_ACCOUNTS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:HZ_CUST_ACCOUNTS, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
eTRM - OKL Tables and Views
12.2.2
description: Translatable columns from OKL_XTL_SELL_INVS_B, per MLS standards ,
-
12.1.1 DBA Data
12.1.1
-
eTRM - OKL Tables and Views
12.1.1
description: Translatable columns from OKL_XTL_SELL_INVS_B, per MLS standards ,
-
eTRM - OKL Tables and Views
12.1.1
description: Translatable columns from OKL_XTL_SELL_INVS_B, per MLS standards ,
-
eTRM - OKL Tables and Views
12.2.2
description: Translatable columns from OKL_XTL_SELL_INVS_B, per MLS standards ,