Search Results delivered_date
Overview
OKL_K_LINES_V is an APPS-owned view in the Oracle Lease Management (OKL) module, a component of Oracle E-Business Suite 12.1.1 and 12.2.2. It serves as the lease-specific shadow view for the Oracle Contracts Core line tables OKC_K_LINES_B and OKC_K_LINES_TL. Where the standard Contracts Core tables store the base contract line structure common to all contract types, OKL_K_LINES_V exposes the additional attributes that apply specifically to contracts originated in Oracle Lease Management and that do not fit within the standard OKC line model. The view is documented as VALID and carries a one-to-one relationship with its underlying shadow table, making it the primary reporting and integration surface for lease-line-level detail.
Because the view joins the lease extension attributes to the contract line identity columns (ID, ROW_ID, OBJECT_VERSION_NUMBER), it allows reporting tools, concurrent programs, and external integrations to retrieve leasing-specific line data without querying the shadow table directly. This is particularly relevant for users searching on attributes such as delivered_date, which exists only in the OKL extension layer, not in the standard OKC line tables.
Underlying Base Objects
Per the ETRM metadata, OKL_K_LINES_V is defined over the base object OKL_K_LINES, accessed through a SYNONYM owned by APPS. OKL_K_LINES is the physical shadow table into which Oracle Lease Management stores attributes that extend the Oracle Contracts Core line tables OKC_K_LINES_B (the base line table) and OKC_K_LINES_TL (the translation table). The view text selects exclusively from this shadow table (aliased KLE), projecting the ROWID as ROW_ID and exposing each stored attribute column. No additional joins to OKC_K_LINES_B or OKC_K_LINES_TL are present in the documented view text; the linkage to Contracts Core is conceptual, achieved through the shared line identifier used by the OKL application layer. Consequently, the view functions as the canonical read interface for lease line extensions.
Key Columns
- ROW_ID, ID, OBJECT_VERSION_NUMBER — Row identifier and optimistic locking/versioning columns that support the Apps framework.
- KLE_ID, STY_ID — Primary key of the OKL extension record and the associated line style identifier.
- DELIVERED_DATE — The date on which the leased asset was delivered; a commonly queried attribute used in asset lifecycle and revenue recognition reporting.
- TITLE_DATE, DATE_SOLD, DATE_REMARKETED — Asset disposition and ownership milestone dates.
- DATE_LAST_INSPECTION, DATE_NEXT_INSPECTION_DUE, DATE_LAST_REVIEW, DATE_RESIDUAL_LAST_REVIEW, DATE_LAST_REAMORTISATION, DATE_LAST_CLEANUP — Operational and residual-value management dates.
- ESTIMATED_OEC, LAO_AMOUNT, LRV_AMOUNT, CAPITAL_REDUCTION, TRADEIN_AMOUNT, REFINANCE_AMOUNT, REMARKETED_AMOUNT — Financial amounts used in lease valuation, residual, and remarketing calculations.
- LRS_PERCENT, PERCENT, PERCENT_STAKE, EVERGREEN_PERCENT, RESIDUAL_PERCENTAGE, COVERAGE_RATIO — Percentage and ratio attributes for lease structures and participations.
- YEAR_BUILT, YEAR_OF_MANUFACTURE, GROSS_SQUARE_FOOTAGE, NET_RENTABLE, OCCUPANCY, WEIGHTED_AVERAGE_LIFE — Asset physical and demographic characteristics.
- CREDIT_TENANT_YN, PRESCRIBED_ASSET_YN — Yes/no indicator flags.
Common Use Cases and Queries
Typical scenarios include asset delivery tracking, residual-value and remarketing analysis, and integration feeds that must surface lease-specific line attributes to downstream systems. A representative query filtering on the searched attribute is:
SELECT kle_id, id, delivered_date, estimated_oec, lrv_amount FROM okl_k_lines_v WHERE delivered_date BETWEEN :p_from AND :p_to;SELECT id, title_date, date_sold, date_remarketed FROM okl_k_lines_v WHERE kLE_id = :p_kle_id;SELECT year_built, year_of_manufacture, occupancy, gross_square_footage FROM okl_k_lines_v WHERE prescribed_asset_yn = 'Y';
Because the view derives from a single shadow table, queries are efficient and free of join overhead, making it suitable for high-volume extracts and reporting applications.
-
View: OKL_K_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_K_LINES_V, object_name:OKL_K_LINES_V, status:VALID, product: OKL - Lease and Finance Management , description: Oracle Lease Management shadow table for Oracle Contracts Core line tables, OKC_K_LINES_B and OKC_K_LINES_TL. OKL_K_LINES contains attributes that relate to contracts created in OKL and do not fit into the standard lines tables OKC_K_LINES_ , implementation_dba_data: APPS.OKL_K_LINES_V ,
-
View: OKL_K_LINES_FULL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_K_LINES_FULL_V, object_name:OKL_K_LINES_FULL_V, status:VALID, product: OKL - Lease and Finance Management , description: OKL_K_LINES_FULL_V is the full view on tables OKC_K_LINES_B and OKL_K_LINES. It combines the attributes of contracts core and lease management contract line tables. , implementation_dba_data: APPS.OKL_K_LINES_FULL_V ,