Search Results agent_address
Overview
OKL_INS_PY_UV is an APPS-owned dictionary view within the Oracle Lease and Finance Management (OKL) module. It exposes insurance policy data in a denormalized, presentation-ready form for reporting, integration, and inquiry purposes. The view combines transactional insurance policy attributes with lookup-based descriptive values, notably translating the internal IPY_TYPE code into a human-readable INSURANCE_TYPE via FND_LOOKUPS. This design makes the view suitable for operational reporting, dashboards, and downstream interfaces that require insurance type, premium, coverage, and policy status information without needing to join multiple underlying tables. In the context of the user's search for "insurance_type," this view is the canonical reporting source where the coded value and its meaning are surfaced together. The view is marked VALID and is documented for EBS 12.1.1 and 12.2.2.
Underlying Base Objects
The view is defined over several documented base objects:
- OKL_INS_POLICIES_B — the primary base table supplying the bulk of transactional columns (premium, coverage, dates, flags, and financial attributes).
- OKL_INS_POLICIES_TL — supplies translated/descriptive fields such as
DESCRIPTION,ENDORSEMENT,COMMENTS, andCANCELLATION_COMMENT. - FND_LOOKUPS — supplies the decoded
MEANINGused asINSURANCE_TYPE, driven byIPY_TYPE. - HZ_PARTIES — referenced for party-related information associated with the policy.
- FND_GLOBAL — a package typically invoked for session context such as organization or user identifiers.
The view therefore stitches the transactional insurance policy records to their lookup meanings and party context, providing a single access point.
Key Columns
Important columns include:
- INSURANCE_TYPE — the decoded meaning of
IPY_TYPE, the column most relevant to insurance type reporting. - POLICY_NUMBER, NAME_OF_INSURED — policy identification and insured party.
- CALCULATED_PREMIUM, PREMIUM, COVERED_AMOUNT, DEDUCTIBLE, ADJUSTMENT — financial and coverage measures.
- PAYMENT_FREQUENCY, IPF_CODE, FACTOR_VALUE — payment and factor attributes.
- STATUS — derived as ACTIVE when
DATE_TOis null or in the future, otherwise INACTIVE. - DATE_FROM, DATE_TO, ACTIVATION_DATE, CANCELLATION_DATE, DATE_QUOTED, DATE_QUOTE_EXPIRY — lifecycle dates.
- QUOTE_YN, ON_FILE_YN, AGENT_YN, LESSOR_INSURED_YN, LESSOR_PAYEE_YN, PRIVATE_LABEL_YN — boolean indicators.
- IPT_ID, IPY_ID, INT_ID, ISU_ID, KHR_ID, KLE_ID — foreign key identifiers to related entities.
- ATTRIBUTE_CATEGORY and ATTRIBUTE1..N — descriptive flexfield columns.
Common Use Cases and Queries
Typical scenarios include insurance type analysis, active policy listing, and premium reporting.
- Insurance type summary:
SELECT INSURANCE_TYPE, COUNT(*) FROM OKL_INS_PY_UV GROUP BY INSURANCE_TYPE; - Active policies by type:
SELECT POLICY_NUMBER, INSURANCE_TYPE, PREMIUM FROM OKL_INS_PY_UV WHERE STATUS = 'ACTIVE' ORDER BY INSURANCE_TYPE; - Coverage and premium review:
SELECT INSURANCE_TYPE, SUM(PREMIUM), SUM(COVERED_AMOUNT) FROM OKL_INS_PY_UV GROUP BY INSURANCE_TYPE;
Because the view pre-joins lookup and translated tables, it reduces the complexity of ad-hoc insurance reporting in both 12.1.1 and 12.2.2 environments.
-
View: OKL_INS_PY_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_INS_PY_UV, object_name:OKL_INS_PY_UV, status:VALID, product: OKL - Lease and Finance Management , implementation_dba_data: APPS.OKL_INS_PY_UV ,
-
View: OKL_INS_PY_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_INS_PY_UV, object_name:OKL_INS_PY_UV, status:VALID, product: OKL - Leasing and Finance Management , implementation_dba_data: APPS.OKL_INS_PY_UV ,
-
PACKAGE BODY: APPS.OKL_IN_TPP_PVT
12.2.2
-
PACKAGE BODY: APPS.OKL_IN_TPP_PVT
12.1.1
-
VIEW: APPS.OKL_INS_PY_UV
12.1.1
-
VIEW: APPS.OKL_INS_PY_UV
12.2.2
-
TYPE: SYS.AQ$_EVENT_MESSAGE
12.1.1
owner:SYS, object_type:TYPE, object_name:AQ$_EVENT_MESSAGE, status:VALID,
-
TYPE: SYS.AQ$_EVENT_MESSAGE
12.2.2
owner:SYS, object_type:TYPE, object_name:AQ$_EVENT_MESSAGE, status:VALID,
-
VIEW: APPS.OKL_INS_PY_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_INS_PY_UV, object_name:OKL_INS_PY_UV, status:VALID,
-
VIEW: APPS.OKL_INS_PY_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_INS_PY_UV, object_name:OKL_INS_PY_UV, status:VALID,
-
PACKAGE: APPS.OKL_IN_TPP_PVT
12.1.1
-
PACKAGE: APPS.OKL_IN_TPP_PVT
12.2.2
-
TYPE: SYS.AQ$_SRVNTFN_MESSAGE
12.2.2
owner:SYS, object_type:TYPE, object_name:AQ$_SRVNTFN_MESSAGE, status:VALID,
-
TYPE: SYS.AQ$_SRVNTFN_MESSAGE
12.1.1
owner:SYS, object_type:TYPE, object_name:AQ$_SRVNTFN_MESSAGE, status:VALID,
-
APPS.OKL_IN_TPP_PVT dependencies on OKC_API
12.1.1
-
APPS.OKL_IN_TPP_PVT dependencies on OKC_API
12.2.2
-
APPS.OKL_IN_TPP_PVT dependencies on OKL_IN_TPP_PVT
12.1.1
-
APPS.OKL_IN_TPP_PVT dependencies on OKL_IN_TPP_PVT
12.2.2
-
eTRM - OKL Tables and Views
12.1.1
description: Translatable columns from OKL_XTL_SELL_INVS_B, per MLS standards ,
-
eTRM - OKL Tables and Views
12.2.2
description: Translatable columns from OKL_XTL_SELL_INVS_B, per MLS standards ,