Search Results okl_batch_receipts_summary_uv
Overview
OKL_BATCH_RECEIPTS_SUMMARY_UV is a consolidated reporting view owned by the APPS schema in Oracle E-Business Suite, defined against the OKL (Leasing and Finance Management) product. It presents a unified, denormalized summary of batch receipt activity, joining receipt header data to customer, contract, and receivable invoice information. The view is read-only by design and serves as a single query surface for operational and analytical reporting on cash receipts processed through the OKL transaction cash batch mechanism.
The "UV" suffix denotes a user-validated reporting view intended for direct consumption by reports, concurrent programs, and downstream integrations rather than by application form logic. Because the view resolves foreign-key relationships internally, consumers do not need to reconstruct the complex joins between receipt batches, receipt details, customers, contracts, consolidated AR headers, and receivable transactions. The view is structured as a UNION of three branches, each representing a distinct receipt-to-receivable association path, which explains the presence of several NULL placeholder columns.
Underlying Base Objects
The view is documented as depending on the following base objects, all referenced through synonyms in the APPS schema:
- OKL_TRX_CSH_BATCH_B — the receipt batch header (exposes BATCH_ID).
- OKL_TRX_CSH_RECEIPT_V — the receipt view supplying check number, amount, currency, effective date, and status.
- OKL_TXL_RCPT_APPS_V — the receipt-to-application association, carrying ILE_ID (customer account), KHR_ID (contract), and CNR_ID (consolidated invoice) links.
- OKC_K_HEADERS_B — the contract header (contract number and ID).
- OKL_CNSLD_AR_HDRS_B — the consolidated AR header (consolidated invoice number).
- RA_CUSTOMER_TRX_ALL — the standard receivables transaction table, supplying TRX_NUMBER and CUSTOMER_TRX_ID for the non-consolidated invoice branch.
- HZ_CUST_ACCOUNTS and HZ_PARTIES — the Trading Community Architecture tables supplying account number, party name, and party ID.
The three UNION branches correspond to receipts applied to a contract (contract populated, invoice columns NULL), receipts applied to a consolidated invoice (INVOICE_TYPE = 'CONS'), and receipts applied to a standard AR transaction.
Key Columns
- RECEIPT_NUMBER — the check or receipt identifier from OKL_TRX_CSH_RECEIPT_V.
- RECEIPT_AMOUNT, RECEIPT_CURRENCY, RECEIPT_DATE — monetary value, currency code, and DATE_EFFECTIVE of the receipt.
- RCPT_STATUS_CODE — the current status of the receipt record.
- CUSTOMER_NAME, CUSTOMER_ID, ACCOUNT_NUMBER, CUST_ACCOUNT_ID — customer identification resolved through HZ_PARTIES and HZ_CUST_ACCOUNTS.
- CONTRACT_NUMBER, CONTRACT_ID — populated only in the contract branch; NULL in the invoice branches.
- INVOICE_NUMBER, INVOICE_ID — populated only in the consolidated and AR transaction branches (documented as NULL in the contract branch).
- INVOICE_TYPE — a literal discriminator; the consolidated branch returns 'CONS', while the contract branch explicitly returns NULL.
- BATCH_ID — the originating cash batch from OKL_TRX_CSH_BATCH_B, enabling batch-level aggregation.
The INVOICE_TYPE column is significant for filtering: consumers selecting only standard or consolidated receivable receipts must account for the NULL returned by the contract branch and must not rely on INVOICE_TYPE alone to distinguish AR transactions from consolidated invoices without also testing INVOICE_ID against the appropriate source.
Common Use Cases and Queries
The view supports receipt reconciliation, batch balancing, customer-level cash application analysis, and feeds into leasing operational dashboards. Typical usage includes reporting receipts by batch, tracing a receipt to its applied contract or invoice, and reconciling OKL receipts against RA_CUSTOMER_TRX_ALL.
Retrieve all receipts regardless of application type:
SELECT RECEIPT_NUMBER, RECEIPT_AMOUNT, CUSTOMER_NAME,
CONTRACT_NUMBER, INVOICE_NUMBER, INVOICE_TYPE
FROM APPS.OKL_BATCH_RECEIPTS_SUMMARY_UV;
Isolate consolidated invoice receipts:
SELECT RECEIPT_NUMBER, INVOICE_NUMBER, INVOICE_ID, RECEIPT_AMOUNT FROM APPS.OKL_BATCH_RECEIPTS_SUMMARY_UV WHERE INVOICE_TYPE = 'CONS';
Aggregate receipts by batch and currency:
SELECT BATCH_ID, RECEIPT_CURRENCY, SUM(RECEIPT_AMOUNT) TOTAL_AMT FROM APPS.OKL_BATCH_RECEIPTS_SUMMARY_UV GROUP BY BATCH_ID, RECEIPT_CURRENCY;
Because the source includes views over transactional receipt tables, queries against this view should be restricted by receipt date or batch ID to limit execution cost, and should be granted appropriate APPS-schema access via a custom synonym or GRANT before use in external reporting tools.
-
View: OKL_BATCH_RECEIPTS_SUMMARY_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_BATCH_RECEIPTS_SUMMARY_UV, object_name:OKL_BATCH_RECEIPTS_SUMMARY_UV, status:VALID, product: OKL - Lease and Finance Management , implementation_dba_data: APPS.OKL_BATCH_RECEIPTS_SUMMARY_UV ,
-
View: OKL_BATCH_RECEIPTS_SUMMARY_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_BATCH_RECEIPTS_SUMMARY_UV, object_name:OKL_BATCH_RECEIPTS_SUMMARY_UV, status:VALID, product: OKL - Leasing and Finance Management , implementation_dba_data: APPS.OKL_BATCH_RECEIPTS_SUMMARY_UV ,
-
SYNONYM: APPS.OKL_TRX_CSH_BATCH_B
12.1.1
owner:APPS, object_type:SYNONYM, object_name:OKL_TRX_CSH_BATCH_B, status:VALID,
-
SYNONYM: APPS.OKL_TRX_CSH_BATCH_B
12.2.2
owner:APPS, object_type:SYNONYM, object_name:OKL_TRX_CSH_BATCH_B, status:VALID,
-
SYNONYM: APPS.OKL_CNSLD_AR_HDRS_B
12.1.1
owner:APPS, object_type:SYNONYM, object_name:OKL_CNSLD_AR_HDRS_B, status:VALID,
-
SYNONYM: APPS.OKL_CNSLD_AR_HDRS_B
12.2.2
owner:APPS, object_type:SYNONYM, object_name:OKL_CNSLD_AR_HDRS_B, status:VALID,
-
VIEW: APPS.OKL_BATCH_RECEIPTS_SUMMARY_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_BATCH_RECEIPTS_SUMMARY_UV, object_name:OKL_BATCH_RECEIPTS_SUMMARY_UV, status:VALID,
-
VIEW: APPS.OKL_BATCH_RECEIPTS_SUMMARY_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_BATCH_RECEIPTS_SUMMARY_UV, object_name:OKL_BATCH_RECEIPTS_SUMMARY_UV, status:VALID,
-
VIEW: APPS.OKL_TXL_RCPT_APPS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_TXL_RCPT_APPS_V, object_name:OKL_TXL_RCPT_APPS_V, status:VALID,
-
VIEW: APPS.OKL_TXL_RCPT_APPS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_TXL_RCPT_APPS_V, object_name:OKL_TXL_RCPT_APPS_V, status:VALID,
-
VIEW: APPS.OKL_TRX_CSH_RECEIPT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_TRX_CSH_RECEIPT_V, object_name:OKL_TRX_CSH_RECEIPT_V, status:VALID,
-
VIEW: APPS.OKL_TRX_CSH_RECEIPT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_TRX_CSH_RECEIPT_V, object_name:OKL_TRX_CSH_RECEIPT_V, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
SYNONYM: APPS.RA_CUSTOMER_TRX_ALL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:RA_CUSTOMER_TRX_ALL, status:VALID,
-
SYNONYM: APPS.RA_CUSTOMER_TRX_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:RA_CUSTOMER_TRX_ALL, 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.OKC_K_HEADERS_B
12.2.2
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,
-
SYNONYM: APPS.HZ_PARTIES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:HZ_PARTIES, status:VALID,
-
SYNONYM: APPS.HZ_PARTIES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:HZ_PARTIES, status:VALID,
-
eTRM - OKL Tables and Views
12.2.2
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 ,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
eTRM - OKL Tables and Views
12.2.2
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 ,