Search Results okl_fe_eo_terms_v
Overview
OKL_FE_EO_TERMS_V is an APPS-owned database view within the Oracle Lease and Finance Management (OKL) module of Oracle E-Business Suite. It exposes the header records that define End-of-Term (EOT) options — the contractual choices available to a lessee when a lease reaches maturity, such as purchase, renewal, or return. The view is documented as VALID in both EBS 12.1.1 and 12.2.2, and retains the same definition across those releases.
The view serves a reporting and integration role. Because it presents EOT header data in a denormalized, language-resolved form, it can be queried directly by custom reports, concurrent programs, BI Publisher data models, and outbound interfaces without requiring the caller to reconstruct the join between the base and translation tables. Its name follows the OKL naming convention for a front-end (FE) read-only view, indicating it is intended for consumption rather than for DML. The view surfaces the column EOT_TYPE_CODE, the term-type classifier users commonly search on.
Underlying Base Objects
The view is defined over two documented base objects, both referenced through APPS synonyms:
- OKL_FE_EO_TERMS_B — the base (non-translated) table holding one row per end-of-term option header, including operational and descriptive columns.
- OKL_FE_EO_TERMS_ALL_TL — the translation table carrying the language-specific description, keyed by END_OF_TERM_ID and LANGUAGE.
The join predicates are B.END_OF_TERM_ID = T.END_OF_TERM_ID and T.LANGUAGE = USERENV('LANG'), so the view returns exactly one description per header, translated to the session language. Columns are drawn from the base table (aliased B) except END_OF_TERM_DESC, which comes from the translation table (aliased T).
Key Columns
END_OF_TERM_ID— primary identifier of the EOT option header.EOT_TYPE_CODE— classifies the end-of-term option type, the primary search attribute for this view.END_OF_TERM_NAME/END_OF_TERM_DESC— user-facing name and translated description.ORG_ID— operating unit that owns the record, supporting multi-org filtered queries.CURRENCY_CODE,PRODUCT_ID,CATEGORY_TYPE_CODE— commercial context of the option.ORIG_END_OF_TERM_ID— link to the originating header, useful for versioned or copied records.STS_CODE,EFFECTIVE_FROM_DATE,EFFECTIVE_TO_DATE— lifecycle status and effective dating.OBJECT_VERSION_NUMBER— optimistic locking token for the underlying row.ATTRIBUTE_CATEGORYandATTRIBUTE1–ATTRIBUTE15— the standard DFF flexfield columns.CREATED_BY,CREATION_DATE,LAST_UPDATED_BY,LAST_UPDATE_DATE,LAST_UPDATE_LOGIN— audit columns.
Common Use Cases and Queries
Typical scenarios include listing all active EOT options by type, feeding lease-maturity workflows, and validating that a header exists before an interface load. A representative query filtering on the searched column is:
SELECT end_of_term_id, end_of_term_name, eot_type_code, org_id, sts_code FROM okl_fe_eo_terms_v WHERE eot_type_code = 'PURCHASE' ORDER BY end_of_term_name;SELECT end_of_term_id, end_of_term_name, currency_code FROM okl_fe_eo_terms_v WHERE org_id = :p_org_id AND sts_code = 'ACTIVE' AND TRUNC(SYSDATE) BETWEEN effective_from_date AND NVL(effective_to_date, TRUNC(SYSDATE));SELECT DISTINCT eot_type_code FROM okl_fe_eo_terms_v ORDER BY eot_type_code;for populating a parameter LOV.
Because the view is read-only and filters on session language, it is safe for reporting but should not be used for DML; inserts and updates belong to the base tables through the OKL application APIs.
-
View: OKL_FE_EO_TERMS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_FE_EO_TERMS_V, object_name:OKL_FE_EO_TERMS_V, status:VALID, product: OKL - Lease and Finance Management , description: End-of-Term Options Header view , implementation_dba_data: APPS.OKL_FE_EO_TERMS_V ,
-
View: OKL_FE_EO_TERMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_FE_EO_TERMS_V, object_name:OKL_FE_EO_TERMS_V, status:VALID, product: OKL - Leasing and Finance Management , description: End-of-Term Options Header view , implementation_dba_data: APPS.OKL_FE_EO_TERMS_V ,
-
APPS.OKL_LRF_GENERATE_PVT SQL Statements
12.1.1
-
APPS.OKL_LRF_GENERATE_PVT SQL Statements
12.2.2
-
VIEW: APPS.OKL_FE_EO_TERM_VERS_V
12.1.1
-
VIEW: APPS.OKL_FE_EO_TERM_VERS_V
12.2.2
-
SYNONYM: APPS.OKL_FE_EO_TERMS_B
12.2.2
owner:APPS, object_type:SYNONYM, object_name:OKL_FE_EO_TERMS_B, status:VALID,
-
SYNONYM: APPS.OKL_FE_EO_TERMS_ALL_TL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:OKL_FE_EO_TERMS_ALL_TL, status:VALID,
-
SYNONYM: APPS.OKL_FE_EO_TERMS_B
12.1.1
owner:APPS, object_type:SYNONYM, object_name:OKL_FE_EO_TERMS_B, status:VALID,
-
SYNONYM: APPS.OKL_FE_EO_TERMS_ALL_TL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:OKL_FE_EO_TERMS_ALL_TL, status:VALID,
-
View: OKL_FE_EO_TERM_VERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_FE_EO_TERM_VERS_V, object_name:OKL_FE_EO_TERM_VERS_V, status:VALID, product: OKL - Leasing and Finance Management , description: End of Term Option versions view , implementation_dba_data: APPS.OKL_FE_EO_TERM_VERS_V ,
-
View: OKL_FE_EO_TERM_VERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_FE_EO_TERM_VERS_V, object_name:OKL_FE_EO_TERM_VERS_V, status:VALID, product: OKL - Lease and Finance Management , description: End of Term Option versions view , implementation_dba_data: APPS.OKL_FE_EO_TERM_VERS_V ,
-
PACKAGE: APPS.OKL_ETH_PVT
12.2.2
owner:APPS, object_type:PACKAGE, object_name:OKL_ETH_PVT, status:VALID,
-
PACKAGE: APPS.OKL_ETH_PVT
12.1.1
owner:APPS, object_type:PACKAGE, object_name:OKL_ETH_PVT, status:VALID,
-
PACKAGE BODY: APPS.OKL_LRT_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_LRT_PVT, status:VALID,
-
PACKAGE BODY: APPS.OKL_LRT_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_LRT_PVT, status:VALID,
-
PACKAGE BODY: APPS.OKL_ETH_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_ETH_PVT, status:VALID,
-
PACKAGE BODY: APPS.OKL_LRF_GENERATE_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_LRF_GENERATE_PVT, status:VALID,
-
PACKAGE BODY: APPS.OKL_FE_EO_TERM_OPTIONS_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_FE_EO_TERM_OPTIONS_PVT, status:VALID,
-
PACKAGE BODY: APPS.OKL_LRF_GENERATE_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_LRF_GENERATE_PVT, status:VALID,
-
PACKAGE BODY: APPS.OKL_FE_EO_TERM_OPTIONS_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_FE_EO_TERM_OPTIONS_PVT, status:VALID,
-
PACKAGE BODY: APPS.OKL_ETH_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_ETH_PVT, status:VALID,
-
PACKAGE BODY: APPS.OKL_PA_DATA_INTEGRITY
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_PA_DATA_INTEGRITY, status:VALID,
-
PACKAGE BODY: APPS.OKL_PA_DATA_INTEGRITY
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_PA_DATA_INTEGRITY, status:VALID,
-
PACKAGE BODY: APPS.OKL_SALES_QUOTE_QA_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_SALES_QUOTE_QA_PVT, status:VALID,
-
APPS.OKL_FE_EO_TERM_OPTIONS_PVT SQL Statements
12.1.1
-
PACKAGE BODY: APPS.OKL_SALES_QUOTE_QA_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_SALES_QUOTE_QA_PVT, status:VALID,
-
APPS.OKL_FE_EO_TERM_OPTIONS_PVT SQL Statements
12.2.2
-
VIEW: APPS.OKL_FE_EO_TERM_VERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_FE_EO_TERM_VERS_V, object_name:OKL_FE_EO_TERM_VERS_V, status:VALID,
-
VIEW: APPS.OKL_FE_EO_TERM_VERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_FE_EO_TERM_VERS_V, object_name:OKL_FE_EO_TERM_VERS_V, status:VALID,
-
VIEW: APPS.OKL_FE_EO_TERMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_FE_EO_TERMS_V, object_name:OKL_FE_EO_TERMS_V, status:VALID,
-
VIEW: APPS.OKL_FE_EO_TERMS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_FE_EO_TERMS_V, object_name:OKL_FE_EO_TERMS_V, status:VALID,
-
APPS.OKL_PA_DATA_INTEGRITY SQL Statements
12.1.1
-
PACKAGE BODY: APPS.OKL_LRF_GENERATE_PVT
12.1.1
-
PACKAGE BODY: APPS.OKL_LRF_GENERATE_PVT
12.2.2
-
APPS.OKL_PA_DATA_INTEGRITY SQL Statements
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
-
APPS.OKL_ETH_PVT dependencies on OKL_FE_EO_TERMS_V
12.2.2
-
12.2.2 FND Design Data
12.2.2
-
APPS.OKL_LRF_GENERATE_PVT dependencies on OKL_FE_EO_TERMS_V
12.1.1
-
APPS.OKL_LRT_PVT dependencies on OKL_FE_EO_TERMS_V
12.1.1
-
APPS.OKL_PA_DATA_INTEGRITY dependencies on OKL_FE_EO_TERMS_V
12.1.1
-
APPS.OKL_LRF_GENERATE_PVT dependencies on OKL_FE_EO_TERMS_V
12.2.2
-
APPS.OKL_ETH_PVT dependencies on OKL_FE_EO_TERMS_V
12.1.1
-
APPS.OKL_LRT_PVT dependencies on OKL_FE_EO_TERMS_V
12.2.2
-
APPS.OKL_FE_EO_TERM_OPTIONS_PVT dependencies on OKL_FE_EO_TERMS_V
12.2.2
-
APPS.OKL_ETH_PVT dependencies on OKL_FE_EO_TERMS_V
12.1.1
-
APPS.OKL_FE_EO_TERM_OPTIONS_PVT dependencies on OKL_FE_EO_TERMS_V
12.1.1