Search Results csf_lf_names
Overview
CSF_LF_NAMES is a core reference table in the Oracle E-Business Suite Field Service (CSF) module, holding all name information used by the Location Finder component. The Location Finder provides geospatial and address-resolution services within Field Service, enabling the identification and disambiguation of places, points of interest (POIs), and road segments. Each row in CSF_LF_NAMES represents a discrete name record that can be associated with one or more location entities through the intersection tables CSF_LF_PLACE_NAMES, CSF_LF_POI_NAMES, and CSF_LF_ROADSEGM_NAMES.
In data-vault modeling terms, the FK structure suggests that CSF_LF_NAMES behaves as a hub. Because multiple child tables reference its primary key via NAME_ID, it functions as the central anchor for name-based attributes distributed across satellite-style child tables. This classification is heuristic and should be treated as a modeling suggestion rather than an enforced architectural constraint.
Key Information Stored
The table contains 13 documented columns in the 12.2.2 schema. The most significant are:
- NAME_ID — Surrogate primary key (CSF_LF_NAMES_PK) that uniquely identifies each name record and is referenced by all child intersection tables.
- NAME — The full formatted or raw name string associated with the location entity.
- LANGUAGE_CODE — Language in which the name is expressed, supporting multilingual deployments.
- JUNCTION_NAME — Name used at road junctions or intersections.
- EXIT_NUMBER — Highway or route exit identifier when applicable.
- ROUTE_TYPE — Classification of the route (e.g., highway, street, arterial).
- PREFIX — Directional or qualifier prefix (e.g., North, Old).
- BASE_NAME — Core street or place name without prefix/suffix modifiers.
- STREET_TYPE — Type designator such as Street, Avenue, or Boulevard.
- STREET_TYPE_ATTACHED — Flag indicating whether the street type is attached to the base name.
- STREET_TYPE_BEFORE_BASE — Flag indicating whether the street type precedes the base name.
- SUFFIX — Trailing qualifier (e.g., Jr., Ext).
- SECURITY_GROUP_ID — Foreign key to FND_SECURITY_GROUPS, enforcing multi-tenant or organizational data segregation.
The surrogate key is NAME_ID. No separate business-key unique index is documented beyond the primary key, though NAME combined with LANGUAGE_CODE and SECURITY_GROUP_ID often serves as a de facto business identifier in practice.
Common Use Cases and Queries
Typical usage centers on resolving names for places, POIs, and road segments during address validation, routing, and location-based dispatching. A common query joins CSF_LF_NAMES to one of its child tables:
- Retrieving all names for a specific place:
SELECT n.NAME FROM CSF_LF_NAMES n, CSF_LF_PLACE_NAMES p WHERE n.NAME_ID = p.NAME_ID AND p.PLACE_ID = :place_id; - Locating POIs by partial street name: filter on BASE_NAME or NAME using LIKE predicates.
- Reporting on multilingual name coverage by grouping on LANGUAGE_CODE.
- Security-filtered lookups joining to FND_SECURITY_GROUPS on SECURITY_GROUP_ID.
Because the table acts as a hub, reporting layers frequently pre-join it to the three name-intersection tables to produce a unified location naming view.
Related Objects
The following objects have documented relationships with CSF_LF_NAMES:
- CSF_LF_PLACE_NAMES — References NAME_ID; associates name records with places.
- CSF_LF_POI_NAMES — References NAME_ID; associates name records with points of interest.
- CSF_LF_ROADSEGM_NAMES — References NAME_ID; associates name records with road segments.
- FND_SECURITY_GROUPS — Referenced via CSF_LF_NAMES.SECURITY_GROUP_ID; governs row-level access.
These four objects constitute the complete documented dependency surface for CSF_LF_NAMES. Any extension or purge operation on the hub must account for the three child intersection tables to preserve referential integrity.
-
Table: CSF_LF_NAMES
12.1.1
owner:CSF, object_type:TABLE, fnd_design_data:CSF.CSF_LF_NAMES, object_name:CSF_LF_NAMES, status:VALID, product: CSF - Field Service , description: Stores all Name information for the Location Finder , implementation_dba_data: CSF.CSF_LF_NAMES ,
-
Table: CSF_LF_NAMES
12.2.2
owner:CSF, object_type:TABLE, fnd_design_data:CSF.CSF_LF_NAMES, object_name:CSF_LF_NAMES, status:VALID, product: CSF - Field Service , description: Stores all Name information for the Location Finder , implementation_dba_data: CSF.CSF_LF_NAMES ,
-
APPS.CSF_TASK_ADDRESS_PVT SQL Statements
12.1.1
-
VIEW: CSF.CSF_LF_NAMES#
12.2.2
owner:CSF, object_type:VIEW, object_name:CSF_LF_NAMES#, status:VALID,
-
APPS.CSF_TASK_ADDRESS_PVT SQL Statements
12.2.2
-
SYNONYM: APPS.CSF_LF_NAMES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:CSF_LF_NAMES, status:VALID,
-
VIEW: CSF.CSF_LF_NAMES#
12.2.2
-
SYNONYM: APPS.CSF_LF_NAMES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:CSF_LF_NAMES, status:VALID,
-
Table: CSF_LF_POI_NAMES
12.2.2
owner:CSF, object_type:TABLE, fnd_design_data:CSF.CSF_LF_POI_NAMES, object_name:CSF_LF_POI_NAMES, status:VALID, product: CSF - Field Service , description: Defines the relation between POI and Name tables , implementation_dba_data: CSF.CSF_LF_POI_NAMES ,
-
Table: CSF_LF_POI_NAMES
12.1.1
owner:CSF, object_type:TABLE, fnd_design_data:CSF.CSF_LF_POI_NAMES, object_name:CSF_LF_POI_NAMES, status:VALID, product: CSF - Field Service , description: Defines the relation between POI and Name tables , implementation_dba_data: CSF.CSF_LF_POI_NAMES ,
-
Table: CSF_LF_ROADSEGM_NAMES
12.2.2
owner:CSF, object_type:TABLE, fnd_design_data:CSF.CSF_LF_ROADSEGM_NAMES, object_name:CSF_LF_ROADSEGM_NAMES, status:VALID, product: CSF - Field Service , description: Defines the relation between roadsegments and the name table , implementation_dba_data: CSF.CSF_LF_ROADSEGM_NAMES ,
-
Table: CSF_LF_ROADSEGM_NAMES
12.1.1
owner:CSF, object_type:TABLE, fnd_design_data:CSF.CSF_LF_ROADSEGM_NAMES, object_name:CSF_LF_ROADSEGM_NAMES, status:VALID, product: CSF - Field Service , description: Defines the relation between roadsegments and the name table , implementation_dba_data: CSF.CSF_LF_ROADSEGM_NAMES ,
-
Table: CSF_LF_PLACE_NAMES
12.2.2
owner:CSF, object_type:TABLE, fnd_design_data:CSF.CSF_LF_PLACE_NAMES, object_name:CSF_LF_PLACE_NAMES, status:VALID, product: CSF - Field Service , description: Defines relation between Place and Name , implementation_dba_data: CSF.CSF_LF_PLACE_NAMES ,
-
TABLE: CSF.CSF_LF_NAMES
12.2.2
owner:CSF, object_type:TABLE, fnd_design_data:CSF.CSF_LF_NAMES, object_name:CSF_LF_NAMES, status:VALID,
-
Table: CSF_LF_PLACE_NAMES
12.1.1
owner:CSF, object_type:TABLE, fnd_design_data:CSF.CSF_LF_PLACE_NAMES, object_name:CSF_LF_PLACE_NAMES, status:VALID, product: CSF - Field Service , description: Defines relation between Place and Name , implementation_dba_data: CSF.CSF_LF_PLACE_NAMES ,
-
TABLE: CSF.CSF_LF_NAMES
12.1.1
owner:CSF, object_type:TABLE, fnd_design_data:CSF.CSF_LF_NAMES, object_name:CSF_LF_NAMES, status:VALID,
-
PACKAGE BODY: APPS.CSF_TASK_ADDRESS_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CSF_TASK_ADDRESS_PVT, status:VALID,
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
PACKAGE BODY: APPS.CSF_TASK_ADDRESS_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CSF_TASK_ADDRESS_PVT, status:VALID,
-
APPS.CSF_LF_GEOPVT SQL Statements
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
PACKAGE BODY: APPS.CSF_TASK_ADDRESS_PVT
12.1.1
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
PACKAGE BODY: APPS.CSF_TASK_ADDRESS_PVT
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
eTRM - CSF Tables and Views
12.1.1
description: Defines the result of spatial index creation (tiling). ,
-
eTRM - CSF Tables and Views
12.2.2
description: Defines the result of spatial index creation (tiling). ,
-
APPS.CSF_SPATIAL_DATALOAD_PVT SQL Statements
12.2.2
-
PACKAGE BODY: APPS.CSF_LF_GEOPVT
12.2.2
-
APPS.CSF_TASK_ADDRESS_PVT dependencies on CSF_LF_NAMES
12.1.1
-
APPS.CSF_TASK_ADDRESS_PVT dependencies on CSF_LF_NAMES
12.2.2
-
PACKAGE BODY: APPS.CSF_SPATIAL_TTSP_PVT
12.2.2
-
APPS.CSF_TASK_ADDRESS_PVT dependencies on CSF_LF_PLACE_NAMES
12.2.2
-
APPS.CSF_TASK_ADDRESS_PVT dependencies on CSF_LF_PLACE_NAMES
12.1.1
-
APPS.CSF_TASK_ADDRESS_PVT dependencies on CSF_LF_PLACES
12.2.2
-
APPS.CSF_TASK_ADDRESS_PVT dependencies on CSF_LF_PLACES
12.1.1
-
PACKAGE BODY: APPS.CSF_SPATIAL_DATALOAD_PVT
12.2.2
-
eTRM - CSF Tables and Views
12.1.1
description: Defines the result of spatial index creation (tiling). ,
-
eTRM - CSF Tables and Views
12.2.2
description: Defines the result of spatial index creation (tiling). ,
-
APPS.CSF_SPATIAL_DATALOAD_PVT dependencies on DBMS_DDL
12.2.2
-
APPS.CSF_SPATIAL_DATALOAD_PVT dependencies on TAB
12.2.2
-
APPS.CSF_SPATIAL_TTSP_PVT dependencies on DBMS_STATS
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1