Search Results insurance_type
Overview
The PN_INSUR_REQUIRE_HISTORY_V view is a reporting and integration object in the Oracle E-Business Suite Property Manager (PN) module. It presents a consolidated, historized view of insurance requirements associated with leases. Insurance requirements in Property Manager capture the obligations placed on a lessee or lessor to maintain specific types of coverage — for example general liability, property, or workers' compensation — together with policy details such as insurer, policy number, insured amount, and required amount.
The view exists so that concurrent programs, forms, and external integrations can retrieve both the current active insurance requirement rows and their historical counterparts through a single query interface. A distinctive characteristic of this view is that it exposes a column named INSURANCE_HISTORY_ID, which is the term the user searched for. In the documented view text this column is materialized as TO_NUMBER (NULL) INSURANCE_HISTORY_ID for the current-requirement branch of the UNION ALL, while the historical branch supplies the genuine history identifier. This design lets downstream consumers filter or group by history without branching their own SQL against two different sources.
Because the object is registered in the APPS schema with a status of VALID, it is a supported read-only interface. It should not be used for direct DML; base-table maintenance is performed through the Property Manager application or its public APIs.
Underlying Base Objects
Per the documented 12.2.2 metadata, the view references four base objects:
- PN_INSURANCE_REQUIREMENTS (synonym) — the primary transaction table holding the current or effective insurance requirement records for each lease and lease change.
- PN_INSUR_REQUIRE_HISTORY (synonym) — the audit/history table that stores prior versions of insurance requirement rows, keyed by an insurance history identifier. This is the source of the INSURANCE_HISTORY_ID value.
- FND_LOOKUPS (view) — the Oracle Application Object Library lookup view used to resolve the coded
INSURANCE_TYPE_LOOKUP_CODEinto a translated, user-facing meaning via lookup typePN_INSURANCE_TYPE. - FND_GLOBAL (package) — the standard EBS context package, typically referenced for organizational or user context (for example,
FND_GLOBAL.ORG_ID) inside the view definition.
The view is defined as a UNION ALL of these sources, joining the requirements and history tables to lookups on the insurance type code. A constant 'Y' CURRENT_FLAG distinguishes current rows, while the history branch carries the persisted history identifier.
Key Columns
- INSURANCE_HISTORY_ID — surrogate key for historical rows; NULL for the current active requirement.
- INSURANCE_REQUIREMENT_ID — the lease insurance requirement identifier, linking back to the transaction table.
- INSURANCE_TYPE_LOOKUP_CODE / INSURANCE_TYPE — the stored code and its resolved lookup meaning.
- LEASE_ID / LEASE_CHANGE_ID / NEW_LEASE_CHANGE_ID — lease and lease-change context for the requirement.
- POLICY_START_DATE / POLICY_EXPIRATION_DATE — policy coverage window.
- INSURER_NAME / POLICY_NUMBER — carrier and policy identification.
- INSURED_AMOUNT / REQUIRED_AMOUNT — coverage carried versus coverage mandated.
- STATUS — lifecycle state of the requirement.
- CURRENT_FLAG —
'Y'marks the live requirement row. - ATTRIBUTE_CATEGORY and ATTRIBUTE1–15 — the standard EBS descriptive flexfield columns.
- Audit columns — CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN.
Common Use Cases and Queries
Typical scenarios include insurance compliance reporting, lease audit trails, and interfaces to treasury or risk systems. The following examples assume EBS 12.1.1 or 12.2.2 with the APPS schema.
1. Current insurance requirements for a lease:
SELECT insurance_requirement_id, insurance_type, insurer_name, policy_number, insured_amount, required_amount, policy_expiration_date FROM apps.pn_insur_require_history_v WHERE lease_id = :p_lease_id AND current_flag = 'Y';
2. Full history for a requirement, ordered by history identifier:
SELECT insurance_history_id, policy_start_date, policy_expiration_date, insured_amount, status FROM apps.pn_insur_require_history_v WHERE insurance_requirement_id = :p_req_id AND insurance_history_id IS NOT NULL ORDER BY insurance_history_id;
3. Coverage shortfall analysis (insured below required):
SELECT lease_id, insurance_type, required_amount, insured_amount FROM apps.pn_insur_require_history_v WHERE current_flag = 'Y' AND NVL(insured_amount,0) < NVL(required_amount,0);
4. Expiring policies in the next 30 days:
SELECT lease_id, insurer_name, policy_number, policy_expiration_date FROM apps.pn_insur_require_history_v WHERE current_flag = 'Y' AND policy_expiration_date BETWEEN SYSDATE AND SYSDATE+30;
Because the view unions current and historical rows, callers must always qualify queries with CURRENT_FLAG = 'Y' or a non-null INSURANCE_HISTORY_ID predicate to avoid double counting. Query performance is aided by the UNION ALL design, which permits the optimizer to push predicates into each branch independently.
-
View: PN_INSUR_REQUIRE_HISTORY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PN.PN_INSUR_REQUIRE_HISTORY_V, object_name:PN_INSUR_REQUIRE_HISTORY_V, status:VALID, product: PN - Property Manager , implementation_dba_data: APPS.PN_INSUR_REQUIRE_HISTORY_V ,
-
VIEW: APPS.PN_INSUR_REQUIRE_HISTORY_V
12.2.2
-
View: PN_INSUR_REQUIRE_HISTORY_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PN.PN_INSUR_REQUIRE_HISTORY_V, object_name:PN_INSUR_REQUIRE_HISTORY_V, status:VALID, product: PN - Property Manager , implementation_dba_data: APPS.PN_INSUR_REQUIRE_HISTORY_V ,
-
VIEW: APPS.PN_INSUR_REQUIRE_HISTORY_V
12.1.1
-
View: IGS_PE_HLTH_INS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PE_HLTH_INS_V, object_name:IGS_PE_HLTH_INS_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_PE_HLTH_INS_V ,
-
View: PN_INSURANCE_REQUIREMNTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PN.PN_INSURANCE_REQUIREMNTS_V, object_name:PN_INSURANCE_REQUIREMNTS_V, status:VALID, product: PN - Property Manager , implementation_dba_data: APPS.PN_INSURANCE_REQUIREMNTS_V ,
-
VIEW: APPS.PAY_MX_LEGISLATION_INFO_F_DFV
12.1.1
owner:APPS, object_type:VIEW, object_name:PAY_MX_LEGISLATION_INFO_F_DFV, status:VALID,
-
View: IGS_PE_HLTH_INS_V
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.PAY_MX_LEGISLATION_INFO_F_DFV
12.2.2
owner:APPS, object_type:VIEW, object_name:PAY_MX_LEGISLATION_INFO_F_DFV, status:VALID,
-
VIEW: APPS.IGS_PE_HLTH_INS_V
12.1.1
-
VIEW: APPS.PQP_VEH_REPOS_EXTRA_INFO_DFV
12.1.1
owner:APPS, object_type:VIEW, object_name:PQP_VEH_REPOS_EXTRA_INFO_DFV, status:VALID,
-
VIEW: APPS.PQP_VEH_REPOS_EXTRA_INFO_DFV
12.2.2
owner:APPS, object_type:VIEW, object_name:PQP_VEH_REPOS_EXTRA_INFO_DFV, status:VALID,
-
View: PN_INSURANCE_REQUIREMNTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PN.PN_INSURANCE_REQUIREMNTS_V, object_name:PN_INSURANCE_REQUIREMNTS_V, status:VALID, product: PN - Property Manager , implementation_dba_data: APPS.PN_INSURANCE_REQUIREMNTS_V ,
-
VIEW: APPS.PN_INSURANCE_REQUIREMNTS_V
12.1.1
-
VIEW: APPS.PN_INSURANCE_REQUIREMNTS_V
12.2.2
-
VIEW: APPS.PN_INSURANCE_REQUIREMNTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PN.PN_INSURANCE_REQUIREMNTS_V, object_name:PN_INSURANCE_REQUIREMNTS_V, status:VALID,
-
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: APPS.IGS_PE_HLTH_INS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PE_HLTH_INS_V, object_name:IGS_PE_HLTH_INS_V, status:VALID,
-
Lookup Type: PERSON_INSURANCE
12.1.1
product: IGS - Student System , meaning: Person Insurance , description: Person Insurance ,
-
Lookup Type: PERSON_INSURANCE
12.2.2
product: IGS - Student System (Obsolete) , meaning: Person Insurance , description: Person Insurance ,
-
VIEW: APPS.PN_INSURANCE_REQUIREMNTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PN.PN_INSURANCE_REQUIREMNTS_V, object_name:PN_INSURANCE_REQUIREMNTS_V, status:VALID,
-
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 ,
-
VIEW: APPS.PN_INSUR_REQUIRE_HISTORY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PN.PN_INSUR_REQUIRE_HISTORY_V, object_name:PN_INSUR_REQUIRE_HISTORY_V, status:VALID,
-
VIEW: APPS.PN_INSUR_REQUIRE_HISTORY_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PN.PN_INSUR_REQUIRE_HISTORY_V, object_name:PN_INSUR_REQUIRE_HISTORY_V, status:VALID,
-
VIEW: APPS.OKL_INS_PY_UV
12.1.1
-
VIEW: APPS.OKL_INS_PY_UV
12.2.2
-
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,
-
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,
-
PACKAGE: APPS.PN_LEASE_PVT
12.2.2
-
APPS.PN_LEASE_PVT dependencies on PN_INSURANCE_REQUIREMENTS_ALL
12.2.2
-
APPS.PN_LEASE_PVT dependencies on FND_LOOKUPS
12.2.2
-
APPS.PAY_CN_EXT dependencies on HR_GENERAL
12.2.2
-
APPS.PAY_CN_EXT dependencies on HR_GENERAL
12.1.1
-
PACKAGE BODY: APPS.PN_LEASE_PVT
12.2.2
-
PACKAGE BODY: APPS.PAY_CN_EXT
12.2.2
-
PACKAGE BODY: APPS.PAY_CN_EXT
12.1.1
-
APPS.PN_LEASE_PVT dependencies on PN_LEASE_UTILS
12.2.2
-
APPS.PN_LEASE_PVT dependencies on FND_MESSAGE
12.2.2
-
APPS.PN_LEASE_PVT dependencies on PN_LEASE_UTILS
12.2.2
-
APPS.PN_LEASE_PVT dependencies on FND_MSG_PUB
12.2.2
-
APPS.PN_LEASE_PVT dependencies on FND_API
12.2.2
-
eTRM - PN Tables and Views
12.1.1
description: Interface table to contain batch lines information. ,
-
eTRM - PN Tables and Views
12.2.2
description: Interface table to contain batch lines information. ,
-
PACKAGE BODY: APPS.PQP_NL_PENSION_EXTRACTS
12.1.1
-
PACKAGE BODY: APPS.PQP_NL_PENSION_EXTRACTS
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 ,
-
eTRM - IGS Tables and Views
12.1.1
description: Holds applicant whose records are wrongly available . It is recommended that such applicant records are deleted from the system . It synchronizes with UCAS view 'ivStarW'. ,