Search Results okl_cure_funds_trans_pk
Overview
The OKL_CURE_FUND_TRANS table is a core data object within the Oracle E-Business Suite (EBS) Lease and Finance Management (OKL) module. It serves as a transactional ledger for tracking overpayment and underpayment amounts associated with specific payments, which are then aggregated against a vendor program. This table is essential for managing the financial reconciliation process between lessors and vendors, particularly in scenarios involving cure payments and refunds. Its role is to provide an auditable record of fund adjustments, ensuring accurate vendor settlements and financial reporting within the leasing lifecycle.
Key Information Stored
While the full column list is not detailed in the provided metadata, the documented foreign key relationships and primary key define its critical data elements. The primary identifier is the CURE_FUND_TRANS_ID. The table stores links to related cure payment and refund line transactions via the CURE_PAYMENT_ID and CURE_REFUND_LINE_ID columns, respectively. It also associates these financial adjustments with a specific vendor through the VENDOR_ID column. Fundamentally, the table holds the monetary amounts (overpayment or underpayment) for individual payments, logically grouped under a vendor program to facilitate consolidated reporting and fund management.
Common Use Cases and Queries
A primary use case is generating reports for vendor program reconciliation, summarizing total over/under payment positions per vendor. Support teams may query this table to investigate the financial details of a specific cure payment or refund line. Common SQL patterns involve joining to its related master tables. For example, to list all fund transactions for a vendor, a query might be:
SELECT cft.*, pv.vendor_name
FROM OKL_CURE_FUND_TRANS cft,
PO_VENDORS pv
WHERE cft.vendor_id = pv.vendor_id
AND pv.segment1 = 'VENDOR123';
Another critical scenario is tracing the complete financial trail of a cure payment by joining to OKL_CURE_PAYMENTS_B to analyze associated fund adjustments.
Related Objects
The OKL_CURE_FUND_TRANS table maintains defined foreign key relationships with several key EBS tables, as per the provided metadata:
- OKL_CURE_PAYMENTS_B: Linked via the CURE_PAYMENT_ID column. This relationship ties the fund transaction to its originating cure payment record.
- OKL_CURE_REFUND_LINES: Linked via the CURE_REFUND_LINE_ID column. This connects the adjustment to a specific refund line item.
- PO_VENDORS: Linked via the VENDOR_ID column. This associates the transaction with the master vendor record in the Purchasing module, enabling vendor-centric reporting and settlements.
The table's primary key, OKL_CURE_FUNDS_TRANS_PK (CURE_FUND_TRANS_ID), ensures each record is uniquely identifiable and can be referenced by other application components or custom integrations.
-
Table: OKL_CURE_FUND_TRANS
12.2.2
product: OKL - Lease and Finance Management , description: Stores over payment/under payment amounts per payment against a report, and grouped against a vendor program , implementation_dba_data: Not implemented in this database ,
-
Table: OKL_CURE_FUND_TRANS
12.1.1
product: OKL - Leasing and Finance Management , description: Stores over payment/under payment amounts per payment against a report, and grouped against a vendor program , implementation_dba_data: Not implemented in this database ,