Search Results okl_opt_values_v
Overview
OKL_OPT_VALUES_V is a validity (V) view in the Oracle Lease and Finance Management (OKL) product family of Oracle E-Business Suite. Its documented purpose in the ETRM 12.2.2 metadata is to expose the values that can be associated with an option. In the OKL contract and lease authoring model, an option represents a contractual right or election available to a party on a lease or financing agreement — for example a purchase option, a renewal or extension option, a termination option, or a rate-related election. Each option may be presented to the user with a discrete set of allowable values, and OKL_OPT_VALUES_V is the reporting and integration surface through which those allowable values are published.
The view is owned by the APPS schema and is marked VALID. Because it is a view rather than a table, it stores no data of its own; it is a stable, read-only projection intended for queries, concurrent programs, Discoverer/BI Publisher reports, and external integration extracts. The leading "V" suffix follows the standard Oracle EBS convention for a view, and the "_V" object is the recommended reference point rather than the underlying base table.
Underlying Base Objects
The documented view definition reads exclusively from OKL_OPT_VALUES (referenced through a synonym), aliased as OVEB. The ETRM metadata lists OKL_OPT_VALUES (SYNONYM) as the single referenced base object. The view text is a straightforward column projection with no joins, unions, or aggregation:
- SELECT of the ROWID from OKL_OPT_VALUES, aliased as ROW_ID.
- Direct pass-through of ID, OBJECT_VERSION_NUMBER, OPT_ID, VALUE, DESCRIPTION, FROM_DATE, TO_DATE.
- Direct pass-through of the WHO audit columns: CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN.
Because no filtering predicate or join is applied, OKL_OPT_VALUES_V returns exactly the rows present in OKL_OPT_VALUES, with a renamed ROWID column. OKL_OPT_VALUES is the child of the option definition (keyed by OPT_ID, which points to the parent option entity in the OKL option setup model), and OBJECT_VERSION_NUMBER indicates that the base table participates in Oracle's optimistic locking (OAF/ADF row versioning) framework.
Key Columns
- ROW_ID — The base table ROWID, exposed for row-level identification and lock-aware processing.
- ID — Primary identifier of the individual option value record.
- OBJECT_VERSION_NUMBER — Optimistic locking / version stamp for the row.
- OPT_ID — Foreign key to the parent option definition; this is the column used to join an option to its permitted values.
- VALUE — The option value itself, i.e. the discrete value that may be selected when the option is exercised or configured.
- DESCRIPTION — Descriptive text explaining the value in user-facing terms.
- FROM_DATE / TO_DATE — Effective date range during which the value is valid, supporting date-effective option configuration.
- CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN — Standard Oracle WHO audit columns (last-update login uses the LAST_UPDATE_LOGIN alias).
Common Use Cases and Queries
Typical uses include populating option value lists in lease authoring, validating contract option inputs, feeding BI Publisher reports that display allowed option values, and extracting setup data during data conversion or migration.
List values for a specific option:
SELECT id, opt_id, value, description, from_date, to_date FROM apps.okl_opt_values_v WHERE opt_id = :p_opt_id ORDER BY value;
Retrieve only currently effective values (SYSDATE prototype):
SELECT v.opt_id, v.value, v.description
FROM apps.okl_opt_values_v v
WHERE TRUNC(SYSDATE) BETWEEN NVL(v.from_date, TRUNC(SYSDATE))
AND NVL(v.to_date, TRUNC(SYSDATE));
Audit recent setup changes:
SELECT id, opt_id, value, last_updated_by, last_update_date FROM apps.okl_opt_values_v WHERE last_update_date >= :p_since ORDER BY last_update_date DESC;
Queries should be executed with the APPS schema context or via a synonym granted to the reporting user; because the view is read-only, DML must be directed to OKL_OPT_VALUES through the supported OKL application APIs.
-
View: OKL_OPT_VALUES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_OPT_VALUES_V, object_name:OKL_OPT_VALUES_V, status:VALID, product: OKL - Lease and Finance Management , description: Values that can be associated with the option , implementation_dba_data: APPS.OKL_OPT_VALUES_V ,
-
View: OKL_OPT_VALUES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_OPT_VALUES_V, object_name:OKL_OPT_VALUES_V, status:VALID, product: OKL - Leasing and Finance Management , description: Values that can be associated with the option , implementation_dba_data: APPS.OKL_OPT_VALUES_V ,
-
SYNONYM: APPS.OKL_OPT_VALUES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:OKL_OPT_VALUES, status:VALID,
-
PACKAGE BODY: APPS.OKL_OPTIONS_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_OPTIONS_PVT, status:VALID,
-
APPS.OKL_SETUPPOVALUES_PVT SQL Statements
12.1.1
-
SYNONYM: APPS.OKL_OPT_VALUES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:OKL_OPT_VALUES, status:VALID,
-
APPS.OKL_SETUPOVERULES_PVT SQL Statements
12.1.1
-
PACKAGE BODY: APPS.OKL_SETUPOVERULES_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_SETUPOVERULES_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_SETUPPOVALUES_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_SETUPPOVALUES_PVT, status:VALID,
-
PACKAGE BODY: APPS.OKL_SETUPOVERULES_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_SETUPOVERULES_PVT, status:VALID,
-
APPS.OKL_SETUPPOVALUES_PVT SQL Statements
12.2.2
-
APPS.OKL_SETUPOVERULES_PVT SQL Statements
12.2.2
-
PACKAGE BODY: APPS.OKL_POV_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_POV_PVT, status:VALID,
-
PACKAGE BODY: APPS.OKL_OVD_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_OVD_PVT, status:VALID,
-
PACKAGE BODY: APPS.OKL_OVE_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_OVE_PVT, status:VALID,
-
PACKAGE BODY: APPS.OKL_OPTIONS_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_OPTIONS_PVT, status:VALID,
-
PACKAGE BODY: APPS.OKL_SETUPOPTIONS_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_SETUPOPTIONS_PVT, status:VALID,
-
PACKAGE BODY: APPS.OKL_POV_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_POV_PVT, status:VALID,
-
PACKAGE BODY: APPS.OKL_OVE_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_OVE_PVT, status:VALID,
-
PACKAGE BODY: APPS.OKL_SETUPOVDTEMPLATES_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_SETUPOVDTEMPLATES_PVT, status:VALID,
-
PACKAGE BODY: APPS.OKL_SETUPOPTVALUES_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_SETUPOPTVALUES_PVT, status:VALID,
-
PACKAGE BODY: APPS.OKL_SETUPOPTVALUES_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_SETUPOPTVALUES_PVT, status:VALID,
-
PACKAGE BODY: APPS.OKL_OVD_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_OVD_PVT, status:VALID,
-
PACKAGE BODY: APPS.OKL_SETUPOPTIONS_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_SETUPOPTIONS_PVT, status:VALID,
-
VIEW: APPS.OKL_PDT_OPT_VALS_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_PDT_OPT_VALS_UV, object_name:OKL_PDT_OPT_VALS_UV, status:VALID,
-
VIEW: APPS.OKL_PDT_OPT_VALS_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_PDT_OPT_VALS_UV, object_name:OKL_PDT_OPT_VALS_UV, status:VALID,
-
PACKAGE: APPS.OKL_OVE_PVT
12.2.2
owner:APPS, object_type:PACKAGE, object_name:OKL_OVE_PVT, status:VALID,
-
PACKAGE BODY: APPS.OKL_SETUPOVDTEMPLATES_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_SETUPOVDTEMPLATES_PVT, status:VALID,
-
PACKAGE: APPS.OKL_OVE_PVT
12.1.1
owner:APPS, object_type:PACKAGE, object_name:OKL_OVE_PVT, status:VALID,
-
APPS.OKL_SETUPOPTIONS_PVT SQL Statements
12.1.1
-
APPS.OKL_SETUPOPTIONS_PVT SQL Statements
12.2.2
-
PACKAGE BODY: APPS.OKL_SETUPPRODUCTS_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_SETUPPRODUCTS_PVT, status:VALID,
-
VIEW: APPS.OKL_OPT_RULE_VALUES_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_OPT_RULE_VALUES_UV, object_name:OKL_OPT_RULE_VALUES_UV, status:VALID,
-
PACKAGE BODY: APPS.OKL_SETUPPRODUCTS_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_SETUPPRODUCTS_PVT, status:VALID,
-
APPS.OKL_SETUPOPTVALUES_PVT SQL Statements
12.2.2
-
APPS.OKL_SETUPOVDTEMPLATES_PVT SQL Statements
12.1.1
-
PACKAGE BODY: APPS.OKL_SETUPOPTVALUES_PVT
12.1.1
-
VIEW: APPS.OKL_OPT_RULE_VALUES_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_OPT_RULE_VALUES_UV, object_name:OKL_OPT_RULE_VALUES_UV, status:VALID,
-
APPS.OKL_SETUPOPTVALUES_PVT SQL Statements
12.1.1
-
PACKAGE BODY: APPS.OKL_SETUPOPTVALUES_PVT
12.2.2
-
APPS.OKL_SETUPOVDTEMPLATES_PVT SQL Statements
12.2.2
-
APPS.OKL_OVE_PVT SQL Statements
12.2.2
-
VIEW: APPS.OKL_OPT_VALUES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_OPT_VALUES_V, object_name:OKL_OPT_VALUES_V, status:VALID,
-
VIEW: APPS.OKL_OPT_VALUES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_OPT_VALUES_V, object_name:OKL_OPT_VALUES_V, status:VALID,
-
APPS.OKL_OVE_PVT SQL Statements
12.1.1
-
APPS.OKL_OPTIONS_PVT SQL Statements
12.2.2
-
APPS.OKL_OPTIONS_PVT SQL Statements
12.1.1
-
APPS.OKL_POV_PVT SQL Statements
12.2.2
-
APPS.OKL_POV_PVT SQL Statements
12.1.1