Search Results pn_buildings_v
Overview
PN_BUILDINGS_V is a form view owned by the APPS schema in Oracle E-Business Suite, belonging to the PN – Property Manager product. The ETRM documentation describes it as a "form view used to view company information," and its column list confirms that its primary purpose is to expose building and location level detail for property records. The view consolidates descriptive attributes of a property location — codes, aliases, building identifiers, lease or owned tenure, class, status, gross area, unit of measure, and full address information — together with the decoded meaning values from Oracle lookups and territory definitions. Because it joins transactional location data with reference lookups, it presents human readable property records without requiring the caller to resolve lookup codes manually.
In Oracle EBS 12.1.1 and 12.2.2, views of this type are typically bound to an Oracle Forms block and are also used by reports, concurrent programs, and integration extracts. The user search term "gross_area" maps directly to the GROSS_AREA column, which is one of the principal measures surfaced by the view and is relevant to space management and property valuation reporting.
Underlying Base Objects
The documented base objects for PN_BUILDINGS_V are:
- PN_LOCATIONS (synonym) — the primary source of location and building attribute columns such as LOCATION_CODE, BUILDING, GROSS_AREA, and UOM_CODE.
- PN_LOCATION_PARKS (synonym) — referenced through LOCATION_PARK_ID.
- PN_PROPERTIES_ALL (synonym) — supplies PROPERTY_ID and PROPERTY_NAME.
- PN_ADDRESSES_ALL (synonym) — supplies address line, city, state, county, zip, and country columns via ADDRESS_ID.
- FND_LOOKUPS (view) — decodes lookup codes into MEANING values, for example LOCATION_TYPE, LEASE_OR_OWNED_TENURE, CLASS_NAME, and STATUS_TYPE_NAME.
- FND_TERRITORIES_VL (view) — supplies TERRITORY_ID and ADDRESS_STYLE.
- MTL_UNITS_OF_MEASURE (synonym) — provides the UNIT_OF_MEASURE description for the stored UOM_CODE.
- FND_GLOBAL (package) and PNP_UTIL_FUNC (package) — supporting program units used within the view definition.
The view is therefore a denormalized presentation layer over the PN location, property, and address tables, enriched with Oracle Applications lookup and territory reference data.
Key Columns
Identity and audit columns include ROW_ID, ORG_ID, LOCATION_ID, PROPERTY_ID, and the standard WHO columns LAST_UPDATE_DATE, LAST_UPDATED_BY, CREATION_DATE, CREATED_BY, and LAST_UPDATE_LOGIN.
Descriptive property columns include LOCATION_CODE, LOCATION_ALIAS, BUILDING, LOCATION_TYPE (decoded from LOCATION_TYPE_LOOKUP_CODE via FLV.MEANING), SPACE_TYPE_LOOKUP_CODE, FUNCTION_TYPE_LOOKUP_CODE, STANDARD_TYPE_LOOKUP_CODE, LEASE_OR_OWNED with its decoded LEASE_OR_OWNED_TENURE, CLASS with CLASS_NAME, and STATUS_TYPE with STATUS_TYPE_NAME.
Measurement columns are central to the "gross_area" search: GROSS_AREA holds the measured gross area value, UOM_CODE holds the stored unit of measure, and UNIT_OF_MEASURE holds its description from MTL_UNITS_OF_MEASURE. These pair together and should always be reported jointly.
Address columns include ADDRESS_LINE1 through ADDRESS_LINE4, COUNTY, CITY, STATE, PROVINCE, ZIP_CODE, COUNTRY, TERRITORY_ID, and ADDRESS_STYLE. The view also exposes INTERFACE_FLAG, ATTRIBUTE_CATEGORY, and ATTRIBUTE1 through ATTRIBUTE15 for extensibility.
Common Use Cases and Queries
Typical uses include property and space reporting, gross area aggregation by property, address mailing extracts, and integration feeds that require decoded lookup values.
- Listing buildings with their gross area and unit of measure for a property.
- Aggregating total gross area by property or by class and status.
- Filtering leased versus owned locations using the decoded tenure.
- Extracting address and territory detail for correspondence or interface staging.
Sample query:
SELECT property_name, building, location_code, gross_area, unit_of_measure, location_type, status_type_name FROM apps.pn_buildings_v WHERE org_id = :p_org_id AND gross_area IS NOT NULL ORDER BY property_name, building;
A further example aggregates area by class:
SELECT class_name, SUM(gross_area) total_gross_area FROM apps.pn_buildings_v WHERE org_id = :p_org_id GROUP BY class_name;
Because the view is a form view, direct DML is not supported; modifications should be performed through the Property Manager forms or the underlying PN_LOCATIONS interface rather than against the view itself.
-
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_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 ,
-
SYNONYM: APPS.PN_ADDRESSES_ALL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PN_ADDRESSES_ALL, status:VALID,
-
SYNONYM: APPS.PN_LOCATION_PARKS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PN_LOCATION_PARKS, status:VALID,
-
SYNONYM: APPS.PN_LOCATION_PARKS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PN_LOCATION_PARKS, status:VALID,
-
SYNONYM: APPS.PN_ADDRESSES_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PN_ADDRESSES_ALL, status:VALID,
-
12.2.2 FND Design Data
12.2.2
-
SYNONYM: APPS.PN_PROPERTIES_ALL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PN_PROPERTIES_ALL, status:VALID,
-
SYNONYM: APPS.PN_LOCATIONS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PN_LOCATIONS, status:VALID,
-
SYNONYM: APPS.PN_PROPERTIES_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PN_PROPERTIES_ALL, status:VALID,
-
12.1.1 FND Design Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
SYNONYM: APPS.PN_LOCATIONS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PN_LOCATIONS, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
PACKAGE: APPS.PNP_UTIL_FUNC
12.1.1
owner:APPS, object_type:PACKAGE, object_name:PNP_UTIL_FUNC, status:VALID,
-
PACKAGE: APPS.PNP_UTIL_FUNC
12.2.2
owner:APPS, object_type:PACKAGE, object_name:PNP_UTIL_FUNC, status:VALID,
-
VIEW: APPS.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,
-
VIEW: APPS.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,
-
VIEW: APPS.FND_TERRITORIES_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:FND.FND_TERRITORIES_VL, object_name:FND_TERRITORIES_VL, status:VALID,
-
VIEW: APPS.FND_TERRITORIES_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FND.FND_TERRITORIES_VL, object_name:FND_TERRITORIES_VL, status:VALID,
-
SYNONYM: APPS.MTL_UNITS_OF_MEASURE
12.1.1
owner:APPS, object_type:SYNONYM, object_name:MTL_UNITS_OF_MEASURE, status:VALID,
-
SYNONYM: APPS.MTL_UNITS_OF_MEASURE
12.2.2
owner:APPS, object_type:SYNONYM, object_name:MTL_UNITS_OF_MEASURE, status:VALID,
-
VIEW: APPS.FND_LOOKUPS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FND.FND_LOOKUPS, object_name:FND_LOOKUPS, status:VALID,
-
VIEW: APPS.FND_LOOKUPS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:FND.FND_LOOKUPS, object_name:FND_LOOKUPS, status:VALID,
-
eTRM - PN Tables and Views
12.2.2
description: Interface table to contain batch lines information. ,
-
eTRM - PN Tables and Views
12.1.1
description: Interface table to contain batch lines information. ,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
eTRM - FND Tables and Views
12.2.2
description: No longer used ,
-
eTRM - FND Tables and Views
12.1.1
description: No longer used ,
-
PACKAGE: APPS.FND_GLOBAL
12.2.2
owner:APPS, object_type:PACKAGE, object_name:FND_GLOBAL, status:VALID,
-
PACKAGE: APPS.FND_GLOBAL
12.1.1
owner:APPS, object_type:PACKAGE, object_name:FND_GLOBAL, status:VALID,
-
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. ,
-
eTRM - FND Tables and Views
12.2.2
description: No longer used ,
-
eTRM - FND Tables and Views
12.1.1
description: No longer used ,