Search Results csf_md_pois
Overview
The CSF_MD_POIS table is a core data structure within the Oracle E-Business Suite (EBS) Field Service (CSF) module, specifically designed to support the Map Display functionality. It serves as the master repository for defining Points of Interest (POIs). A POI represents a specific geographic location or landmark that is relevant for field service operations, such as a customer site, a depot, a hazard zone, or a preferred service area. The table's primary role is to store the fundamental attributes and visual styling rules for these locations, enabling their graphical representation and utilization within the application's mapping interfaces to optimize field technician routing, scheduling, and navigation.
Key Information Stored
While the provided metadata does not list all columns, the structure indicates the table holds essential POI definition data. The primary key, POI_ID, uniquely identifies each point of interest record. A critical foreign key relationship exists via the INST_STYLE_ID column, which links to the CSF_MD_INST_STYLE_SHTS table. This linkage associates each POI with a specific instance style sheet, which governs its visual presentation (e.g., icon, color, label) on the map. Other columns typically found in such a table would include data for the POI's geographic coordinates (latitude and longitude), a name or description, status, creation and last update dates, and potentially categorization attributes to group POIs by type.
Common Use Cases and Queries
This table is central to scenarios involving the visualization of service-related geography. Common use cases include displaying all active customer sites within a territory, marking high-priority locations on a dispatcher's map, or defining boundaries for service zones. A typical query might retrieve POIs for rendering on a map, often joining with the style sheet table to fetch display properties. For example:
- Retrieving Active POIs with Styling:
SELECT p.poi_id, p.name, p.latitude, p.longitude, s.style_attributes FROM csf_md_pois p, csf_md_inst_style_shts s WHERE p.inst_style_id = s.inst_style_id AND p.status = 'ACTIVE'; - Reporting on POI Types: Generating a list of POI categories and their counts for administrative purposes.
- Data Maintenance: ETL processes or administrative forms populate and update this table to reflect changes in the field service landscape.
Related Objects
The CSF_MD_POIS table has defined relationships with several other objects in the CSF schema, forming a key part of the Map Display data model. As per the metadata, it is referenced by the CSF_MD_POI_NM_ASGNS table via a foreign key on POI_ID. This child table likely handles naming assignments or additional attributes for POIs. Furthermore, CSF_MD_POIS itself holds a foreign key (INST_STYLE_ID) to the CSF_MD_INST_STYLE_SHTS table, which contains the visual style definitions. Administrators and developers should also investigate related application programming interfaces (APIs) or views (such as CSF_MD_POIS_V) that may provide a supported interface for accessing and manipulating this data.
-
Table: CSF_MD_POIS
12.1.1
owner:CSF, object_type:TABLE, fnd_design_data:CSF.CSF_MD_POIS, object_name:CSF_MD_POIS, status:VALID, product: CSF - Field Service , description: This table defines POI (point of interest) for Map Display , implementation_dba_data: CSF.CSF_MD_POIS ,
-
Table: CSF_MD_POIS
12.2.2
owner:CSF, object_type:TABLE, fnd_design_data:CSF.CSF_MD_POIS, object_name:CSF_MD_POIS, status:VALID, product: CSF - Field Service , description: This table defines POI (point of interest) for Map Display , implementation_dba_data: CSF.CSF_MD_POIS ,
-
Table: CSF_MD_POI_NM_ASGNS
12.1.1
owner:CSF, object_type:TABLE, fnd_design_data:CSF.CSF_MD_POI_NM_ASGNS, object_name:CSF_MD_POI_NM_ASGNS, status:VALID, product: CSF - Field Service , description: Defines the relationship between the MD NAME and the MD NAMES and MD POI tables. , implementation_dba_data: CSF.CSF_MD_POI_NM_ASGNS ,
-
Table: CSF_MD_INST_STYLE_SHTS
12.1.1
owner:CSF, object_type:TABLE, fnd_design_data:CSF.CSF_MD_INST_STYLE_SHTS, object_name:CSF_MD_INST_STYLE_SHTS, status:VALID, product: CSF - Field Service , description: Defines map instance style sheets , implementation_dba_data: CSF.CSF_MD_INST_STYLE_SHTS ,
-
Table: CSF_MD_POI_NM_ASGNS
12.2.2
owner:CSF, object_type:TABLE, fnd_design_data:CSF.CSF_MD_POI_NM_ASGNS, object_name:CSF_MD_POI_NM_ASGNS, status:VALID, product: CSF - Field Service , description: Defines the relationship between the MD NAME and the MD NAMES and MD POI tables. , implementation_dba_data: CSF.CSF_MD_POI_NM_ASGNS ,
-
Table: CSF_MD_INST_STYLE_SHTS
12.2.2
owner:CSF, object_type:TABLE, fnd_design_data:CSF.CSF_MD_INST_STYLE_SHTS, object_name:CSF_MD_INST_STYLE_SHTS, status:VALID, product: CSF - Field Service , description: Defines map instance style sheets , implementation_dba_data: CSF.CSF_MD_INST_STYLE_SHTS ,