Search Results optimum_capacity
Overview
PN_LOCATIONS_ALL is the core space-definition table within the Oracle Property Manager (PN) module of Oracle E-Business Suite, owned by the PN schema. In EBS 12.1.1 and 12.2.2, it stores the master record of every physical location that a property portfolio comprises — buildings, floors, offices, suites, and other rentable or assignable spaces. It serves as the central hub for space management, tenancy tracking, lease administration, and cost allocation.
Each row defines a location's identity, hierarchy, physical attributes, capacity metrics, and its association with a property and address. Because it supports parent-child nesting via PARENT_LOCATION_ID, it functions as both a standalone entity and a self-referencing hierarchy, allowing drill-down from a building down to individual offices.
From a data-modeling perspective, the heuristic Data Vault classification for PN_LOCATIONS_ALL is hub. The LOCATION_ID (with its effective-dating attributes) behaves as a durable business key that anchors many downstream relationships, so it is best modeled as a hub with satellites for the descriptive, effective-dated attributes.
Key Information Stored
The table's surrogate identifier is LOCATION_ID, but the true business keys are captured by unique indexes:
- PN_LOCATIONS_U1 — LOCATION_ID, ACTIVE_START_DATE, ACTIVE_END_DATE (effective-dated key)
- PN_LOCATIONS_U2 — LOCATION_CODE, LOCATION_TYPE_LOOKUP_CODE, ACTIVE_START_DATE, ACTIVE_END_DATE
Among the 67 documented columns, the most significant are:
- LOCATION_ID — primary surrogate identifier.
- LOCATION_CODE / LOCATION_ALIAS — user-facing names for the space.
- LOCATION_TYPE_LOOKUP_CODE — classifies the location (building, floor, office, etc.).
- PARENT_LOCATION_ID — self-referencing FK enabling hierarchical location structures.
- PROPERTY_ID — links the location to its owning property.
- ADDRESS_ID — links to the physical address record.
- RENTABLE_AREA / USABLE_AREA / GROSS_AREA / ASSIGNABLE_AREA / COMMON_AREA — area metrics used in cost allocation and lease billing.
- MAX_CAPACITY / OPTIMUM_CAPACITY — occupancy planning limits.
- ACTIVE_START_DATE / ACTIVE_END_DATE — effective-dating controls.
- STATUS / OCCUPANCY_STATUS_CODE / BOOKABLE_FLAG — lifecycle and reservation state.
- ORG_ID — multi-org operating unit partitioning.
Common Use Cases and Queries
Typical scenarios include space inventory reporting, occupancy analysis, lease-to-space reconciliation, and hierarchy traversal.
- Listing all active locations for a property:
SELECT location_id, location_code, rentable_area FROM pn_locations_all WHERE property_id = :p_property_id AND SYSDATE BETWEEN active_start_date AND active_end_date;
- Traversing the parent-child hierarchy using CONNECT BY on PARENT_LOCATION_ID.
- Joining to tenancies and leases to compute occupancy and cost per square foot.
- Feeding space allocation and contact-assignment reporting for facility managers.
Related Objects
PN_LOCATIONS_ALL participates in numerous FK relationships:
- PN_PROPERTIES_ALL — via PROPERTY_ID.
- PN_ADDRESSES_ALL — via ADDRESS_ID.
- PN_LOCATIONS_ALL (self) — via PARENT_LOCATION_ID.
- PN_TENANCIES_ALL / PN_TENANCIES_HISTORY — via LOCATION_ID.
- PN_LEASE_TRANSACTIONS_ALL — via LOCATION_ID.
- PN_SPACE_ALLOCATIONS_ALL — via LOCATION_ID.
- PN_LOCATION_FEATURES_ALL — via LOCATION_ID.
- PN_CONTACT_ASSIGNMENTS_ALL / PN_CONTACT_ASSIGN_HISTORY — via LOCATION_ID.
These relationships make PN_LOCATIONS_ALL the pivotal entity for integrated space, lease, and occupancy management in Property Manager.
-
Table: PN_LOCATIONS_ALL
12.1.1
owner:PN, object_type:TABLE, fnd_design_data:PN.PN_LOCATIONS_ALL, object_name:PN_LOCATIONS_ALL, status:VALID, product: PN - Property Manager , description: Space definition , implementation_dba_data: PN.PN_LOCATIONS_ALL ,
-
Table: PN_LOCATIONS_ITF
12.1.1
owner:PN, object_type:TABLE, fnd_design_data:PN.PN_LOCATIONS_ITF, object_name:PN_LOCATIONS_ITF, status:VALID, product: PN - Property Manager , description: Space definition data to be imported or exported in and out of Oracle Property Manager , implementation_dba_data: PN.PN_LOCATIONS_ITF ,
-
Table: PN_LOCATIONS_ALL
12.2.2
owner:PN, object_type:TABLE, fnd_design_data:PN.PN_LOCATIONS_ALL, object_name:PN_LOCATIONS_ALL, status:VALID, product: PN - Property Manager , description: Space definition , implementation_dba_data: PN.PN_LOCATIONS_ALL ,
-
Table: PN_LOCATIONS_ITF
12.2.2
owner:PN, object_type:TABLE, fnd_design_data:PN.PN_LOCATIONS_ITF, object_name:PN_LOCATIONS_ITF, status:VALID, product: PN - Property Manager , description: Space definition data to be imported or exported in and out of Oracle Property Manager , implementation_dba_data: PN.PN_LOCATIONS_ITF ,
-
VIEW: PN.PN_LOCATIONS_ALL#
12.2.2
-
VIEW: PN.PN_LOCATIONS_ITF#
12.2.2
-
View: PN_LOCATIONS_ITF_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PN.PN_LOCATIONS_ITF_V, object_name:PN_LOCATIONS_ITF_V, status:VALID, product: PN - Property Manager , implementation_dba_data: APPS.PN_LOCATIONS_ITF_V ,
-
View: PN_LOCATIONS_ITF_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PN.PN_LOCATIONS_ITF_V, object_name:PN_LOCATIONS_ITF_V, status:VALID, product: PN - Property Manager , implementation_dba_data: APPS.PN_LOCATIONS_ITF_V ,
-
View: PN_OFFICES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PN.PN_OFFICES_V, object_name:PN_OFFICES_V, status:VALID, product: PN - Property Manager , description: Public view used to view Location information. , implementation_dba_data: APPS.PN_OFFICES_V ,
-
View: PN_OFFICES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PN.PN_OFFICES_V, object_name:PN_OFFICES_V, status:VALID, product: PN - Property Manager , description: Public view used to view Location information. , implementation_dba_data: APPS.PN_OFFICES_V ,
-
VIEW: APPS.PN_LOCATIONS_ITF_V
12.1.1
-
VIEW: PN.PN_LOCATIONS_ALL#
12.2.2
owner:PN, object_type:VIEW, object_name:PN_LOCATIONS_ALL#, status:VALID,
-
VIEW: APPS.PN_LOCATIONS_ITF_V
12.2.2
-
VIEW: PN.PN_LOCATIONS_ITF#
12.2.2
owner:PN, object_type:VIEW, object_name:PN_LOCATIONS_ITF#, status:VALID,
-
VIEW: APPS.PN_LOCATIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PN.PN_LOCATIONS_V, object_name:PN_LOCATIONS_V, status:VALID,
-
VIEW: APPS.PN_LOCATIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PN.PN_LOCATIONS_V, object_name:PN_LOCATIONS_V, status:VALID,
-
VIEW: APPS.PN_OFFICES_V
12.2.2
-
VIEW: APPS.PN_OFFICES_V
12.1.1
-
APPS.PN_EXP_TO_CAD_ITF SQL Statements
12.1.1
-
APPS.PN_EXP_TO_CAD_ITF SQL Statements
12.2.2
-
View: PN_LOCATIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PN.PN_LOCATIONS_V, object_name:PN_LOCATIONS_V, status:VALID, product: PN - Property Manager , description: This view is used as form view for the Locations form PNSULOCN.fmb used for defining space & its attributes , implementation_dba_data: APPS.PN_LOCATIONS_V ,
-
View: PN_LOCATIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PN.PN_LOCATIONS_V, object_name:PN_LOCATIONS_V, status:VALID, product: PN - Property Manager , description: This view is used as form view for the Locations form PNSULOCN.fmb used for defining space & its attributes , implementation_dba_data: APPS.PN_LOCATIONS_V ,
-
VIEW: APPS.PN_LOCATIONS_ITF_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PN.PN_LOCATIONS_ITF_V, object_name:PN_LOCATIONS_ITF_V, status:VALID,
-
VIEW: APPS.PN_LOCATIONS_ITF_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PN.PN_LOCATIONS_ITF_V, object_name:PN_LOCATIONS_ITF_V, status:VALID,
-
VIEW: APPS.PN_LOCATIONS_V
12.2.2
-
VIEW: APPS.PN_LOCATIONS_V
12.1.1
-
VIEW: APPS.PN_OFFICES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PN.PN_OFFICES_V, object_name:PN_OFFICES_V, status:VALID,
-
VIEW: APPS.PN_OFFICES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PN.PN_OFFICES_V, object_name:PN_OFFICES_V, status:VALID,
-
APPS.PNRX_SP_UTIL_BY_LOC SQL Statements
12.2.2
-
APPS.PNRX_SP_UTIL_BY_LEASE SQL Statements
12.1.1
-
APPS.PNRX_SP_UTIL_BY_LOC SQL Statements
12.1.1
-
APPS.PNRX_SP_UTIL_BY_LEASE SQL Statements
12.2.2
-
TABLE: PN.PN_LOCATIONS_ALL
12.2.2
owner:PN, object_type:TABLE, fnd_design_data:PN.PN_LOCATIONS_ALL, object_name:PN_LOCATIONS_ALL, status:VALID,
-
TABLE: PN.PN_LOCATIONS_ITF
12.2.2
owner:PN, object_type:TABLE, fnd_design_data:PN.PN_LOCATIONS_ITF, object_name:PN_LOCATIONS_ITF, status:VALID,
-
TABLE: PN.PN_LOCATIONS_ALL
12.1.1
owner:PN, object_type:TABLE, fnd_design_data:PN.PN_LOCATIONS_ALL, object_name:PN_LOCATIONS_ALL, status:VALID,
-
TABLE: PN.PN_LOCATIONS_ITF
12.1.1
owner:PN, object_type:TABLE, fnd_design_data:PN.PN_LOCATIONS_ITF, object_name:PN_LOCATIONS_ITF, status:VALID,
-
VIEW: APPS.PN_LOCATIONS_PUB_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PN.PN_LOCATIONS_PUB_V, object_name:PN_LOCATIONS_PUB_V, status:VALID,
-
VIEW: APPS.PN_LOCATIONS_PUB_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PN.PN_LOCATIONS_PUB_V, object_name:PN_LOCATIONS_PUB_V, status:VALID,
-
View: PN_LOCATIONS_PUB_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PN.PN_LOCATIONS_PUB_V, object_name:PN_LOCATIONS_PUB_V, status:VALID, product: PN - Property Manager , description: Public view used to view location information. , implementation_dba_data: APPS.PN_LOCATIONS_PUB_V ,
-
View: PN_LOCATIONS_PUB_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PN.PN_LOCATIONS_PUB_V, object_name:PN_LOCATIONS_PUB_V, status:VALID, product: PN - Property Manager , description: Public view used to view location information. , implementation_dba_data: APPS.PN_LOCATIONS_PUB_V ,
-
APPS.PNP_UTIL_FUNC SQL Statements
12.2.2
-
APPS.PNP_UTIL_FUNC SQL Statements
12.1.1
-
PACKAGE BODY: APPS.PN_EXP_TO_CAD_ITF
12.1.1
-
PACKAGE BODY: APPS.PN_EXP_TO_CAD_ITF
12.2.2
-
APPS.PNT_LOCATIONS_PKG SQL Statements
12.2.2
-
APPS.PNT_LOCATIONS_PKG SQL Statements
12.1.1
-
PACKAGE BODY: APPS.PNRX_SP_UTIL_BY_LOC
12.1.1
-
PACKAGE BODY: APPS.PNRX_SP_UTIL_BY_LEASE
12.1.1
-
PACKAGE BODY: APPS.PNRX_SP_UTIL_BY_LEASE
12.2.2
-
PACKAGE BODY: APPS.PNRX_SP_UTIL_BY_LOC
12.2.2