Search Results lease_role
Overview
The APPS.PN_LOCATION_CONTACT_ASSIGN_V view is a reporting and integration object within the Oracle E-Business Suite Property Manager (PN) module. It consolidates contact assignment records that are tied to a specific property location rather than to a lease. The defining filter of the view is the predicate PCA.LOCATION_ID IS NOT NULL AND PCA.LEASE_ID IS NULL, meaning it exposes only those contact assignments associated with a location. This makes it the location-oriented counterpart to lease-oriented contact assignment reporting.
The view is registered in the ETRM metadata with a status of VALID and is owned by the APPS schema. Its primary role is to support inquiry, reporting, and downstream integration scenarios where an implementer or application needs contact-to-location relationships enriched with the company name, company site name, and a decoded lease role description. The view resolves the raw lookup code stored on the company site into a human-readable meaning, which simplifies report generation and removes the need for callers to join the lookup table themselves.
Underlying Base Objects
The view is defined over four base objects plus a lookup table. The documented referenced objects are PN_CONTACT_ASSIGNMENTS (SYNONYM), PN_COMPANIES_ALL (SYNONYM), PN_COMPANY_SITES_ALL (SYNONYM), FND_LOOKUPS (VIEW), and FND_GLOBAL (PACKAGE).
- PN_CONTACT_ASSIGNMENTS (PCA) — the driving table holding the contact assignment transaction rows, including location, company, and site references.
- PN_COMPANIES_ALL (PNC) — supplies the company master record and its NAME.
- PN_COMPANY_SITES_ALL (PCS) — supplies the company site name and the LEASE_ROLE_TYPE lookup code.
- FND_LOOKUPS (FLV) — decodes LEASE_ROLE_TYPE using lookup type
PN_LEASE_ROLE_TYPE. - FND_GLOBAL — the standard EBS package referenced in the view text, typically for session context such as ORG_ID.
Joins are enforced on COMPANY_SITE_ID, COMPANY_ID, and on the lookup code/type pair. The relation is effectively a location-scoped projection of contact assignment data joined to company and site masters.
Key Columns
- CONTACT_ASSIGNMENT_ID — primary key of the underlying contact assignment row.
- LOCATION_ID / LEASE_ID / LEASE_CHANGE_ID — location and lease linkage; LEASE_ID is null by definition in this view.
- COMPANY_ID / COMPANY_NAME / COMPANY_SITE_ID / SITE_NAME — the assigned company and site with descriptive names.
- LEASE_ROLE_TYPE — the raw lookup code carried from the company site record.
- LEASE_ROLE — the decoded meaning of that code, resolved from FND_LOOKUPS.
- STATUS — the assignment status.
- ATTRIBUTE_CATEGORY and ATTRIBUTE1–15 — descriptive flexfield context and segment values.
- ORG_ID — the operating unit identifier supporting multi-org security.
- ROW_ID, CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN — standard WHO audit columns.
Common Use Cases and Queries
A frequent scenario is finding location contacts filtered by the role type that a user searched for, lease_role_type. Because the code and its decoded meaning are both exposed, users can filter either way.
- List all location contact assignments for a given location or company.
- Report assignments grouped by LEASE_ROLE for the property portfolio.
- Export company/site contact relationships to an integration file.
Sample query:
SELECT contact_assignment_id,
company_name,
site_name,
lease_role_type,
lease_role,
location_id,
status
FROM apps.pn_location_contact_assign_v
WHERE lease_role_type = 'TENANT'
AND org_id = :p_org_id
ORDER BY company_name, site_name;
To resolve the full set of available role codes, query FND_LOOKUPS with LOOKUP_TYPE = 'PN_LEASE_ROLE_TYPE'.
-
View: PN_LOCATION_CONTACT_ASSIGN_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PN.PN_LOCATION_CONTACT_ASSIGN_V, object_name:PN_LOCATION_CONTACT_ASSIGN_V, status:VALID, product: PN - Property Manager , implementation_dba_data: APPS.PN_LOCATION_CONTACT_ASSIGN_V ,
-
View: PN_CONTACT_ASSIGN_HISTORY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PN.PN_CONTACT_ASSIGN_HISTORY_V, object_name:PN_CONTACT_ASSIGN_HISTORY_V, status:VALID, product: PN - Property Manager , implementation_dba_data: APPS.PN_CONTACT_ASSIGN_HISTORY_V ,
-
VIEW: APPS.PN_CONTACT_ASSIGN_HISTORY_V
12.1.1
-
View: PN_CONTACT_ASSIGNMENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PN.PN_CONTACT_ASSIGNMENTS_V, object_name:PN_CONTACT_ASSIGNMENTS_V, status:VALID, product: PN - Property Manager , implementation_dba_data: APPS.PN_CONTACT_ASSIGNMENTS_V ,
-
View: PN_CONTACT_ASSIGNMENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PN.PN_CONTACT_ASSIGNMENTS_V, object_name:PN_CONTACT_ASSIGNMENTS_V, status:VALID, product: PN - Property Manager , implementation_dba_data: APPS.PN_CONTACT_ASSIGNMENTS_V ,
-
VIEW: APPS.PN_LEASE_CONTACT_ASSIGN_V
12.1.1
-
View: PN_CONTACT_ASSIGN_HISTORY_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PN.PN_CONTACT_ASSIGN_HISTORY_V, object_name:PN_CONTACT_ASSIGN_HISTORY_V, status:VALID, product: PN - Property Manager , implementation_dba_data: APPS.PN_CONTACT_ASSIGN_HISTORY_V ,
-
VIEW: APPS.PN_CONTACT_ASSIGN_HISTORY_V
12.2.2
-
View: PN_LOCATION_CONTACT_ASSIGN_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PN.PN_LOCATION_CONTACT_ASSIGN_V, object_name:PN_LOCATION_CONTACT_ASSIGN_V, status:VALID, product: PN - Property Manager , implementation_dba_data: APPS.PN_LOCATION_CONTACT_ASSIGN_V ,
-
VIEW: APPS.PN_CONTACT_ASSIGNMENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PN.PN_CONTACT_ASSIGNMENTS_V, object_name:PN_CONTACT_ASSIGNMENTS_V, status:VALID,
-
VIEW: APPS.PN_CONTACT_ASSIGNMENTS_V
12.2.2
-
VIEW: APPS.PN_LOCATION_CONTACT_ASSIGN_V
12.2.2
-
View: PN_LEASE_CONTACT_ASSIGN_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PN.PN_LEASE_CONTACT_ASSIGN_V, object_name:PN_LEASE_CONTACT_ASSIGN_V, status:VALID, product: PN - Property Manager , implementation_dba_data: APPS.PN_LEASE_CONTACT_ASSIGN_V ,
-
View: PN_LEASE_CONTACT_ASSIGN_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PN.PN_LEASE_CONTACT_ASSIGN_V, object_name:PN_LEASE_CONTACT_ASSIGN_V, status:VALID, product: PN - Property Manager , implementation_dba_data: APPS.PN_LEASE_CONTACT_ASSIGN_V ,
-
View: PN_COMPANY_SITES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PN.PN_COMPANY_SITES_V, object_name:PN_COMPANY_SITES_V, status:VALID, product: PN - Property Manager , implementation_dba_data: APPS.PN_COMPANY_SITES_V ,
-
VIEW: APPS.PN_LOCATION_CONTACT_ASSIGN_V
12.1.1
-
VIEW: APPS.PN_CONTACT_ASSIGNMENTS_V
12.1.1
-
VIEW: APPS.PN_LEASE_CONTACT_ASSIGN_V
12.2.2
-
View: PN_COMPANY_SITES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PN.PN_COMPANY_SITES_V, object_name:PN_COMPANY_SITES_V, status:VALID, product: PN - Property Manager , implementation_dba_data: APPS.PN_COMPANY_SITES_V ,
-
VIEW: APPS.PN_LEASE_CONTACT_ASSIGN_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PN.PN_LEASE_CONTACT_ASSIGN_V, object_name:PN_LEASE_CONTACT_ASSIGN_V, status:VALID,
-
VIEW: APPS.PN_LEASE_CONTACT_ASSIGN_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PN.PN_LEASE_CONTACT_ASSIGN_V, object_name:PN_LEASE_CONTACT_ASSIGN_V, status:VALID,
-
VIEW: APPS.PN_CONTACT_ASSIGNMENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PN.PN_CONTACT_ASSIGNMENTS_V, object_name:PN_CONTACT_ASSIGNMENTS_V, status:VALID,
-
VIEW: APPS.PN_LOCATION_CONTACT_ASSIGN_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PN.PN_LOCATION_CONTACT_ASSIGN_V, object_name:PN_LOCATION_CONTACT_ASSIGN_V, status:VALID,
-
VIEW: APPS.PN_COMPANY_SITES_V
12.2.2
-
VIEW: APPS.PN_COMPANY_SITES_V
12.1.1
-
VIEW: APPS.PN_CONTACT_ASSIGN_HISTORY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PN.PN_CONTACT_ASSIGN_HISTORY_V, object_name:PN_CONTACT_ASSIGN_HISTORY_V, status:VALID,
-
VIEW: APPS.PN_CONTACT_ASSIGN_HISTORY_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PN.PN_CONTACT_ASSIGN_HISTORY_V, object_name:PN_CONTACT_ASSIGN_HISTORY_V, status:VALID,
-
VIEW: APPS.PN_COMPANY_SITES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PN.PN_COMPANY_SITES_V, object_name:PN_COMPANY_SITES_V, status:VALID,
-
VIEW: APPS.PN_LOCATION_CONTACT_ASSIGN_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PN.PN_LOCATION_CONTACT_ASSIGN_V, object_name:PN_LOCATION_CONTACT_ASSIGN_V, status:VALID,
-
VIEW: APPS.PN_COMPANY_SITES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PN.PN_COMPANY_SITES_V, object_name:PN_COMPANY_SITES_V, status:VALID,
-
APPS.PN_LEASE_PVT dependencies on PN_CONTACT_ASSIGNMENTS_V
12.2.2
-
APPS.PN_LEASE_PVT SQL Statements
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.PN_LEASE_PVT
12.2.2
-
APPS.PN_LEASE_PVT dependencies on PN_LEASE_UTILS
12.2.2