Search Results okl_cure_refunds_all
Overview
OKL_CURE_REFUNDS_ALL is a transactional table in the OKL (Lease and Finance Management) schema within Oracle E-Business Suite 12.1.1 and 12.2.2. Its documented purpose is to store refunds made to a vendor for cured contracts. The cure refund pool is maintained per contract, and a single refund record groups all cash received by the vendor against one contract ID. This makes the table a central repository for tracking amounts owed back to, or received from, lessees or vendors when a delinquent contract is brought back into good standing (cured).
From a Data Vault modeling perspective, the heuristic classification mined from the foreign-key structure is standalone. In practice this suggests the table behaves as a satellite-like detail store hanging off cure refund header and stage parents, rather than acting as an independent hub or a link between two business keys. All refinements to the record are captured through standard WHO columns (CREATED_BY, LAST_UPDATED_BY, LAST_UPDATE_DATE), and concurrency is managed via OBJECT_VERSION_NUMBER.
Key Information Stored
The table contains 44 documented columns. The most operationally significant are:
- CURE_REFUND_ID — the surrogate primary key. It is also the business-key candidate enforced by unique index OKL_CURE_REFUNDS_ALL_U1.
- REFUND_NUMBER — the user-facing refund identifier; the second business-key candidate, enforced by OKL_CURE_REFUNDS_ALL_U2.
- CHR_ID — the contract identifier that anchors the refund to its cure pool.
- AMOUNT, BALANCE, TOTAL_REFUND_DUE, RECEIVED_AMOUNT, DISBURSEMENT_AMOUNT, OFFSET_AMOUNT — the monetary measures: original refund amount, remaining balance, total due, amount actually received, amount disbursed, and any offset applied to another obligation.
- REFUND_DATE — the effective date of the refund.
- STATUS — the lifecycle state of the refund record.
- VENDOR_SITE_ID — the vendor site receiving or originating the refund.
- CURE_REFUND_HEADER_ID — foreign key to OKL_CURE_REFUND_HEADERS_B, the parent header.
- CURE_REFUND_STAGE_ID — foreign key to OKL_CURE_REFUND_STAGE, indicating the processing stage.
- TAP_ID, TAI_ID, OFFSET_CONTRACT — identifiers linking the refund to associated transactions, assets, or offsetting contracts.
- ORG_ID — the operating unit, enabling multi-org security.
- REQUEST_ID, PROGRAM_APPLICATION_ID, PROGRAM_ID, PROGRAM_UPDATE_DATE — concurrent program audit columns.
Common Use Cases and Queries
Typical reporting scenarios include reconciling cure refunds to the general ledger, tracking outstanding balances owed to vendors, and auditing refunds by contract or operating unit. A common query joins the header and stage parents:
SELECT r.REFUND_NUMBER, r.CHR_ID, r.TOTAL_REFUND_DUE, r.RECEIVED_AMOUNT, r.BALANCE, r.STATUS
FROM OKL_CURE_REFUNDS_ALL r, OKL_CURE_REFUND_HEADERS_B h
WHERE r.CURE_REFUND_HEADER_ID = h.CURE_REFUND_HEADER_ID
AND r.STATUS = 'OPEN';
Analysts frequently aggregate AMOUNT and RECEIVED_AMOUNT by ORG_ID and REFUND_DATE for period-end reporting, and filter by VENDOR_SITE_ID to produce vendor statements. Because the refund pool is per contract, a contract-level drill-down typically constrains on CHR_ID.
Related Objects
- OKL_CURE_REFUND_HEADERS_B — parent header table; join on CURE_REFUND_HEADER_ID.
- OKL_CURE_REFUND_STAGE — stage master; join on CURE_REFUND_STAGE_ID.
- OKL_CURE_REFUNDS_ALL — the _ALL suffix indicates a multi-org view/table pair in EBS; related _ALL views expose ORG_ID filtering.
- OKL_CURE_REFUNDS — the operating-unit-filtered synonym or view counterpart.
- OKL_CURE_CONTRACTS — cure contract master, related through CHR_ID.
- OKL_TRANSACTIONS — related via TAP_ID/TAI_ID for associated transaction and asset records.
-
Table: OKL_CURE_REFUNDS_ALL
12.2.2
owner:OKL, object_type:TABLE, fnd_design_data:OKL.OKL_CURE_REFUNDS_ALL, object_name:OKL_CURE_REFUNDS_ALL, status:VALID, product: OKL - Lease and Finance Management , description: Stores refunds made to vendor for cured contracts. Cure refund pool is per contract. The refund will group all the cash recieved by the vendor for one contract ID , implementation_dba_data: OKL.OKL_CURE_REFUNDS_ALL ,
-
Table: OKL_CURE_REFUNDS_ALL
12.1.1
owner:OKL, object_type:TABLE, fnd_design_data:OKL.OKL_CURE_REFUNDS_ALL, object_name:OKL_CURE_REFUNDS_ALL, status:VALID, product: OKL - Leasing and Finance Management , description: Stores refunds made to vendor for cured contracts. Cure refund pool is per contract. The refund will group all the cash recieved by the vendor for one contract ID , implementation_dba_data: OKL.OKL_CURE_REFUNDS_ALL ,
-
SYNONYM: APPS.OKL_CURE_REFUNDS_ALL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:OKL_CURE_REFUNDS_ALL, status:VALID,
-
SYNONYM: APPS.OKL_CURE_REFUNDS_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:OKL_CURE_REFUNDS_ALL, status:VALID,
-
VIEW: OKL.OKL_CURE_REFUNDS_ALL#
12.2.2
owner:OKL, object_type:VIEW, object_name:OKL_CURE_REFUNDS_ALL#, status:VALID,
-
VIEW: APPS.OKL_REFUND_UV
12.2.2
-
VIEW: APPS.OKL_CURE_RFND_DTLS_UV
12.2.2
-
VIEW: APPS.OKL_CURE_RFND_DTLS_UV
12.1.1
-
VIEW: APPS.OKL_REFUND_UV
12.1.1
-
VIEW: OKL.OKL_CURE_REFUNDS_ALL#
12.2.2
-
View: OKL_CURE_RFND_DTLS_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_CURE_RFND_DTLS_UV, object_name:OKL_CURE_RFND_DTLS_UV, status:VALID, product: OKL - Lease and Finance Management , description: View by Vendor refunds , implementation_dba_data: APPS.OKL_CURE_RFND_DTLS_UV ,
-
View: OKL_CURE_RFND_DTLS_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_CURE_RFND_DTLS_UV, object_name:OKL_CURE_RFND_DTLS_UV, status:VALID, product: OKL - Leasing and Finance Management , description: View by Vendor refunds , implementation_dba_data: APPS.OKL_CURE_RFND_DTLS_UV ,
-
SYNONYM: APPS.OKL_CURE_REFUNDS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:OKL_CURE_REFUNDS, status:VALID,
-
SYNONYM: APPS.OKL_CURE_REFUNDS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:OKL_CURE_REFUNDS, status:VALID,
-
View: OKL_REFUND_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_REFUND_UV, object_name:OKL_REFUND_UV, status:VALID, product: OKL - Lease and Finance Management , implementation_dba_data: APPS.OKL_REFUND_UV ,
-
View: OKL_REFUND_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_REFUND_UV, object_name:OKL_REFUND_UV, status:VALID, product: OKL - Leasing and Finance Management , implementation_dba_data: APPS.OKL_REFUND_UV ,
-
PACKAGE BODY: APPS.OKL_VENDORMERGE_GRP
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_VENDORMERGE_GRP, status:VALID,
-
PACKAGE BODY: APPS.OKL_VENDORMERGE_GRP
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_VENDORMERGE_GRP, status:VALID,
-
TABLE: OKL.OKL_CURE_REFUNDS_ALL
12.2.2
owner:OKL, object_type:TABLE, fnd_design_data:OKL.OKL_CURE_REFUNDS_ALL, object_name:OKL_CURE_REFUNDS_ALL, status:VALID,
-
TABLE: OKL.OKL_CURE_REFUNDS_ALL
12.1.1
owner:OKL, object_type:TABLE, fnd_design_data:OKL.OKL_CURE_REFUNDS_ALL, object_name:OKL_CURE_REFUNDS_ALL, status:VALID,
-
VIEW: APPS.OKL_REFUND_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_REFUND_UV, object_name:OKL_REFUND_UV, status:VALID,
-
VIEW: APPS.OKL_REFUND_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_REFUND_UV, object_name:OKL_REFUND_UV, status:VALID,
-
VIEW: APPS.OKL_CURE_RFND_DTLS_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_CURE_RFND_DTLS_UV, object_name:OKL_CURE_RFND_DTLS_UV, status:VALID,
-
VIEW: APPS.OKL_CURE_RFND_DTLS_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_CURE_RFND_DTLS_UV, object_name:OKL_CURE_RFND_DTLS_UV, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
APPS.OKL_VENDORMERGE_GRP SQL Statements
12.1.1
-
APPS.OKL_VENDORMERGE_GRP dependencies on OKL_CURE_REFUNDS_ALL
12.1.1
-
APPS.OKL_VENDORMERGE_GRP SQL Statements
12.2.2
-
APPS.OKL_VENDORMERGE_GRP dependencies on OKL_CURE_REFUNDS_ALL
12.2.2
-
PACKAGE BODY: APPS.OKL_VENDORMERGE_GRP
12.1.1
-
PACKAGE BODY: APPS.OKL_VENDORMERGE_GRP
12.2.2
-
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 ,