Results for “covered_amount”

50+ results




AI-generated from documented ETRM metadata — verify critical details on the linked pages.

Overview

OKL_INS_POLICIES_UV is an Oracle E-Business Suite view owned by the APPS schema and defined within the OKL (Leasing and Finance Management) product. It presents a consolidated, user-facing representation of insurance policy data held in the Oracle Lease and Finance Management insurance subsystem. The view joins the base insurance policy entity and its translation table to lookup-driven descriptions and reference data, exposing policy status, coverage terms, premiums, and agency information in a single denormalized result set. Because of this consolidation, it functions as the primary read interface for insurance policy reporting, inquiry screens, and downstream integrations in EBS 12.1.1 and 12.2.2, and is referenced from within the library of APIs returned by the ETRM metadata repository under the same object name.

Underlying Base Objects

The documented referenced base objects are:

Columns are projected from these objects with aliases (for example, IPYB for OKL_INS_POLICIES_B, IPYT for OKL_INS_POLICIES_TL, IPTT for OKL_INS_PRODUCTS_TL, FLPF/FLPS/FLPT/FIFC for FND_LOOKUPS). The view is therefore read-only and inherits the row-level security behavior of its constituent base objects.

Key Columns

Prominent exposed columns include:

Common Use Cases and Queries

The view supports insurance policy inquiry and reporting, including tracking status transitions, expiry monitoring, premium analysis, and reporting by sales representative or provider.

A representative query followed by rows for a specific sales representative is:

  • SELECT policy_number, insurance_provider, status, premium, date_from, date_to FROM apps.okl_ins_policies_uv WHERE sales_rep_id = :p_sales_rep_id;

Additional common patterns include filtering on status = 'ACTIVE' for in-force policies, using MONTHS_BETWEEN(date_to, SYSDATE) to identify approaching expirations, and joining the result set to OKL_K_LEASES or contract tables on KLE_ID to report insured leased assets. Because the view exposes ROW_ID and OBJECT_VERSION_NUMBER, it is suitable for consumption by Oracle Forms-based inquiry screens that require accurate concurrency control.