Search Results okl_book_class
Overview
APPS.OKL_ACCRUAL_OVERRIDE_UV is a reporting view in the Oracle E-Business Suite Lease and Finance Management (formerly Oracle Leasing / OKL) module. It consolidates lease contract header data with lessee party information, product details, and calculated accrual figures so that users can review and manage accrual override settings at the contract level. The view exposes a mix of stored attributes (contract number, deal type, currency, term duration, end date) and runtime-derived values (receivable value, capital balance), making it suitable for both operational inquiry and downstream reporting or integration.
Its primary role is to support the accrual override process: lease contracts normally generate accruals automatically, but a contract may be flagged to suppress or override this behavior. This view surfaces the GENERATE_ACCRUAL_OVERRIDE_YN flag along with translated meanings, allowing accounting users to identify which contracts carry overrides and to assess the associated financial exposure. For users searching on okl_book_class, the relevant point is the DEAL_TYPE column and its derived DEAL_TYPE_MEANING, which resolves the deal type against the OKL_BOOK_CLASS lookup.
Underlying Base Objects
The view is defined over the following documented base objects:
- OKC_K_HEADERS_B (synonym) — the core contract header table, aliased as CTR. It supplies contract ID, contract number, authoring organization, currency, status, and end date.
- OKL_K_HEADERS (synonym) — the OKL-specific header extension, aliased as KHR. It contributes deal type, accrual override flag, and term duration.
- OKL_PRODUCTS (synonym) — aliased as PDT; provides the product name.
- OKC_K_PARTY_ROLES_B (synonym) — aliased as PTY; filtered to the LESSEE role to link the contract to its customer.
- OKX_PARTIES_V (view) — aliased as OKX; supplies the customer/party name.
- OKL_GENERATE_ACCRUALS_PUB (package), OKL_LOSS_PROV_PUB (package), and OKL_ACCOUNTING_UTIL (package) — PL/SQL packages invoked inline for calculated amounts and lookup translation.
The join is driven by CTR.ID = KHR.ID (contract to OKL header) and CTR.ID = PTY.DNZ_CHR_ID with PTY.RLE_CODE = 'LESSEE', matched to OKX via PTY.OBJECT1_ID1 = OKX.ID1. Only contracts in status APPROVED, BOOKED, UNDER REVISION, or EVERGREEN are returned.
Key Columns
- ID / CONTRACT_NUMBER — contract identifier and human-readable number.
- DEAL_TYPE — code from OKL_K_HEADERS, resolved against the OKL_BOOK_CLASS lookup.
- DEAL_TYPE_MEANING — the translated description of DEAL_TYPE, obtained via OKL_ACCOUNTING_UTIL.GET_LOOKUP_MEANING('OKL_BOOK_CLASS', KHR.DEAL_TYPE). This is the column most directly tied to the search term okl_book_class.
- AUTHORING_ORG_ID / CURRENCY_CODE — operating unit and currency context.
- PRODUCT_NAME / CUSTOMER_NAME — product and lessee descriptions.
- RECEIVABLE_VALUE — calculated by OKL_GENERATE_ACCRUALS_PUB.CALCULATE_CNTRCT_REC.
- CAPITAL_BALANCE — calculated by OKL_LOSS_PROV_PUB.CALCULATE_CAPITAL_BALANCE using the deal type.
- GENERATE_ACCRUAL_OVERRIDE_YN / OVERRIDE_YN_MEANING — the override flag and its YES_NO translation.
- END_DATE / TERM_DURATION — contract end and term length.
Common Use Cases and Queries
The view is typically queried to audit accrual overrides, reconcile accrual calculations, or drive integrations that extract lease financials by book class.
SELECT CONTRACT_NUMBER,
DEAL_TYPE,
DEAL_TYPE_MEANING,
CUSTOMER_NAME,
RECEIVABLE_VALUE,
CAPITAL_BALANCE,
OVERRIDE_YN_MEANING
FROM APPS.OKL_ACCRUAL_OVERRIDE_UV
WHERE GENERATE_ACCRUAL_OVERRIDE_YN = 'Y';
To isolate contracts by book class using the search term:
SELECT CONTRACT_NUMBER, DEAL_TYPE_MEANING, CURRENCY_CODE, END_DATE FROM APPS.OKL_ACCRUAL_OVERRIDE_UV WHERE DEAL_TYPE = '&book_class';
Note that the inline package calls (RECEIVABLE_VALUE, CAPITAL_BALANCE) execute per row, so restricting the result set before projection improves performance on large lease portfolios.
-
Lookup Type: OKL_BOOK_CLASS
12.1.1
product: OKL - Leasing and Finance Management , meaning: OKL BOOK CLASS , description: Contract Book Classification ,
-
Lookup Type: OKL_BOOK_CLASS
12.2.2
product: OKL - Lease and Finance Management , meaning: OKL BOOK CLASS , description: Contract Book Classification ,
-
VIEW: APPS.OKL_ACCRUAL_OVERRIDE_UV
12.1.1
-
VIEW: APPS.OKL_ACCRUAL_OVERRIDE_UV
12.2.2
-
VIEW: APPS.OKL_SEC_BUYBACK_CONTRACTS_UV
12.1.1
-
VIEW: APPS.OKL_SEC_BUYBACK_CONTRACTS_UV
12.2.2
-
VIEW: APPS.OKL_SO_PLAN_SUMMARY_UV
12.1.1
-
VIEW: APPS.OKL_SO_PLAN_SUMMARY_UV
12.2.2
-
VIEW: APPS.OKL_LEASE_PRODUCTS_UV
12.1.1
-
VIEW: APPS.OKL_AM_PRODUCTS_UV
12.1.1
-
VIEW: APPS.OKL_LEASE_PRODUCTS_UV
12.2.2
-
VIEW: APPS.OKL_AM_PRODUCTS_UV
12.2.2
-
View: OKL_ACCRUAL_OVERRIDE_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_ACCRUAL_OVERRIDE_UV, object_name:OKL_ACCRUAL_OVERRIDE_UV, status:VALID, product: OKL - Leasing and Finance Management , implementation_dba_data: APPS.OKL_ACCRUAL_OVERRIDE_UV ,
-
VIEW: APPS.OKL_EBIZ_KHEADERS_V
12.2.2
-
View: OKL_ACCRUAL_OVERRIDE_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_ACCRUAL_OVERRIDE_UV, object_name:OKL_ACCRUAL_OVERRIDE_UV, status:VALID, product: OKL - Lease and Finance Management , implementation_dba_data: APPS.OKL_ACCRUAL_OVERRIDE_UV ,
-
View: OKL_SO_PLAN_SUMMARY_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_SO_PLAN_SUMMARY_UV, object_name:OKL_SO_PLAN_SUMMARY_UV, status:VALID, product: OKL - Lease and Finance Management , description: Used to display Plan Summary information on the Quote Details screen , implementation_dba_data: APPS.OKL_SO_PLAN_SUMMARY_UV ,
-
VIEW: APPS.OKL_EBIZ_KHEADERS_V
12.1.1
-
View: OKL_LEASE_PRODUCTS_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_LEASE_PRODUCTS_UV, object_name:OKL_LEASE_PRODUCTS_UV, status:VALID, product: OKL - Lease and Finance Management , description: User interface view for lease products and product parameters , implementation_dba_data: APPS.OKL_LEASE_PRODUCTS_UV ,
-
View: OKL_SEC_BUYBACK_CONTRACTS_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_SEC_BUYBACK_CONTRACTS_UV, object_name:OKL_SEC_BUYBACK_CONTRACTS_UV, status:VALID, product: OKL - Lease and Finance Management , description: OKL Securitized buyback contracts UI view , implementation_dba_data: APPS.OKL_SEC_BUYBACK_CONTRACTS_UV ,
-
View: OKL_AM_PRODUCTS_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_AM_PRODUCTS_UV, object_name:OKL_AM_PRODUCTS_UV, status:VALID, product: OKL - Leasing and Finance Management , implementation_dba_data: APPS.OKL_AM_PRODUCTS_UV ,
-
View: OKL_AM_PRODUCTS_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_AM_PRODUCTS_UV, object_name:OKL_AM_PRODUCTS_UV, status:VALID, product: OKL - Lease and Finance Management , implementation_dba_data: APPS.OKL_AM_PRODUCTS_UV ,
-
View: OKL_SO_PLAN_SUMMARY_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_SO_PLAN_SUMMARY_UV, object_name:OKL_SO_PLAN_SUMMARY_UV, status:VALID, product: OKL - Leasing and Finance Management , description: Used to display Plan Summary information on the Quote Details screen , implementation_dba_data: APPS.OKL_SO_PLAN_SUMMARY_UV ,
-
View: OKL_SEC_BUYBACK_CONTRACTS_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_SEC_BUYBACK_CONTRACTS_UV, object_name:OKL_SEC_BUYBACK_CONTRACTS_UV, status:VALID, product: OKL - Leasing and Finance Management , description: OKL Securitized buyback contracts UI view , implementation_dba_data: APPS.OKL_SEC_BUYBACK_CONTRACTS_UV ,
-
View: OKL_LEASE_PRODUCTS_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_LEASE_PRODUCTS_UV, object_name:OKL_LEASE_PRODUCTS_UV, status:VALID, product: OKL - Leasing and Finance Management , description: User interface view for lease products and product parameters , implementation_dba_data: APPS.OKL_LEASE_PRODUCTS_UV ,
-
APPS.OKL_POOLCONC_PVT SQL Statements
12.1.1
-
VIEW: APPS.OKL_PRODUCT_PARAMETERS_ALL_V
12.1.1
-
VIEW: APPS.OKL_PRODUCT_PARAMETERS_ALL_V
12.2.2
-
VIEW: APPS.OKL_PRODUCT_PARAMETERS_V
12.2.2
-
APPS.OKL_POOLCONC_PVT SQL Statements
12.2.2
-
VIEW: APPS.OKL_PRODUCT_PARAMETERS_V
12.1.1
-
View: OKL_EBIZ_KHEADERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_EBIZ_KHEADERS_V, object_name:OKL_EBIZ_KHEADERS_V, status:VALID, product: OKL - Lease and Finance Management , description: Find grid for eBusiness Integration.This grid is shown of Contracts tab in eBusiness,Purpose of this view is to filter out lease contracts,based on subclass_code='LEASE' , implementation_dba_data: APPS.OKL_EBIZ_KHEADERS_V ,
-
View: OKL_EBIZ_KHEADERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_EBIZ_KHEADERS_V, object_name:OKL_EBIZ_KHEADERS_V, status:VALID, product: OKL - Leasing and Finance Management , description: Find grid for eBusiness Integration.This grid is shown of Contracts tab in eBusiness,Purpose of this view is to filter out lease contracts,based on subclass_code='LEASE' , implementation_dba_data: APPS.OKL_EBIZ_KHEADERS_V ,
-
View: OKL_PRODUCT_PARAMETERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_PRODUCT_PARAMETERS_V, object_name:OKL_PRODUCT_PARAMETERS_V, status:VALID, product: OKL - Lease and Finance Management , description: View to get product parameters , implementation_dba_data: APPS.OKL_PRODUCT_PARAMETERS_V ,
-
View: OKL_PRODUCT_PARAMETERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_PRODUCT_PARAMETERS_V, object_name:OKL_PRODUCT_PARAMETERS_V, status:VALID, product: OKL - Leasing and Finance Management , description: View to get product parameters , implementation_dba_data: APPS.OKL_PRODUCT_PARAMETERS_V ,
-
View: OKL_PRODUCT_PARAMETERS_ALL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_PRODUCT_PARAMETERS_ALL_V, object_name:OKL_PRODUCT_PARAMETERS_ALL_V, status:VALID, product: OKL - Leasing and Finance Management , description: View to get product parameters , implementation_dba_data: APPS.OKL_PRODUCT_PARAMETERS_ALL_V ,
-
View: OKL_PRODUCT_PARAMETERS_ALL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_PRODUCT_PARAMETERS_ALL_V, object_name:OKL_PRODUCT_PARAMETERS_ALL_V, status:VALID, product: OKL - Lease and Finance Management , description: View to get product parameters , implementation_dba_data: APPS.OKL_PRODUCT_PARAMETERS_ALL_V ,
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
APPS.OKL_RPP_PVT SQL Statements
12.1.1
-
APPS.OKL_RPP_PVT SQL Statements
12.2.2
-
APPS.OKL_STREAMS_RECON_PVT SQL Statements
12.1.1
-
APPS.OKL_STREAMS_RECON_PVT SQL Statements
12.2.2
-
APPS.OKL_CONTRACT_INFO SQL Statements
12.2.2
-
APPS.OKL_CONTRACT_INFO SQL Statements
12.1.1
-
APPS.OKL_PRB_UPGRADE_PVT SQL Statements
12.2.2
-
APPS.OKL_TBC_PVT SQL Statements
12.1.1
-
APPS.OKL_TBC_PVT SQL Statements
12.2.2
-
APPS.OKL_CS_LC_CONTRACT_PVT SQL Statements
12.2.2
-
APPS.OKL_CS_LC_CONTRACT_PVT SQL Statements
12.1.1
-
APPS.OKL_CNTRCT_FIN_EXTRACT_PVT SQL Statements
12.1.1