Search Results po_location_assocations_pk
Overview
The PO_LOCATION_ASSOCIATIONS_ALL table is a core data object within the Oracle E-Business Suite Purchasing (PO) module. It serves as a junction table that establishes and manages associations between inventory locations (subinventories and locators) and external trading partners, specifically customers and their operational sites. This table is fundamental for enabling complex supply chain and fulfillment processes, such as drop shipments and direct customer shipments from inventory, by defining which physical inventory points are linked to specific customer destinations. As an "ALL" table, it is partitioned by operating unit (ORG_ID), supporting the multi-org architecture of Oracle EBS.
Key Information Stored
The table's structure is designed to enforce unique relationships through multiple primary and unique keys. The critical columns include LOCATION_ID, which references an inventory locator (from INV.MTL_ITEM_LOCATIONS); SUBINVENTORY, identifying the specific stock subinventory; SITE_USE_ID, which points to a customer site usage record (from AR.HZ_CUST_SITE_USES_ALL); and ORG_ID for the operating unit. The provided metadata highlights the importance of these columns through its constraint definitions, particularly the PO_LOCATION_ASSOCIATIONS_UK03 unique key, which ensures that a given combination of LOCATION_ID, SUBINVENTORY, and SITE_USE_ID is not duplicated, thereby maintaining data integrity for these critical associations.
Common Use Cases and Queries
A primary use case is validating and querying valid shipping locations for a specific customer site during order fulfillment or drop shipment creation. For instance, a concurrent program or form validation might execute a query to list all associated inventory locators for a given customer site. The unique key PO_LOCATION_ASSOCIATIONS_UK03, which the user searched for, is critical for preventing duplicate associations and would be referenced in error logs if a violation occurred during data entry via the Oracle Forms interface or a data load. A typical reporting query might join this table to customer and inventory tables to produce a mapping report:
- SELECT pla.location_id, pla.subinventory, hcsua.site_use_code FROM po_location_associations_all pla, hz_cust_site_uses_all hcsua WHERE pla.site_use_id = hcsua.site_use_id AND pla.org_id = 123;
Related Objects
This table has integral relationships with several key EBS entities. Its foreign keys link directly to foundational tables in other modules. Based on the column names and standard EBS schema design, the primary relationships are:
- INV.MTL_ITEM_LOCATIONS: Joined via the LOCATION_ID column. This defines the specific physical or logical locator within a subinventory.
- AR.HZ_CUST_SITE_USES_ALL: Joined via the SITE_USE_ID column. This identifies the functional customer site (e.g., Bill-To, Ship-To) for the association.
- HR_ORGANIZATION_UNITS / Financials ORG: The ORG_ID column ties the record to a specific operating unit, enabling multi-org security and data partitioning.
- The table's own primary and unique keys (PO_LOCATION_ASSOCATIONS_PK, _UPK01, _UK02, _UK03) are referenced by any dependent constraints in related interface or transaction tables within the Purchasing and Order Management modules.
-
Table: PO_LOCATION_ASSOCIATIONS_ALL
12.1.1
owner:PO, object_type:TABLE, fnd_design_data:PO.PO_LOCATION_ASSOCIATIONS_ALL, object_name:PO_LOCATION_ASSOCIATIONS_ALL, status:VALID, product: PO - Purchasing , description: Location associations to customers and customer sites , implementation_dba_data: PO.PO_LOCATION_ASSOCIATIONS_ALL ,
-
Table: PO_LOCATION_ASSOCIATIONS
12.1.1
product: PO - Purchasing , description: Location associations to customers and customer sites , implementation_dba_data: Not implemented in this database ,
-
Table: PO_LOCATION_ASSOCIATIONS_ALL
12.2.2
owner:PO, object_type:TABLE, fnd_design_data:PO.PO_LOCATION_ASSOCIATIONS_ALL, object_name:PO_LOCATION_ASSOCIATIONS_ALL, status:VALID, product: PO - Purchasing , description: Location associations to customers and customer sites , implementation_dba_data: PO.PO_LOCATION_ASSOCIATIONS_ALL ,
-
Table: PO_LOCATION_ASSOCIATIONS
12.2.2
product: PO - Purchasing , description: Location associations to customers and customer sites , implementation_dba_data: Not implemented in this database ,
-
eTRM - PO Tables and Views
12.1.1
description: Temporary table for tracking a receiving upgrade from Release 9 to Release 10 ,
-
eTRM - PO Tables and Views
12.2.2
description: Temporary table for tracking a receiving upgrade from Release 9 to Release 10 ,
-
eTRM - PO Tables and Views
12.1.1
description: Temporary table for tracking a receiving upgrade from Release 9 to Release 10 ,
-
eTRM - PO Tables and Views
12.2.2
description: Temporary table for tracking a receiving upgrade from Release 9 to Release 10 ,