Search Results check_currency




Overview

OKL_CS_DISBURSEMENTS_DTL_UV is a reporting view within the Oracle E-Business Suite (EBS) Leasing and Finance Management module (OKL). It presents disbursement and payment detail associated with lease and finance contracts, consolidating data from Oracle Lease Management transaction tables and Oracle Payables (AP) tables into a single denormalized result set. The view exposes the linkage between a contract, its AP invoices, and the checks or payments issued against those invoices.

Its principal role is to support reporting and integration scenarios in which users need to reconcile lease contract disbursements against actual payment instruments. In both EBS 12.1.1 and 12.2.2, this view is defined as a database object; the ETRM metadata notes that it is "Not implemented in this database" in the source system context, meaning the object is documented but not necessarily instantiated in every environment. The "UV" suffix conventionally denotes a user or reporting view.

Underlying Base Objects

The view is defined over a join of OKL transaction tables and standard Oracle Payables and Purchasing tables. The documented base objects in the FROM clause are:

The join keys link OKL transaction lines to AP invoice headers by organization and vendor site, to Payables invoices by invoice number and vendor, then outward to payments and checks. The AP_LOOKUP_CODES join is outer (+) on LOOKUP_TYPE = 'PAYMENT METHOD'.

Key Columns

Common Use Cases and Queries

Typical uses include disbursement reconciliation, audit of lease payments by vendor, and currency analysis of checks issued against lease contracts.

  • Disbursements by contract: retrieve all payments tied to a given contract number.
  • Currency reconciliation: filter on CHECK_CURRENCY versus DISBURSEMENT_CURRENCY to identify mismatches between contract and payment currencies.
  • Vendor payment audit: group disbursements by VENDOR_NAME and PAYMENT_METHOD.

Sample query:

SELECT CONTRACT_NUMBER, VENDOR_NAME, CHECK_NUMBER, CHECK_DATE, CHECK_AMOUNT, CHECK_CURRENCY, DISBURSEMENT_AMOUNT FROM OKL_CS_DISBURSEMENTS_DTL_UV WHERE CONTRACT_NUMBER = :contract_number;

Additional filters on CHECK_CURRENCY or TRANSACTION_TYPE support currency-specific and type-specific reporting requirements.