Search Results csf_md_adm_bounds




Overview

The CSF_MD_ADM_BOUNDS table is a core master data table within the Oracle E-Business Suite (EBS) Field Service (CSF) module. It serves as the system of record for storing definitions of administrative boundaries, such as states, provinces, counties, or municipalities, as defined within a specific country. This table is critical for enabling geographic and administrative structuring of service territories, resource assignments, and customer locations. Its data underpins the spatial and hierarchical organization necessary for efficient field service planning, dispatch, and management in both EBS 12.1.1 and 12.2.2.

Key Information Stored

While the full column list is not detailed in the provided metadata, the documented primary and foreign keys reveal the table's essential structure. The primary identifier is the ADMIN_BOUND_ID column, which uniquely defines each administrative boundary record. A critical foreign key is the INST_STYLE_ID column, which links the boundary to its associated installation style sheet (CSF_MD_INST_STYLE_SHTS). This relationship suggests the table may store configuration linking administrative areas to specific service or installation procedures. Other typical columns in such a table would include fields for boundary name, code, country identifier, parent boundary ID for hierarchies, and potentially geometric data or references for spatial mapping.

Common Use Cases and Queries

This table is primarily accessed to support territory management and location-based service rules. Common operational and reporting use cases include defining service regions for technicians, validating customer addresses against serviced areas, and generating hierarchical reports of service coverage by country and subdivision. A fundamental query pattern involves joining to the CSF_MD_NAMES table to retrieve the localized names for boundaries. For example, to list all administrative boundaries with their names for a specific country, a query would join CSF_MD_ADM_BOUNDS to CSF_MD_NAMES on ADMIN_BOUND_ID and filter by a COUNTRY_CODE or similar column. Another typical query retrieves boundaries associated with a particular installation style for procedural configuration.

Related Objects

  • Primary Key Constraint: CSF_MD_ADM_BOUNDS_PK on column ADMIN_BOUND_ID.
  • Foreign Key (Parent): CSF_MD_INST_STYLE_SHTS table. The column CSF_MD_ADM_BOUNDS.INST_STYLE_ID references this table, linking a boundary to an installation style sheet.
  • Foreign Key (Child): CSF_MD_NAMES table. This table contains a foreign key column (CSF_MD_NAMES.ADMIN_BOUND_ID) that references CSF_MD_ADM_BOUNDS.ADMIN_BOUND_ID, storing multilingual names for each boundary.