Search Results op_slsr_mst
Overview
The SY_ADDR_MST table is the central address master repository within the Oracle Process Manufacturing (OPM) module of Oracle E-Business Suite (EBS) versions 12.1.1 and 12.2.2. Owned by the GMA (Process Manufacturing Systems) schema, it functions as a single source of truth for all address data across the OPM suite. Its primary role is to eliminate data redundancy by storing address information once and allowing it to be referenced by a unique identifier (ADDR_ID) from numerous transactional and master tables throughout the system. This design ensures data integrity and consistency for business entities such as customers, vendors, warehouses, and organizations.
Key Information Stored
While the provided metadata does not list specific columns, the structure of SY_ADDR_MST is defined by its primary and foreign key relationships. The table's core identifier is the ADDR_ID column, which serves as the primary key (SY_ADDR_MST_PK). A typical OPM address master would also contain standard address attributes such as address lines (ADDR_LINE_1, ADDR_LINE_2, ADDR_LINE_3), city (CITY), state (STATE), postal code (ZIP), country (COUNTRY), and potentially contact names and phone numbers. The extensive list of foreign key relationships indicates that the table is designed to support a wide array of address types, including shipping, billing, mailing, and physical location addresses.
Common Use Cases and Queries
This table is integral to any process requiring address lookup or validation. Common use cases include generating shipping documents, customer and vendor communications, tax calculations, and logistics planning. A frequent query pattern involves joining SY_ADDR_MST to a transactional table to retrieve a complete address for a record. For example, to find the ship-to address for a specific sales order, one would join OP_ORDR_HDR to SY_ADDR_MST. The user's search for "op_fobc_mst" is directly relevant, as OP_FOBC_MST (likely FOB or Freight-On-Board master) references SY_ADDR_MST via its ADDR_ID column, possibly to define a location associated with shipping terms.
SELECT oh.ordr_no, oh.ordr_id, a.*
FROM op_ordr_hdr oh,
sy_addr_mst a
WHERE oh.shipaddr_id = a.addr_id
AND oh.ordr_no = '123456';
Related Objects
SY_ADDR_MST is a foundational table with extensive dependencies across OPM and integrated EBS modules. As documented, its foreign key relationships span several key functional areas:
- Sales & Distribution (OP_*): Customer master (OP_CUST_MST, OP_CUST_MST_OPM), order headers and details (OP_ORDR_HDR, OP_ORDR_DTL), shipments (OP_SHIP_MST), and salespersons (OP_SLSR_MST).
- Procurement (PO_*): Vendor master (PO_VEND_MST), purchase order headers and details (PO_ORDR_HDR, PO_ORDR_DTL), and receipts (PO_RECV_DTL).
- Inventory & Logistics (IC_*, GR_*): Warehouse master (IC_WHSE_MST) and recipient addresses (GR_RECIPIENT_ADDRESSES).
- General Administration (SY_*): Organization master (SY_ORGN_MST, SY_ORGN_MST_B).
The table referenced in the user's search, OP_FOBC_MST, is one of these related objects, confirming SY_ADDR_MST's role in defining geographical points for trade terms.
-
Table: SY_ADDR_MST
12.2.2
owner:GMA, object_type:TABLE, fnd_design_data:GMA.SY_ADDR_MST, object_name:SY_ADDR_MST, status:VALID, product: GMA - Process Manufacturing Systems , description: OPM Address master. Table which stores addresses for all Oracle Process , implementation_dba_data: GMA.SY_ADDR_MST ,
-
Table: SY_ADDR_MST
12.1.1
owner:GMA, object_type:TABLE, fnd_design_data:GMA.SY_ADDR_MST, object_name:SY_ADDR_MST, status:VALID, product: GMA - Process Manufacturing Systems , description: OPM Address master. Table which stores addresses for all Oracle Process , implementation_dba_data: GMA.SY_ADDR_MST ,
-
Table: SY_ORGN_MST_B
12.1.1
owner:GMA, object_type:TABLE, fnd_design_data:GMA.SY_ORGN_MST_B, object_name:SY_ORGN_MST_B, status:VALID, product: GMA - Process Manufacturing Systems , description: Organization code master Base Table. , implementation_dba_data: GMA.SY_ORGN_MST_B ,
-
Table: SY_ORGN_MST
12.1.1
product: GMA - Process Manufacturing Systems , description: Organization code master. , implementation_dba_data: Not implemented in this database ,
-
Table: SY_ORGN_MST
12.2.2
product: GMA - Process Manufacturing Systems , description: Organization code master. , implementation_dba_data: Not implemented in this database ,
-
Table: SY_ORGN_MST_B
12.2.2
owner:GMA, object_type:TABLE, fnd_design_data:GMA.SY_ORGN_MST_B, object_name:SY_ORGN_MST_B, status:VALID, product: GMA - Process Manufacturing Systems , description: Organization code master Base Table. , implementation_dba_data: GMA.SY_ORGN_MST_B ,