Search Results okl_request_type
Overview
The view APPS.OKL_LEASE_RENEWALS_ALL_UV is a user-facing (UV) database view within the Oracle Lease and Finance Management (OKL) module of Oracle E-Business Suite. It exposes the data stored in the transaction request table OKL_TRX_REQUESTS, presenting lease restructuring, renewal, and renegotiation requests in a denormalized, report-ready format. The view consolidates technical identifiers, monetary terms, dates, and descriptive lookup meanings into a single queryable object, allowing reporting tools, concurrent programs, and integration interfaces to retrieve lease renewal information without reconstructing the joins against lookup and user tables.
Because the view is owned by APPS and built on a multi-org style naming convention with the _ALL_UV suffix, it is intended for use in both single-org and multi-org (MOAC) reporting contexts within EBS 12.1.1 and 12.2.2. It does not perform row-level security itself; consumers must apply appropriate operating unit or business unit filters where relevant.
Underlying Base Objects
The view is defined over the following documented base objects:
- OKL_TRX_REQUESTS (SYNONYM) — the primary transactional table holding lease renewal, restructuring, and refinancing request records. Aliased as
TRQ. - FND_LOOKUPS (VIEW) — joined twice, as
STATandTYPE, to decode the request status and request type codes into readable meanings. - FND_USER (SYNONYM) — aliased as
USR, joined onTRQ.LAST_UPDATED_BY = USR.USER_IDto expose the requesting user's name. - FND_GLOBAL (PACKAGE) — referenced in view metadata for session and security context, consistent with MOAC-enabled views.
Two outer joins to FND_LOOKUPS resolve codes using the lookup types OKL_REQUEST_STATUS and OKL_REQUEST_TYPE, so the view always returns the request rows while simultaneously providing human-readable status and type descriptions.
Key Columns
- REQUEST_NUMBER / REQUEST_ID — the user-visible request number and the internal primary key (
TRQ.ID). - REQUEST_STATUS_CODE / REQUEST_STATUS — the raw code and its decoded meaning (e.g., Pending, Approved, Rejected) from
OKL_REQUEST_STATUS. - REQUEST_TYPE_CODE / REQUEST_TYPE — the raw code and decoded meaning from
OKL_REQUEST_TYPE, distinguishing renewals from restructures. - RESTRUCTURE_DATE — the effective date of the restructuring or renewal action, sourced directly from
TRQ.RESTRUCTURE_DATE. This is the column of primary interest for users searching onrestructure_date. - START_DATE / END_DATE / TERM — lease term boundaries and duration (
TERM_DURATION). - RENT / CURRENCY_CODE / RESIDUAL / YIELD / YIELD_TYPE — financial terms of the proposed restructure, including payment amount, currency, residual value, and yield classification.
- PAYMENT_FREQUENCY_CODE / PAST_DUE_YN — payment cadence and a flag indicating whether the request is past due.
- PARENT_KHR_ID / KHR_ID — the associated lease (KHR) identifiers, linking the request to its lease contract and any parent lease.
- REQUESTED_BY / CREATED_BY / COMMENTS / REQUEST_DATE — audit and descriptive fields, with
REQUEST_DATEderived fromTRQ.LAST_UPDATE_DATE.
Common Use Cases and Queries
Typical uses include reporting on pending renewals, tracking restructure effective dates, and feeding downstream calculations. A representative query selecting by restructure date:
SELECT request_number,
request_status,
request_type,
restructure_date,
start_date,
end_date,
rent,
currency_code,
requested_by
FROM apps.okl_lease_renewals_all_uv
WHERE restructure_date BETWEEN :from_date AND :to_date
AND request_type = 'RENEWAL'
ORDER BY restructure_date;
Because the view exposes both raw codes and decoded meanings, it supports both analytical reporting and integration scenarios where codes are required for programmatic processing. All joins to lookups and users are pre-built, minimizing development effort and ensuring consistent interpretation of lease renewal data across the enterprise.
-
Lookup Type: OKL_REQUEST_TYPE
12.1.1
product: OKL - Leasing and Finance Management , meaning: Request Types in Leasing Center , description: Request Types in Leasing Center ,
-
Lookup Type: OKL_REQUEST_TYPE
12.2.2
product: OKL - Lease and Finance Management , meaning: Request Types in Leasing Center , description: Request Types in Leasing Center ,
-
VIEW: APPS.OKL_LEASE_RENEWALS_ALL_UV
12.2.2
-
VIEW: APPS.OKL_CS_REQUESTS_UV
12.2.2
-
VIEW: APPS.OKL_LEASE_RENEWALS_ALL_UV
12.1.1
-
VIEW: APPS.OKL_CS_LEASE_RENEWALS_UV
12.2.2
-
VIEW: APPS.OKL_CS_REQUESTS_UV
12.1.1
-
VIEW: APPS.OKL_CS_PRINCIPAL_PAYDOWN_UV
12.1.1
-
VIEW: APPS.OKL_CS_LEASE_RENEWALS_UV
12.1.1
-
VIEW: APPS.OKL_CS_PRINCIPAL_PAYDOWN_UV
12.2.2
-
View: OKL_CS_REQUESTS_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_CS_REQUESTS_UV, object_name:OKL_CS_REQUESTS_UV, status:VALID, product: OKL - Leasing and Finance Management , implementation_dba_data: APPS.OKL_CS_REQUESTS_UV ,
-
View: OKL_CS_LEASE_RENEWALS_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_CS_LEASE_RENEWALS_UV, object_name:OKL_CS_LEASE_RENEWALS_UV, status:VALID, product: OKL - Leasing and Finance Management , implementation_dba_data: APPS.OKL_CS_LEASE_RENEWALS_UV ,
-
View: OKL_CS_REQUESTS_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_CS_REQUESTS_UV, object_name:OKL_CS_REQUESTS_UV, status:VALID, product: OKL - Lease and Finance Management , implementation_dba_data: APPS.OKL_CS_REQUESTS_UV ,
-
View: OKL_CS_PRINCIPAL_PAYDOWN_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_CS_PRINCIPAL_PAYDOWN_UV, object_name:OKL_CS_PRINCIPAL_PAYDOWN_UV, status:VALID, product: OKL - Lease and Finance Management , description: List of Principal Paydown Requests , implementation_dba_data: APPS.OKL_CS_PRINCIPAL_PAYDOWN_UV ,
-
View: OKL_CS_PRINCIPAL_PAYDOWN_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_CS_PRINCIPAL_PAYDOWN_UV, object_name:OKL_CS_PRINCIPAL_PAYDOWN_UV, status:VALID, product: OKL - Leasing and Finance Management , description: List of Principal Paydown Requests , implementation_dba_data: APPS.OKL_CS_PRINCIPAL_PAYDOWN_UV ,
-
View: OKL_CS_LEASE_RENEWALS_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_CS_LEASE_RENEWALS_UV, object_name:OKL_CS_LEASE_RENEWALS_UV, status:VALID, product: OKL - Lease and Finance Management , implementation_dba_data: APPS.OKL_CS_LEASE_RENEWALS_UV ,
-
View: OKL_LEASE_RENEWALS_ALL_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_LEASE_RENEWALS_ALL_UV, object_name:OKL_LEASE_RENEWALS_ALL_UV, status:VALID, product: OKL - Lease and Finance Management , description: View for displaying Lease Renewals for all Operating Units. , implementation_dba_data: APPS.OKL_LEASE_RENEWALS_ALL_UV ,
-
View: OKL_LEASE_RENEWALS_ALL_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_LEASE_RENEWALS_ALL_UV, object_name:OKL_LEASE_RENEWALS_ALL_UV, status:VALID, product: OKL - Leasing and Finance Management , description: View for displaying Lease Renewals for all Operating Units. , implementation_dba_data: APPS.OKL_LEASE_RENEWALS_ALL_UV ,
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2