Search Results pn_loc_acc_map_all
Overview
PN_LOC_ACC_MAP_ALL is a Property Manager (PN) transaction table in Oracle E-Business Suite 12.1.1 and 12.2.2 that stores the mapping of expense accounts to locations. It is the detail (line-level) counterpart to the mapping header, allowing an organization to associate a range or set of accounting flexfield values with a specific property location so that expenses incurred at that location are charged to the correct accounts. Because it carries ORG_ID and is named with the _ALL suffix, the table is multi-org enabled and partitions data by operating unit, consistent with the MOAC (Multi-Org Access Control) model used throughout EBS 12.x.
From a dimensional modeling perspective, the mined foreign-key structure suggests classifying this table as a link entity. It resolves relationships between operating units (HR_ALL_ORGANIZATION_UNITS), mapping headers (PN_LOC_ACC_MAP_HDR_ALL), and the accounting flexfield segments, rather than acting as a standalone hub or a descriptive satellite. This is a heuristic suggestion based on the documented FK structure, not a declarative statement from Oracle.
Key Information Stored
The table contains 92 documented columns. The most significant are:
- LOC_ACC_MAP_ID — Surrogate primary key, enforced by PN_LOC_ACC_MAP_PK and also covered by the unique index PN_LOC_ACC_MAP_U1.
- LOC_ACC_MAP_HDR_ID — Foreign key to PN_LOC_ACC_MAP_HDR_ALL; ties each detail row to its parent mapping header.
- ORG_ID — Foreign key to HR_ALL_ORGANIZATION_UNITS; the operating unit that owns the mapping row.
- PROPERTY_ID — Identifies the property to which the account mapping applies.
- LOCATION_ID — Identifies the specific location within the property.
- ACCOUNT_LOW / ACCOUNT_HIGH — Low and high bounds of the account range being mapped.
- EXPENSE_TYPE_CODE — Classifies the type of expense affected by the mapping.
- EFFECTIVE_FROM_DATE / EFFECTIVE_TO_DATE — Date range during which the mapping is valid.
- RECOVERABLE_FLAG — Indicates whether the mapped expense is recoverable.
- SEGMENT1_LOW through SEGMENT30_HIGH — Low/high value pairs for up to 30 accounting flexfield segments, supporting range-based account mapping.
- ATTRIBUTE_CATEGORY and ATTRIBUTE1–ATTRIBUTE15 — Descriptive flexfield (DFF) columns for extensibility.
- WHO columns — CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY, LAST_UPDATE_LOGIN provide standard audit tracking.
No business-key candidate beyond the surrogate key is uniquely documented; the primary key remains the authoritative identifier.
Common Use Cases and Queries
Typical scenarios include validating that every location has an active expense account mapping, identifying gaps before period close, and reporting on account ranges by property. A representative query joins the detail to its header and operating unit:
SELECT m.LOC_ACC_MAP_ID, m.LOCATION_ID, m.ACCOUNT_LOW, m.ACCOUNT_HIGH, h.LOC_ACC_MAP_HDR_ID
FROM PN.PN_LOC_ACC_MAP_ALL m, PN.PN_LOC_ACC_MAP_HDR_ALL h
WHERE m.LOC_ACC_MAP_HDR_ID = h.LOC_ACC_MAP_HDR_ID
AND m.ORG_ID = :p_org_id;
A second pattern filters effective-dated rows using EFFECTIVE_FROM_DATE and EFFECTIVE_TO_DATE to return only mappings active as of the current date. Because the table is org-striped, queries executed through MOAC require the ORG_ID predicate or the client-side org context to return the correct operating unit data.
Related Objects
- PN_LOC_ACC_MAP_HDR_ALL — Parent header; joined on LOC_ACC_MAP_HDR_ID.
- HR_ALL_ORGANIZATION_UNITS — Operating unit definition; joined on ORG_ID.
- PN_PROPERTIES_ALL / PN_LOCATIONS_ALL — Property and location master data referenced by PROPERTY_ID and LOCATION_ID.
- GL_CODE_COMBINATIONS — Source of valid account combinations that the segment low/high ranges resolve against.
- FND_FLEX_VALUES — Supplies the flexfield segment values used in the SEGMENTn_LOW/HIGH columns.
- Property Manager account mapping concurrent programs and the PN_LOC_ACC_MAP public API — Maintain and validate mapping records.
-
Table: PN_LOC_ACC_MAP_ALL
12.2.2
owner:PN, object_type:TABLE, fnd_design_data:PN.PN_LOC_ACC_MAP_ALL, object_name:PN_LOC_ACC_MAP_ALL, status:VALID, product: PN - Property Manager , description: Stores the information for mapping of expense accounts to the location. , implementation_dba_data: PN.PN_LOC_ACC_MAP_ALL ,
-
Table: PN_LOC_ACC_MAP_ALL
12.1.1
owner:PN, object_type:TABLE, fnd_design_data:PN.PN_LOC_ACC_MAP_ALL, object_name:PN_LOC_ACC_MAP_ALL, status:VALID, product: PN - Property Manager , description: Stores the information for mapping of expense accounts to the location. , implementation_dba_data: PN.PN_LOC_ACC_MAP_ALL ,
-
SYNONYM: APPS.PN_LOC_ACC_MAP_ALL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PN_LOC_ACC_MAP_ALL, status:VALID,
-
SYNONYM: APPS.PN_LOC_ACC_MAP_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PN_LOC_ACC_MAP_ALL, status:VALID,
-
APPS.PN_REC_EXP_EXTR_FROM_GL_PKG SQL Statements
12.2.2
-
APPS.PN_REC_EXP_EXTR_FROM_GL_PKG SQL Statements
12.1.1
-
Table: PN_LOC_ACC_MAP_HDR_ALL
12.1.1
owner:PN, object_type:TABLE, fnd_design_data:PN.PN_LOC_ACC_MAP_HDR_ALL, object_name:PN_LOC_ACC_MAP_HDR_ALL, status:VALID, product: PN - Property Manager , description: Stores mapping accounts to location header information. , implementation_dba_data: PN.PN_LOC_ACC_MAP_HDR_ALL ,
-
APPS.PN_LOC_ACC_MAP_PKG SQL Statements
12.1.1
-
VIEW: PN.PN_LOC_ACC_MAP_ALL#
12.2.2
owner:PN, object_type:VIEW, object_name:PN_LOC_ACC_MAP_ALL#, status:VALID,
-
SYNONYM: APPS.PN_LOC_ACC_MAP
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PN_LOC_ACC_MAP, status:VALID,
-
PACKAGE BODY: APPS.PN_REC_EXP_EXTR_FROM_GL_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:PN_REC_EXP_EXTR_FROM_GL_PKG, status:VALID,
-
Table: PN_LOC_ACC_MAP_HDR_ALL
12.2.2
owner:PN, object_type:TABLE, fnd_design_data:PN.PN_LOC_ACC_MAP_HDR_ALL, object_name:PN_LOC_ACC_MAP_HDR_ALL, status:VALID, product: PN - Property Manager , description: Stores mapping accounts to location header information. , implementation_dba_data: PN.PN_LOC_ACC_MAP_HDR_ALL ,
-
PACKAGE BODY: APPS.PN_LOC_ACC_MAP_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:PN_LOC_ACC_MAP_PKG, status:VALID,
-
SYNONYM: APPS.PN_LOC_ACC_MAP
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PN_LOC_ACC_MAP, status:VALID,
-
APPS.PN_LOC_ACC_MAP_PKG SQL Statements
12.2.2
-
PACKAGE BODY: APPS.PN_LOC_ACC_MAP_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:PN_LOC_ACC_MAP_PKG, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
PACKAGE BODY: APPS.PN_REC_EXP_EXTR_FROM_GL_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:PN_REC_EXP_EXTR_FROM_GL_PKG, status:VALID,
-
VIEW: PN.PN_LOC_ACC_MAP_ALL#
12.2.2
-
12.2.2 FND Design Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
TABLE: PN.PN_LOC_ACC_MAP_ALL
12.1.1
owner:PN, object_type:TABLE, fnd_design_data:PN.PN_LOC_ACC_MAP_ALL, object_name:PN_LOC_ACC_MAP_ALL, status:VALID,
-
TABLE: PN.PN_LOC_ACC_MAP_ALL
12.2.2
owner:PN, object_type:TABLE, fnd_design_data:PN.PN_LOC_ACC_MAP_ALL, object_name:PN_LOC_ACC_MAP_ALL, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
PACKAGE BODY: APPS.PN_LOC_ACC_MAP_PKG
12.2.2
-
PACKAGE BODY: APPS.PN_LOC_ACC_MAP_PKG
12.1.1
-
APPS.PN_LOC_ACC_MAP_PKG dependencies on PN_LOC_ACC_MAP_ALL
12.1.1
-
APPS.PN_REC_EXP_EXTR_FROM_GL_PKG dependencies on PN_LOC_ACC_MAP_ALL
12.1.1
-
APPS.PN_LOC_ACC_MAP_PKG dependencies on PN_LOC_ACC_MAP_ALL
12.2.2
-
APPS.PN_REC_EXP_EXTR_FROM_GL_PKG dependencies on PN_LOC_ACC_MAP_ALL
12.2.2
-
Table: HR_ALL_ORGANIZATION_UNITS
12.1.1
owner:HR, object_type:TABLE, fnd_design_data:AS.HR_ALL_ORGANIZATION_UNITS PER.HR_ALL_ORGANIZATION_UNITS, object_name:HR_ALL_ORGANIZATION_UNITS, status:VALID, product: PER - Human Resources , description: Organization unit definitions. , implementation_dba_data: HR.HR_ALL_ORGANIZATION_UNITS ,
-
Table: HR_ALL_ORGANIZATION_UNITS
12.2.2
owner:HR, object_type:TABLE, fnd_design_data:AS.HR_ALL_ORGANIZATION_UNITS PER.HR_ALL_ORGANIZATION_UNITS, object_name:HR_ALL_ORGANIZATION_UNITS, status:VALID, product: PER - Human Resources , description: Organization unit definitions. , implementation_dba_data: HR.HR_ALL_ORGANIZATION_UNITS ,
-
APPS.PN_REC_EXP_EXTR_FROM_GL_PKG dependencies on PN_LOC_ACC_MAP
12.1.1
-
APPS.PN_REC_EXP_EXTR_FROM_GL_PKG dependencies on PN_LOC_ACC_MAP
12.2.2
-
PACKAGE BODY: APPS.PN_REC_EXP_EXTR_FROM_GL_PKG
12.1.1
-
PACKAGE BODY: APPS.PN_REC_EXP_EXTR_FROM_GL_PKG
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.AD_MORG
12.1.1
-
PACKAGE BODY: APPS.AD_MORG
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
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. ,