Search Results date_last_inspection
Overview
OKL_LA_REAL_ESTATE_UV is a user interface view owned by the APPS schema within Oracle E-Business Suite 12.1.1 and 12.2.2. It belongs to the OKL product family — Leasing and Finance Management — and serves as the presentation-layer data source for the asset real estate page. The name suffix "UV" denotes a "user view," a convention in Oracle EBS indicating that the object is designed to feed a specific OAF or Forms-based UI page rather than to serve as a general-purpose reporting entity.
Functionally, the view flattens a single row per lease line into a horizontally oriented record describing real-estate-specific attributes: physical characteristics of the property (year built, square footage, occupancy, coverage), valuation and financing data (appraisal value, refinance amount, bond equivalent yield, weighted average life), inspection dates, and deal qualification flags. Because the view is bound to the transaction UI, it is also accessible for ad-hoc SQL reporting against the APPS schema, which makes it a frequent target for extract and integration programs that need real-estate attributes at the contract line level.
Underlying Base Objects
The documented view text confirms that OKL_LA_REAL_ESTATE_UV selects exclusively from OKL_K_LINES, aliased KLE, and does not perform any join itself. However, the ETRM metadata records the broader dependency set referenced by the OKL real estate page: OKC_K_LINES_B, OKC_K_LINES_TL, OKC_K_PARTY_ROLES_B, OKL_K_LINES, and PO_VENDORS (itself a view). OKL_K_LINES is the leasing-specific extension table that stores the real-estate attribute columns surfaced here, while OKC_K_LINES_B and OKC_K_LINES_TL hold the base contract line definition and its translated (TL) descriptive text. OKC_K_PARTY_ROLES_B supplies the party role assignments — tenants, lessors, and related parties — used on the page, and PO_VENDORS provides supplier context for the associated parties.
In practice, real-estate attributes are stored in OKL_K_LINES only for lines where the line type or price code (PRC_CODE) identifies a real-estate asset, so the view is sparse by design; rows for non-real-estate lines carry nulls in the real-estate columns.
Key Columns
The view exposes nineteen columns, most of them numeric values cast with TO_CHAR so the UI can present them without implicit formatting:
- ID — Primary key from OKL_K_LINES (KLE.ID); the lease line identifier.
- YEAR_BUILT — Year the property was constructed, the field most commonly searched in this view.
- INITIAL_DIRECT_COST, REFINANCE_AMOUNT, AMOUNT, APPRAISAL_VALUE — Monetary measures expressed as character strings.
- OCCUPANCY, COVERAGE — Occupancy rate and coverage ratio for the property.
- WEIGHTED_AVERAGE_LIFE, BOND_EQUIVALENT_YIELD — Financing analytics used in lease and bond-style real-estate deals.
- GROSS_SQUARE_FOOTAGE, NET_RENTABLE — Physical size metrics of the premises.
- DATE_LAST_INSPECTION, DATE_NEXT_INSPECTION_DUE, DATE_APPRAISAL, DATE_LETTER_ACCEPTANCE, DATE_COMMITMENT_EXPIRATION — Key real-estate milestone dates.
- CREDIT_TENANT_YN, SECURED_DEAL_YN — Y/N qualification flags; unlike the numeric columns these are not converted to text.
- PRC_CODE — Price code identifying the pricing or product classification of the line.
Common Use Cases and Queries
Typical uses include real-estate portfolio reporting, inspection scheduling, valuation tracking, and data validation before migrating lease contracts. Because YEAR_BUILT is stored as a number in OKL_K_LINES but rendered as text by the view, filtering on it requires either an implicit numeric conversion or a TO_NUMBER wrapper.
- List real-estate lines built after a given year:
SELECT id, year_built, gross_square_footage, appraisal_value FROM apps.okl_la_real_estate_uv WHERE TO_NUMBER(year_built) >= 2000 ORDER BY id;
- Identify properties due for inspection:
SELECT id, date_last_inspection, date_next_inspection_due FROM apps.okl_la_real_estate_uv WHERE date_next_inspection_due BETWEEN SYSDATE AND SYSDATE + 90;
- Summarize secured versus unsecured real-estate exposure:
SELECT secured_deal_yn, COUNT(*), SUM(TO_NUMBER(amount)) FROM apps.okl_la_real_estate_uv GROUP BY secured_deal_yn;
When joining to contract headers, link BACK to OKL_K_LINES or OKC_K_LINES_B on ID to obtain contract number, line number, and party role detail supplied by the companion OKC base objects.
-
View: OKL_LA_REAL_ESTATE_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_LA_REAL_ESTATE_UV, object_name:OKL_LA_REAL_ESTATE_UV, status:VALID, product: OKL - Leasing and Finance Management , description: User interface view for asset real estate page , implementation_dba_data: APPS.OKL_LA_REAL_ESTATE_UV ,
-
View: OKL_LA_REAL_ESTATE_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_LA_REAL_ESTATE_UV, object_name:OKL_LA_REAL_ESTATE_UV, status:VALID, product: OKL - Lease and Finance Management , description: User interface view for asset real estate page , implementation_dba_data: APPS.OKL_LA_REAL_ESTATE_UV ,
-
VIEW: OKL.OKL_K_LINES_H#
12.2.2
-
VIEW: OKL.OKL_K_LINES#
12.2.2
-
VIEW: APPS.OKL_LA_REAL_ESTATE_UV
12.2.2
-
VIEW: APPS.OKL_LA_REAL_ESTATE_UV
12.1.1
-
VIEW: APPS.OKL_LA_REAL_ESTATE_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_LA_REAL_ESTATE_UV, object_name:OKL_LA_REAL_ESTATE_UV, status:VALID,
-
VIEW: APPS.OKL_LA_REAL_ESTATE_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_LA_REAL_ESTATE_UV, object_name:OKL_LA_REAL_ESTATE_UV, status:VALID,
-
APPS.OKL_KLE_PVT SQL Statements
12.1.1
-
View: OKL_K_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_K_LINES_V, object_name:OKL_K_LINES_V, status:VALID, product: OKL - Leasing 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_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 ,
-
APPS.OKL_KLE_PVT SQL Statements
12.2.2
-
VIEW: OKL.OKL_K_LINES#
12.2.2
owner:OKL, object_type:VIEW, object_name:OKL_K_LINES#, status:VALID,
-
VIEW: OKL.OKL_K_LINES_H#
12.2.2
owner:OKL, object_type:VIEW, object_name:OKL_K_LINES_H#, status:VALID,
-
VIEW: APPS.OKL_K_LINES_V
12.1.1
-
VIEW: APPS.OKL_K_LINES_V
12.2.2
-
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 ,
-
View: OKL_K_LINES_FULL_V
12.1.1
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 - Leasing 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 ,
-
VIEW: APPS.OKL_K_LINES_FULL_V
12.1.1
-
VIEW: APPS.OKL_K_LINES_FULL_V
12.2.2
-
TABLE: OKL.OKL_K_LINES_H
12.2.2
owner:OKL, object_type:TABLE, fnd_design_data:OKL.OKL_K_LINES_H, object_name:OKL_K_LINES_H, status:VALID,
-
TABLE: OKL.OKL_K_LINES
12.1.1
owner:OKL, object_type:TABLE, fnd_design_data:OKL.OKL_K_LINES, object_name:OKL_K_LINES, status:VALID,
-
TABLE: OKL.OKL_K_LINES_H
12.1.1
owner:OKL, object_type:TABLE, fnd_design_data:OKL.OKL_K_LINES_H, object_name:OKL_K_LINES_H, status:VALID,
-
TABLE: OKL.OKL_K_LINES
12.2.2
owner:OKL, object_type:TABLE, fnd_design_data:OKL.OKL_K_LINES, object_name:OKL_K_LINES, status:VALID,
-
VIEW: APPS.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,
-
VIEW: APPS.OKL_K_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_K_LINES_V, object_name:OKL_K_LINES_V, status:VALID,
-
PACKAGE: APPS.OKL_KLE_PVT
12.2.2
-
PACKAGE: APPS.OKL_KLE_PVT
12.1.1
-
VIEW: APPS.OKL_K_LINES_FULL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_K_LINES_FULL_V, object_name:OKL_K_LINES_FULL_V, status:VALID,
-
VIEW: APPS.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,
-
PACKAGE BODY: APPS.OKL_KLE_PVT
12.2.2
-
PACKAGE BODY: APPS.OKL_KLE_PVT
12.1.1
-
APPS.OKL_COPY_ASSET_PVT SQL Statements
12.2.2
-
APPS.OKL_COPY_ASSET_PVT SQL Statements
12.1.1
-
APPS.OKL_SPLIT_CONTRACT_PVT SQL Statements
12.2.2
-
APPS.OKL_SPLIT_CONTRACT_PVT SQL Statements
12.1.1
-
PACKAGE BODY: APPS.OKL_KLE_PVT_W
12.2.2
-
PACKAGE BODY: APPS.OKL_KLE_PVT_W
12.1.1
-
APPS.OKL_KLE_PVT dependencies on OKL_API
12.1.1
-
APPS.OKL_KLE_PVT dependencies on OKL_K_LINES_H
12.1.1
-
APPS.OKL_KLE_PVT dependencies on OKL_K_LINES_H
12.2.2
-
APPS.OKL_SPLIT_CONTRACT_PVT dependencies on DUAL
12.1.1
-
APPS.OKL_KLE_PVT dependencies on OKL_K_LINES
12.1.1
-
APPS.OKL_KLE_PVT dependencies on OKL_K_LINES
12.2.2
-
APPS.OKL_KLE_PVT dependencies on OKL_API
12.2.2
-
APPS.OKL_SPLIT_CONTRACT_PVT dependencies on DUAL
12.2.2
-
APPS.OKL_KLE_PVT dependencies on OKL_K_LINES_V
12.1.1
-
APPS.OKL_KLE_PVT dependencies on OKL_K_LINES_V
12.2.2
-
APPS.OKL_COPY_ASSET_PVT dependencies on DUAL
12.2.2
-
APPS.OKL_COPY_CONTRACT_PVT SQL Statements
12.2.2