Search Results okl_frequency
Overview
OKL_PAYMENT_FREQUENCY_UV is an Oracle E-Business Suite view owned by the APPS schema. It exposes the set of enabled payment frequency lookup values used throughout Oracle Lease and Finance Management (OKL) and the broader E-Business Suite contracting and billing modules. The view is a presentation-layer object: rather than storing data of its own, it projects a filtered, ordered, and language-aware subset of Oracle Application Object Library (FND) lookup values into a simple three-column result set suitable for concurrent programs, Oracle Forms LOVs, Oracle Application Framework (OAF) pages, and external integrations.
Its central role is to provide a single, consistent definition of the valid values for the OKL_FREQUENCY lookup type, so that every caller resolves the same code, the same user-facing name, and the same descriptive text. This guards against divergent hard-coded lists and ensures that translations follow the session's language setting.
Underlying Base Objects
The view is defined exclusively over FND_LOOKUP_VALUES, referenced in the ETRM metadata through the synonym FND_LOOKUP_VALUES. The underlying table, FND_LOOKUP_VALUES, is a core EBS internal table that holds the individual values belonging to each lookup type defined in FND_LOOKUP_TYPES.
The following documented predicates are applied:
- LANGUAGE = USERENV('LANG') — restricts rows to the language of the current database session, ensuring the returned MEANING and DESCRIPTION reflect the user's locale.
- LOOKUP_TYPE = 'OKL_FREQUENCY' — limits the result set to the payment frequency lookup type.
- ENABLED_FLAG = 'Y' — excludes disabled values.
- NVL(START_DATE_ACTIVE,SYSDATE) <= SYSDATE and NVL(END_DATE_ACTIVE, SYSDATE + 1) > SYSDATE — applies effective-dating so that only values active as of the current date are returned.
The final ORDER BY MEANING clause presents values alphabetically by their user-facing name.
Key Columns
- NAME — mapped from FND_LOOKUP_VALUES.MEANING. This is the translatable, user-facing label presented to end users in lists and forms.
- CODE — mapped from FND_LOOKUP_VALUES.LOOKUP_CODE. This is the internal, non-translatable identifier that is stored on transactional records and referenced by application logic.
- DESCRIPTION — mapped from FND_LOOKUP_VALUES.DESCRIPTION. Provides optional supplementary text explaining the frequency value.
Although only three columns are projected, the filtering relies on the standard FND columns LANGUAGE, LOOKUP_TYPE, ENABLED_FLAG, START_DATE_ACTIVE, and END_DATE_ACTIVE.
Common Use Cases and Queries
The view is typically used to populate selection lists, validate user input, or drive reports and interfaces where a payment frequency code must be resolved to a display name or description.
- Populating LOVs in payment, billing, and lease screens.
- Reporting on payment frequencies along with their descriptive text.
- Validating inbound interface data against accepted frequency codes.
- Resolving a stored CODE to its translated NAME for output and printing.
Representative queries include:
SELECT code, name, description FROM apps.okl_payment_frequency_uv;
SELECT name FROM apps.okl_payment_frequency_uv WHERE code = :p_code;
SELECT code, name FROM apps.okl_payment_frequency_uv ORDER BY name;
Because the view already enforces language, enabled status, and effective dates, callers do not need to repeat those predicates. Values configured or disabled in FND flow automatically into the view, so maintenance remains centralized.
-
Lookup Type: OKL_FREQUENCY
12.1.1
product: OKL - Leasing and Finance Management , meaning: OKL_FREQUENCY , description: Contract Billing Frequency ,
-
Lookup Type: OKL_FREQUENCY
12.2.2
product: OKL - Lease and Finance Management , meaning: OKL_FREQUENCY , description: Contract Billing Frequency ,
-
VIEW: APPS.OKL_PAYMENT_FREQUENCY_UV
12.1.1
-
VIEW: APPS.OKL_PAYMENT_FREQUENCY_UV
12.2.2
-
View: OKL_TIME_UNITS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_TIME_UNITS_V, object_name:OKL_TIME_UNITS_V, status:VALID, product: OKL - Leasing and Finance Management , description: OKL_TIME_UNITS_V contains all the frequency time units used in Lease Management.It based on lookup code 'OKL_FREQUENCY'. This view is used as object source for jtf_object OKL_TUOM. , implementation_dba_data: APPS.OKL_TIME_UNITS_V ,
-
VIEW: APPS.OKL_TIME_UNITS_V
12.1.1
-
VIEW: APPS.OKL_TIME_UNITS_V
12.2.2
-
View: OKL_TIME_UNITS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_TIME_UNITS_V, object_name:OKL_TIME_UNITS_V, status:VALID, product: OKL - Lease and Finance Management , description: OKL_TIME_UNITS_V contains all the frequency time units used in Lease Management.It based on lookup code 'OKL_FREQUENCY'. This view is used as object source for jtf_object OKL_TUOM. , implementation_dba_data: APPS.OKL_TIME_UNITS_V ,
-
VIEW: APPS.OKL_CS_PPD_PAYMENTS_UV
12.1.1
-
VIEW: APPS.OKL_CS_PPD_PAYMENTS_UV
12.2.2
-
VIEW: APPS.OKL_PYMT_LINE_DTLS_ALL_UV
12.1.1
-
VIEW: APPS.OKL_AM_PYMT_LINE_DTLS_UV
12.1.1
-
VIEW: APPS.OKL_PYMT_LINE_DTLS_ALL_UV
12.2.2
-
VIEW: APPS.OKL_LS_RT_FCTR_SETS_UV
12.1.1
-
VIEW: APPS.OKL_LS_RT_FCTR_SETS_UV
12.2.2
-
VIEW: APPS.OKL_AM_PYMT_LINE_DTLS_UV
12.2.2
-
VIEW: APPS.OKL_OR_PAYMENT_HEADER_UV
12.2.2
-
VIEW: APPS.OKL_OR_PAYMENT_HEADER_UV
12.1.1
-
VIEW: APPS.OKL_SEC_INVESTORS_UV
12.2.2
-
View: OKL_PAYMENT_FREQUENCY_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_PAYMENT_FREQUENCY_UV, object_name:OKL_PAYMENT_FREQUENCY_UV, status:VALID, product: OKL - Leasing and Finance Management , description: Securitization - Payment frequency UI view , implementation_dba_data: APPS.OKL_PAYMENT_FREQUENCY_UV ,
-
VIEW: APPS.OKL_SEC_INVESTORS_UV
12.1.1
-
View: OKL_PAYMENT_FREQUENCY_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_PAYMENT_FREQUENCY_UV, object_name:OKL_PAYMENT_FREQUENCY_UV, status:VALID, product: OKL - Lease and Finance Management , description: Securitization - Payment frequency UI view , implementation_dba_data: APPS.OKL_PAYMENT_FREQUENCY_UV ,
-
View: OKL_CS_PPD_PAYMENTS_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_CS_PPD_PAYMENTS_UV, object_name:OKL_CS_PPD_PAYMENTS_UV, status:VALID, product: OKL - Lease and Finance Management , implementation_dba_data: APPS.OKL_CS_PPD_PAYMENTS_UV ,
-
View: OKL_CS_PPD_PAYMENTS_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_CS_PPD_PAYMENTS_UV, object_name:OKL_CS_PPD_PAYMENTS_UV, status:VALID, product: OKL - Leasing and Finance Management , implementation_dba_data: APPS.OKL_CS_PPD_PAYMENTS_UV ,
-
View: OKL_AM_PYMT_LINE_DTLS_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_AM_PYMT_LINE_DTLS_UV, object_name:OKL_AM_PYMT_LINE_DTLS_UV, status:VALID, product: OKL - Leasing and Finance Management , implementation_dba_data: APPS.OKL_AM_PYMT_LINE_DTLS_UV ,
-
View: OKL_PYMT_LINE_DTLS_ALL_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_PYMT_LINE_DTLS_ALL_UV, object_name:OKL_PYMT_LINE_DTLS_ALL_UV, status:VALID, product: OKL - Leasing and Finance Management , description: View gives Payment Line Details for all operating Units. , implementation_dba_data: APPS.OKL_PYMT_LINE_DTLS_ALL_UV ,
-
View: OKL_PYMT_LINE_DTLS_ALL_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_PYMT_LINE_DTLS_ALL_UV, object_name:OKL_PYMT_LINE_DTLS_ALL_UV, status:VALID, product: OKL - Lease and Finance Management , description: View gives Payment Line Details for all operating Units. , implementation_dba_data: APPS.OKL_PYMT_LINE_DTLS_ALL_UV ,
-
View: OKL_AM_PYMT_LINE_DTLS_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_AM_PYMT_LINE_DTLS_UV, object_name:OKL_AM_PYMT_LINE_DTLS_UV, status:VALID, product: OKL - Lease and Finance Management , implementation_dba_data: APPS.OKL_AM_PYMT_LINE_DTLS_UV ,
-
View: OKL_OR_PAYMENT_HEADER_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_OR_PAYMENT_HEADER_UV, object_name:OKL_OR_PAYMENT_HEADER_UV, status:VALID, product: OKL - Lease and Finance Management , implementation_dba_data: APPS.OKL_OR_PAYMENT_HEADER_UV ,
-
View: OKL_OR_PAYMENT_HEADER_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_OR_PAYMENT_HEADER_UV, object_name:OKL_OR_PAYMENT_HEADER_UV, status:VALID, product: OKL - Leasing and Finance Management , implementation_dba_data: APPS.OKL_OR_PAYMENT_HEADER_UV ,
-
View: OKL_LS_RT_FCTR_SETS_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_LS_RT_FCTR_SETS_UV, object_name:OKL_LS_RT_FCTR_SETS_UV, status:VALID, product: OKL - Leasing and Finance Management , implementation_dba_data: APPS.OKL_LS_RT_FCTR_SETS_UV ,
-
View: OKL_LS_RT_FCTR_SETS_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_LS_RT_FCTR_SETS_UV, object_name:OKL_LS_RT_FCTR_SETS_UV, status:VALID, product: OKL - Lease and Finance Management , implementation_dba_data: APPS.OKL_LS_RT_FCTR_SETS_UV ,
-
View: OKL_SEC_INVESTORS_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_SEC_INVESTORS_UV, object_name:OKL_SEC_INVESTORS_UV, status:VALID, product: OKL - Leasing and Finance Management , description: User Interface view for securitization investors , implementation_dba_data: APPS.OKL_SEC_INVESTORS_UV ,
-
View: OKL_SEC_INVESTORS_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_SEC_INVESTORS_UV, object_name:OKL_SEC_INVESTORS_UV, status:VALID, product: OKL - Lease and Finance Management , description: User Interface view for securitization investors , implementation_dba_data: APPS.OKL_SEC_INVESTORS_UV ,
-
VIEW: APPS.OKL_TIME_UNITS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_TIME_UNITS_V, object_name:OKL_TIME_UNITS_V, status:VALID,
-
VIEW: APPS.OKL_TIME_UNITS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_TIME_UNITS_V, object_name:OKL_TIME_UNITS_V, status:VALID,
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
VIEW: APPS.OKL_FEES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_FEES_V, object_name:OKL_FEES_V, status:VALID,
-
TABLE: OKL.OKL_FEES_B
12.2.2
owner:OKL, object_type:TABLE, fnd_design_data:OKL.OKL_FEES_B, object_name:OKL_FEES_B, status:VALID,
-
VIEW: APPS.OKL_ASSETS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_ASSETS_V, object_name:OKL_ASSETS_V, status:VALID,
-
VIEW: APPS.OKL_FEES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_FEES_V, object_name:OKL_FEES_V, status:VALID,
-
VIEW: APPS.OKL_ASSETS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_ASSETS_V, object_name:OKL_ASSETS_V, status:VALID,
-
TABLE: OKL.OKL_FEES_B
12.1.1
owner:OKL, object_type:TABLE, fnd_design_data:OKL.OKL_FEES_B, object_name:OKL_FEES_B, status:VALID,
-
TABLE: OKL.OKL_FE_STD_RT_TMP_ALL_B
12.1.1
owner:OKL, object_type:TABLE, fnd_design_data:OKL.OKL_FE_STD_RT_TMP_ALL_B, object_name:OKL_FE_STD_RT_TMP_ALL_B, status:VALID,
-
TABLE: OKL.OKL_QUICK_QUOTES_ALL_B
12.1.1
owner:OKL, object_type:TABLE, fnd_design_data:OKL.OKL_QUICK_QUOTES_ALL_B, object_name:OKL_QUICK_QUOTES_ALL_B, status:VALID,
-
VIEW: APPS.OKL_QUICK_QUOTES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_QUICK_QUOTES_V, object_name:OKL_QUICK_QUOTES_V, status:VALID,
-
TABLE: OKL.OKL_QUICK_QUOTES_ALL_B
12.2.2
owner:OKL, object_type:TABLE, fnd_design_data:OKL.OKL_QUICK_QUOTES_ALL_B, object_name:OKL_QUICK_QUOTES_ALL_B, status:VALID,
-
VIEW: APPS.OKL_QUICK_QUOTES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_QUICK_QUOTES_V, object_name:OKL_QUICK_QUOTES_V, status:VALID,
-
TABLE: OKL.OKL_FE_STD_RT_TMP_ALL_B
12.2.2
owner:OKL, object_type:TABLE, fnd_design_data:OKL.OKL_FE_STD_RT_TMP_ALL_B, object_name:OKL_FE_STD_RT_TMP_ALL_B, status:VALID,