Search Results addr_attribute7
Overview
PN_LOCATIONS_ITF is an interface (staging) table owned by the PN schema within the Oracle Property Manager module. It stores space definition data that is imported into or exported out of Oracle Property Manager. Rather than representing a permanent transactional entity, the table acts as a transient holding area where location, floor, office, area, and capacity attributes are staged before being validated and transferred into the core Property Manager location structures, or where existing location records are exported for external processing.
Because the table is populated and consumed by concurrent programs rather than maintained as a long-lived master, each row carries a BATCH_NAME to group related import records and an ENTRY_TYPE to distinguish import from export activity. The presence of TRANSFERRED_TO_PN, TRANSFERRED_TO_CAD, ERROR_MESSAGE, and REQUEST_ID columns confirms its role in an interface-driven integration cycle.
Mined from its foreign key structure, the heuristic Data Vault classification for this object is satellite-leaning. It references PN_PROPERTIES_ALL, and the modeling suggestion is therefore to treat PN_LOCATIONS_ITF as a satellite attached to the property hub, capturing descriptive location detail rather than defining independent business entities.
Key Information Stored
The table is physically wide, with 91 documented columns in the ETRM 12.2.2 schema. The most significant columns for integration and reporting purposes are:
- LOCATION_ID — the surrogate identifier for the location record and the primary key candidate used to reconcile imported rows against Property Manager master data.
- BATCH_NAME — the logical grouping key for a single import or export run; together with ENTRY_TYPE it forms the principal business-key candidate for batch selection.
- ENTRY_TYPE — indicates whether the row represents an inbound import or an outbound export.
- PROPERTY_ID — the foreign key to PN_PROPERTIES_ALL, linking each space record to its parent property.
- LOCATION_CODE, LOCATION_ALIAS, LOCATION_TYPE_LOOKUP_CODE — the human-readable identifier and classification of the space.
- PARENT_LOCATION_ID — supports hierarchical space structures (for example, floors containing offices).
- FLOOR, OFFICE, SUITE, CLASS, STATUS_TYPE — physical placement and classification attributes.
- RENTABLE_AREA, USABLE_AREA, GROSS_AREA, ASSIGNABLE_AREA, COMMON_AREA — space measurement and cost-allocation fields.
- MAX_CAPACITY, OPTIMUM_CAPACITY, UOM_CODE — occupancy capacity and unit of measure.
- ADDRESS_LINE1 through COUNTRY, ADDRESS_STYLE — the location address block.
- TRANSFERRED_TO_PN, TRANSFERRED_TO_CAD, ERROR_MESSAGE, REQUEST_ID — processing status and error diagnostics.
- LAST_UPDATE_DATE, CREATED_BY, CREATION_DATE, LAST_UPDATED_BY — standard audit columns.
Common Use Cases and Queries
The most frequent operational pattern is monitoring an import or export run by batch. A typical query retrieves all rows for a batch and surfaces any rows that failed validation:
- Select rows for a batch:
SELECT LOCATION_CODE, ENTRY_TYPE, TRANSFERRED_TO_PN, ERROR_MESSAGE FROM PN_LOCATIONS_ITF WHERE BATCH_NAME = :batch; - Identify failed imports: filter on
ERROR_MESSAGE IS NOT NULLorTRANSFERRED_TO_PN = 'N'. - Join to the property master to enrich reporting:
SELECT i.LOCATION_CODE, p.PROPERTY_NAME FROM PN_LOCATIONS_ITF i JOIN PN_PROPERTIES_ALL p ON i.PROPERTY_ID = p.PROPERTY_ID; - Reconcile area totals per property by summing RENTABLE_AREA and USABLE_AREA grouped by PROPERTY_ID.
Reporting use cases include space-utilization analysis, capacity planning, and validation of CAD-to-Property-Manager space synchronization.
Related Objects
The following objects are most closely associated with PN_LOCATIONS_ITF:
- PN_PROPERTIES_ALL — parent property table; joined on
PN_LOCATIONS_ITF.PROPERTY_ID = PN_PROPERTIES_ALL.PROPERTY_ID, the only documented foreign key relationship. - PN_LOCATIONS_ALL — the core master location table into which validated interface rows are transferred.
- PN_SPACE_ASSIGNMENTS — consumes space definition data for employee and organization assignment.
- PO_LOOKUP_CODES / FND_LOOKUP_VALUES — supply the lookup codes referenced by LOCATION_TYPE_LOOKUP_CODE, SPACE_TYPE_LOOKUP_CODE, and FUNCTION_TYPE_LOOKUP_CODE.
- FND_CONCURRENT_REQUESTS — correlates REQUEST_ID and PROGRAM_ID back to the concurrent program that processed the batch.
Together these objects complete the Property Manager space-definition integration path.
-
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 ,
-
Table: PN_ADDRESSES_ALL
12.1.1
owner:PN, object_type:TABLE, fnd_design_data:PN.PN_ADDRESSES_ALL, object_name:PN_ADDRESSES_ALL, status:VALID, product: PN - Property Manager , description: Information on locations and service providers , implementation_dba_data: PN.PN_ADDRESSES_ALL ,
-
Table: PN_ADDRESSES_ALL
12.2.2
owner:PN, object_type:TABLE, fnd_design_data:PN.PN_ADDRESSES_ALL, object_name:PN_ADDRESSES_ALL, status:VALID, product: PN - Property Manager , description: Information on locations and service providers , implementation_dba_data: PN.PN_ADDRESSES_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 ,
-
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: 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_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_PLAND_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PN.PN_PLAND_V, object_name:PN_PLAND_V, status:VALID, product: PN - Property Manager , implementation_dba_data: APPS.PN_PLAND_V ,
-
View: PN_PBUILDING_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PN.PN_PBUILDING_V, object_name:PN_PBUILDING_V, status:VALID, product: PN - Property Manager , implementation_dba_data: APPS.PN_PBUILDING_V ,
-
View: PN_PBUILDING_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PN.PN_PBUILDING_V, object_name:PN_PBUILDING_V, status:VALID, product: PN - Property Manager , implementation_dba_data: APPS.PN_PBUILDING_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: PN_PLAND_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PN.PN_PLAND_V, object_name:PN_PLAND_V, status:VALID, product: PN - Property Manager , implementation_dba_data: APPS.PN_PLAND_V ,
-
View: PN_BUILDINGS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PN.PN_BUILDINGS_V, object_name:PN_BUILDINGS_V, status:VALID, product: PN - Property Manager , description: Form view used to view company information. , implementation_dba_data: APPS.PN_BUILDINGS_V ,
-
View: PN_BUILDINGS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PN.PN_BUILDINGS_V, object_name:PN_BUILDINGS_V, status:VALID, product: PN - Property Manager , description: Form view used to view company information. , implementation_dba_data: APPS.PN_BUILDINGS_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: 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_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 ,