Search Results okl_k_headers_v
Overview
OKL_K_HEADERS_V is an APPS-owned view in the Oracle Leasing and Finance Management (OKL) module, exposed in Oracle E-Business Suite 12.1.1 and 12.2.2. It functions as the Oracle Lease Management shadow header view, presenting descriptive and financial attributes that belong to lease and finance contracts created in OKL but that do not fit within the standard Oracle Contracts Core header tables, OKC_K_HEADERS_B and OKC_K_HEADERS_TL. The view therefore bridges the OKL contract extension data with the Contracts Core model, giving both reporting and integration layers a single, denormalized read surface for lease-specific header information.
Because the view carries the OKL-specific attribute set, it is the primary reference for consumers that need to read leasing financial parameters — such as yield figures and implicit interest rates — alongside standard contract identity and audit columns. ETRM lists the view as VALID with APPS as owner and OKL_K_HEADERS (SYNONYM) as the referenced base object. The user search term implicit_non_idc_interest_rate maps directly to a column exposed by this view, which is why it surfaces as the relevant object for that lookup.
Underlying Base Objects
Per the documented view text, OKL_K_HEADERS_V is defined as a direct projection over the OKL_K_HEADERS shadow table, filtered through the synonym listed in the ETRM metadata. The view selects KHR.ROWID as ROW_ID together with every relevant column of OKL_K_HEADERS, including the surrogate identifiers ID, KHR_ID, PDT_ID, and ISG_ID, the object version number, and the standard WHO audit trail columns (CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN). No joins, unions, or filters are applied; the view is effectively a column-aliasing layer that preserves the shadow table structure while presenting a stable attribute name for each field.
OKL_K_HEADERS itself extends OKC_K_HEADERS_B and OKC_K_HEADERS_TL, so an OKL lease contract is simultaneously represented in the Contracts Core header tables and supplemented here. ROW_ID is carried forward to support updatable or row-identified access patterns, and the descriptor flexfield columns ATTRIBUTE_CATEGORY through ATTRIBUTE15 preserve the DFF context for the lease header.
Key Columns
The view exposes a compact but functionally important column set. The most relevant columns include:
- IMPLICIT_INTEREST_RATE and IMPLICIT_NON_IDC_INTEREST_RATE — the implicit rate used for lease accounting and the corresponding non-IDC rate; the latter is the exact column matched by the search term implicit_non_idc_interest_rate.
- PRE_TAX_YIELD and AFTER_TAX_YIELD — yield metrics used in pricing and profitability analysis.
- TERM_DURATION — the contractual term of the lease arrangement.
- GENERATE_ACCRUAL_YN and GENERATE_ACCRUAL_OVERRIDE_YN — accrual generation and override flags.
- DATE_FIRST_ACTIVITY, DATE_REFINANCED, DATE_CONVERSION_EFFECTIVE, and DATE_DEAL_TRANSFERRED — lifecycle milestone dates.
- DATETIME_PROPOSAL_EFFECTIVE, DATETIME_PROPOSAL_INEFFECTIVE, and DATE_PROPOSAL_ACCEPTED — proposal tracking timestamps.
- AMD_CODE — the amendment code identifying the contract's amendment state.
- CONVERTED_ACCOUNT_YN, SYNDICATABLE_YN, SALESTYPE_YN, and CREDIT_ACT_YN — indicator flags governing conversion, syndication, sale-type, and credit treatment.
- ID, KHR_ID, PDT_ID, ISG_ID, and OBJECT_VERSION_NUMBER — primary, foreign, and version identifiers.
- ATTRIBUTE_CATEGORY through ATTRIBUTE15 — the descriptive flexfield context and segment columns.
Common Use Cases and Queries
The view is typically queried to reconcile lease accounting rates, report yield data, or extract leasing header attributes for downstream warehousing. A first common pattern is isolating contracts by their implicit rate, which directly answers the searched term:
SELECT id, khr_id, implicit_interest_rate, implicit_non_idc_interest_rate, pre_tax_yield, after_tax_yield FROM apps.okl_k_headers_v WHERE implicit_non_idc_interest_rate IS NOT NULL;
A second pattern retrieves active contracts whose accrual generation has been overridden, useful in accounting control reviews:
SELECT id, khr_id, generate_accrual_yn, generate_accrual_override_yn, term_duration FROM apps.okl_k_headers_v WHERE generate_accrual_override_yn = 'Y';
A third pattern supports yield and pricing analysis by ordering lease headers on pre-tax yield, while a fourth extracts the audit trail and flexfield context for integration or data-quality checks:
SELECT id, khr_id, pre_tax_yield, after_tax_yield, last_updated_by, last_update_date FROM apps.okl_k_headers_v ORDER BY pre_tax_yield DESC;
Because the view maps one-to-one to OKL_K_HEADERS, joins to OKC_K_HEADERS_B or OKC_K_HEADERS_TL on the contract identifier are required whenever standard Contracts Core columns such as contract number or title are needed alongside these lease-specific attributes.
-
View: OKL_K_HEADERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_K_HEADERS_V, object_name:OKL_K_HEADERS_V, status:VALID, product: OKL - Lease and Finance Management , description: Oracle Lease Management shadow table for Oracle Contracts Core header tables, OKC_K_HEADERS_B and OKC_K_HEADERS_TL. OKL_K_HEADERS contains attributes that relate to contracts created in OKL and do not fit into the standard header tables O , implementation_dba_data: APPS.OKL_K_HEADERS_V ,
-
View: OKL_K_HEADERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_K_HEADERS_V, object_name:OKL_K_HEADERS_V, status:VALID, product: OKL - Leasing and Finance Management , description: Oracle Lease Management shadow table for Oracle Contracts Core header tables, OKC_K_HEADERS_B and OKC_K_HEADERS_TL. OKL_K_HEADERS contains attributes that relate to contracts created in OKL and do not fit into the standard header tables O , implementation_dba_data: APPS.OKL_K_HEADERS_V ,
-
VIEW: APPS.OKL_RECONCILE_DISPLAY_UV
12.1.1
-
VIEW: APPS.OKL_RECONCILE_DISPLAY_UV
12.2.2
-
VIEW: APPS.OKL_REFUND_UV
12.2.2
-
VIEW: APPS.OKL_REFUND_UV
12.1.1
-
PACKAGE BODY: APPS.OKL_FORMULAEVALUATE_PUB
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_FORMULAEVALUATE_PUB, status:VALID,
-
PACKAGE BODY: APPS.OKL_FORMULAEVALUATE_PUB
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_FORMULAEVALUATE_PUB, status:VALID,
-
PACKAGE BODY: APPS.OKL_CSP_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_CSP_PVT, status:VALID,
-
PACKAGE: APPS.OKL_FORMULAEVALUATE_PUB
12.2.2
owner:APPS, object_type:PACKAGE, object_name:OKL_FORMULAEVALUATE_PUB, status:VALID,
-
PACKAGE BODY: APPS.OKL_EXECUTE_FORMULA_PUB
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_EXECUTE_FORMULA_PUB, status:VALID,
-
PACKAGE BODY: APPS.OKL_EXECUTE_FORMULA_PUB
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_EXECUTE_FORMULA_PUB, status:VALID,
-
PACKAGE BODY: APPS.OKL_SIF_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_SIF_PVT, status:VALID,
-
PACKAGE BODY: APPS.OKL_PFC_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_PFC_PVT, status:VALID,
-
PACKAGE BODY: APPS.OKL_POC_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_POC_PVT, status:VALID,
-
PACKAGE: APPS.OKL_FORMULAEVALUATE_PUB
12.1.1
owner:APPS, object_type:PACKAGE, object_name:OKL_FORMULAEVALUATE_PUB, status:VALID,
-
PACKAGE BODY: APPS.OKL_CSP_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_CSP_PVT, status:VALID,
-
PACKAGE BODY: APPS.OKL_SXP_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_SXP_PVT, status:VALID,
-
PACKAGE BODY: APPS.OKL_SETUPPSTYPES_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_SETUPPSTYPES_PVT, status:VALID,
-
PACKAGE BODY: APPS.OKL_SETUPPSTYPES_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_SETUPPSTYPES_PVT, status:VALID,
-
PACKAGE BODY: APPS.OKL_SIF_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_SIF_PVT, status:VALID,
-
PACKAGE BODY: APPS.OKL_POC_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_POC_PVT, status:VALID,
-
PACKAGE BODY: APPS.OKL_SXP_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_SXP_PVT, status:VALID,
-
PACKAGE BODY: APPS.OKL_SETUPPOVALUES_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_SETUPPOVALUES_PVT, status:VALID,
-
PACKAGE BODY: APPS.OKL_PFC_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_PFC_PVT, status:VALID,
-
PACKAGE BODY: APPS.OKL_PTC_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_PTC_PVT, status:VALID,
-
PACKAGE BODY: APPS.OKL_SETUPPOVALUES_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_SETUPPOVALUES_PVT, status:VALID,
-
PACKAGE BODY: APPS.OKL_STM_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_STM_PVT, status:VALID,
-
PACKAGE BODY: APPS.OKL_PTC_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_PTC_PVT, status:VALID,
-
PACKAGE BODY: APPS.OKL_SETUPPOPTIONS_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_SETUPPOPTIONS_PVT, status:VALID,
-
PACKAGE: APPS.OKL_MASTER_LEASE_AGREEMENT_PUB
12.2.2
owner:APPS, object_type:PACKAGE, object_name:OKL_MASTER_LEASE_AGREEMENT_PUB, status:VALID,
-
PACKAGE BODY: APPS.OKL_POL_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_POL_PVT, status:VALID,
-
PACKAGE BODY: APPS.OKL_SETUPPMVALUES_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_SETUPPMVALUES_PVT, status:VALID,
-
PACKAGE BODY: APPS.OKL_TCL_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_TCL_PVT, status:VALID,
-
PACKAGE BODY: APPS.OKL_SETUPPOPTIONS_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_SETUPPOPTIONS_PVT, status:VALID,
-
PACKAGE BODY: APPS.OKL_SETUPPMVALUES_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_SETUPPMVALUES_PVT, status:VALID,
-
PACKAGE BODY: APPS.OKL_EXECUTE_FORMULA_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_EXECUTE_FORMULA_PVT, status:VALID,
-
PACKAGE BODY: APPS.OKL_TCL_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_TCL_PVT, status:VALID,
-
PACKAGE BODY: APPS.OKL_ASE_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_ASE_PVT, status:VALID,
-
PACKAGE BODY: APPS.OKL_STM_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_STM_PVT, status:VALID,
-
PACKAGE BODY: APPS.OKL_RCA_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_RCA_PVT, status:VALID,
-
PACKAGE BODY: APPS.OKL_KHR_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_KHR_PVT, status:VALID,
-
PACKAGE BODY: APPS.OKL_CONTRACT_INFO
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_CONTRACT_INFO, status:VALID,
-
PACKAGE BODY: APPS.OKL_LLN_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_LLN_PVT, status:VALID,
-
PACKAGE: APPS.OKL_MASTER_LEASE_AGREEMENT_PUB
12.1.1
owner:APPS, object_type:PACKAGE, object_name:OKL_MASTER_LEASE_AGREEMENT_PUB, status:VALID,
-
PACKAGE BODY: APPS.OKL_ASE_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_ASE_PVT, status:VALID,
-
PACKAGE BODY: APPS.OKL_POL_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_POL_PVT, status:VALID,
-
PACKAGE BODY: APPS.OKL_LLN_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_LLN_PVT, status:VALID,
-
PACKAGE BODY: APPS.OKL_EXECUTE_FORMULA_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_EXECUTE_FORMULA_PVT, status:VALID,
-
PACKAGE BODY: APPS.OKL_TAI_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_TAI_PVT, status:VALID,