Search Results fte_sel_groups
Overview
FTE_SEL_GROUPS is a Transportation Execution (FTE) transactional configuration table in Oracle E-Business Suite 12.1.1 and 12.2.2. It defines selection groups, which are logical containers used to consolidate selection rules against a specific business entity — a customer, customer site, shipping organization, or shipping enterprise. Rather than attaching rules individually to every entity, Oracle Transportation Execution allows rules to be gathered into a named group, and the group is then associated with one or more entities through the FTE_SEL_GROUP_ASSIGNMENTS table. This indirection permits a single rule set to be maintained once and reused across many customers or organizations.
Within the schema, FTE_SEL_GROUPS acts as the anchor for rule selection behavior. Groups are scoped to a parent object in FTE_SEL_OBJECTS via OBJECT_ID, meaning that a group is always defined relative to an entity type and entity instance. The heuristic Data Vault classification supplied in the metadata is hub-leaning: the table carries a single-column surrogate primary key and a small set of descriptive and business attributes, with several dependent tables referencing it by GROUP_ID. In a Data Vault model this would typically be represented as a hub keyed on GROUP_ID, with the descriptive columns and effectivity dates held in a satellite, and the assignment and rule relationships modeled as links.
Key Information Stored
The table is owned by the FTE schema and contains 29 documented columns. The most significant are:
- GROUP_ID — the surrogate primary key (FTE_SEL_GROUPS_PK1) and the value propagated to all child tables.
- NAME — the group name, paired with OBJECT_ID as unique index FTE_SEL_GROUPS_U1, making it the principal business-key candidate.
- OBJECT_ID — foreign key to FTE_SEL_OBJECTS, identifying the entity type or instance the group belongs to.
- DESCRIPTION — free-text description of the group's purpose.
- START_DATE and END_DATE — the effectivity window controlling when the group is active.
- ASSIGNED_FLAG — indicates whether the group has been assigned to an entity.
- GROUP_STATUS_FLAG — the current lifecycle status of the group.
- CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY, LAST_UPDATE_LOGIN — standard Oracle WHO audit columns.
- ATTRIBUTE_CATEGORY and ATTRIBUTE1 through ATTRIBUTE15 — the DFF/descriptive flexfield segment set, supporting customer-specific extensions without schema change.
A second unique index, FTE_SEL_GROUPS_U2, exists on GROUP_ID alone and serves as an alternate uniqueness guarantee on the surrogate key.
Common Use Cases and Queries
The most frequent operational need is answering which groups apply to a given customer, customer site, or shipping organization, and which rules those groups carry. Because assignment is externalized, reporting joins must pass through FTE_SEL_GROUP_ASSIGNMENTS.
- Listing groups for a parent object:
SELECT group_id, name, description FROM fte_sel_groups WHERE object_id = :object_id AND (end_date IS NULL OR end_date > SYSDATE); - Resolving assigned groups for an entity: join FTE_SEL_GROUPS to FTE_SEL_GROUP_ASSIGNMENTS on GROUP_ID, filtering by the entity identifier.
- Auditing rule coverage: join FTE_SEL_RULES to FTE_SEL_GROUPS on GROUP_ID to determine whether any group lacks rules, or which rules resolve for a downstream shipment.
- Extracting flexfield data: query ATTRIBUTE_CATEGORY and ATTRIBUTE1–15 where custom rule-context attributes are stored.
- Effectivity reporting: filter on START_DATE and END_DATE to reconcile historical versus current group membership.
Status-oriented reporting should also inspect GROUP_STATUS_FLAG and ASSIGNED_FLAG, since an active group that has never been assigned will not influence transportation selection outcomes.
Related Objects
FTE_SEL_GROUPS is central to the selection-rule data model and is referenced by four child tables and one parent table:
- FTE_SEL_OBJECTS — parent object definition; FTE_SEL_GROUPS.OBJECT_ID references it.
- FTE_SEL_GROUP_ASSIGNMENTS — maps groups to entities; joined on GROUP_ID.
- FTE_SEL_GROUP_ATTRIBUTES — stores group-level attribute assignments; joined on GROUP_ID.
- FTE_SEL_RULES — holds the actual selection rules consolidated by the group; joined on GROUP_ID.
Because FTE_SEL_RULES.GROUP_ID is the pivot between rule definitions and entity assignment, FTE_SEL_GROUPS should be treated as the junction through which Transportation Execution resolves which rules apply to which customer or organization. Any customization, extract, or diagnostic query touching selection behavior will typically start from this table.
-
Table: FTE_SEL_GROUPS
12.1.1
owner:FTE, object_type:TABLE, fnd_design_data:FTE.FTE_SEL_GROUPS, object_name:FTE_SEL_GROUPS, status:VALID, product: FTE - Transportation Execution , description: This table is used define groups which are used to consolidate rules to an entity such as a customer, customer site , shipping organization or shipping enterprise. The assignation of groups to entities is done via the FTE_SEL_GROUP_ASSIGNME , implementation_dba_data: FTE.FTE_SEL_GROUPS ,
-
Table: FTE_SEL_GROUPS
12.2.2
owner:FTE, object_type:TABLE, fnd_design_data:FTE.FTE_SEL_GROUPS, object_name:FTE_SEL_GROUPS, status:VALID, product: FTE - Transportation Execution , description: This table is used define groups which are used to consolidate rules to an entity such as a customer, customer site , shipping organization or shipping enterprise. The assignation of groups to entities is done via the FTE_SEL_GROUP_ASSIGNME , implementation_dba_data: FTE.FTE_SEL_GROUPS ,
-
VIEW: FTE.FTE_SEL_GROUPS#
12.2.2
owner:FTE, object_type:VIEW, object_name:FTE_SEL_GROUPS#, status:VALID,
-
VIEW: APPS.FTE_SEL_GROUPS_DFV
12.2.2
-
SYNONYM: APPS.FTE_SEL_GROUPS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:FTE_SEL_GROUPS, status:VALID,
-
APPS.FTE_SEL_GROUPS_PKG SQL Statements
12.2.2
-
VIEW: APPS.FTE_SEL_GROUPS_DFV
12.1.1
-
APPS.FTE_ACS_RULE_UTIL_PKG SQL Statements
12.2.2
-
SYNONYM: APPS.FTE_SEL_GROUPS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:FTE_SEL_GROUPS, status:VALID,
-
APPS.FTE_SEL_GROUPS_PKG SQL Statements
12.1.1
-
APPS.FTE_ACS_RULE_UTIL_PKG SQL Statements
12.1.1
-
VIEW: APPS.MST_PLAN_PARAMETERS_V
12.1.1
-
VIEW: FTE.FTE_SEL_GROUPS#
12.2.2
-
Table: FTE_SEL_GROUP_ATTRIBUTES
12.1.1
owner:FTE, object_type:TABLE, fnd_design_data:FTE.FTE_SEL_GROUP_ATTRIBUTES, object_name:FTE_SEL_GROUP_ATTRIBUTES, status:VALID, product: FTE - Transportation Execution , description: This table provides the method of associating individual attributes defined in FTE_SEL_ATTRIBUTES for a specific object to a group also assigned to the object. Attributes and groups must be associated with the same object in order to be abl , implementation_dba_data: FTE.FTE_SEL_GROUP_ATTRIBUTES ,
-
VIEW: APPS.FTE_SEL_GROUPS_DFV
12.2.2
owner:APPS, object_type:VIEW, object_name:FTE_SEL_GROUPS_DFV, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
PACKAGE BODY: APPS.FTE_ACS_CACHE_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:FTE_ACS_CACHE_PKG, status:VALID,
-
Table: FTE_SEL_RULES
12.1.1
owner:FTE, object_type:TABLE, fnd_design_data:FTE.FTE_SEL_RULES, object_name:FTE_SEL_RULES, status:VALID, product: FTE - Transportation Execution , description: this table holds header level rule information, such as rule id and name. The attributes (or restrictions) that make up the rule are defined in the FTE_SEL_RULE_RESTRICTIONS table. , implementation_dba_data: FTE.FTE_SEL_RULES ,
-
Table: FTE_SEL_GROUP_ASSIGNMENTS
12.1.1
owner:FTE, object_type:TABLE, fnd_design_data:FTE.FTE_SEL_GROUP_ASSIGNMENTS, object_name:FTE_SEL_GROUP_ASSIGNMENTS, status:VALID, product: FTE - Transportation Execution , description: this table provides the method to assign entities such as customer, customer site, shipping organization, etc... to a group or groups. The shipping enterprise group is not assigned in this table as the shipping enterprise is not defined as , implementation_dba_data: FTE.FTE_SEL_GROUP_ASSIGNMENTS ,
-
Table: FTE_SEL_OBJECTS
12.1.1
owner:FTE, object_type:TABLE, fnd_design_data:FTE.FTE_SEL_OBJECTS, object_name:FTE_SEL_OBJECTS, status:VALID, product: FTE - Transportation Execution , description: This table holds object definitions that may use the selection tables and for retrieval of certain information, e.g. defining an object such as 'carrier_selection' allows a rule-based data system for the specific purpose of selection of ca , implementation_dba_data: FTE.FTE_SEL_OBJECTS ,
-
Table: FTE_SEL_GROUP_ASSIGNMENTS
12.2.2
owner:FTE, object_type:TABLE, fnd_design_data:FTE.FTE_SEL_GROUP_ASSIGNMENTS, object_name:FTE_SEL_GROUP_ASSIGNMENTS, status:VALID, product: FTE - Transportation Execution , description: this table provides the method to assign entities such as customer, customer site, shipping organization, etc... to a group or groups. The shipping enterprise group is not assigned in this table as the shipping enterprise is not defined as , implementation_dba_data: FTE.FTE_SEL_GROUP_ASSIGNMENTS ,
-
PACKAGE BODY: APPS.FTE_SEL_GROUPS_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:FTE_SEL_GROUPS_PKG, status:VALID,
-
VIEW: APPS.FTE_SEL_GROUPS_DFV
12.1.1
owner:APPS, object_type:VIEW, object_name:FTE_SEL_GROUPS_DFV, status:VALID,
-
TABLE: FTE.FTE_SEL_GROUPS
12.1.1
owner:FTE, object_type:TABLE, fnd_design_data:FTE.FTE_SEL_GROUPS, object_name:FTE_SEL_GROUPS, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
PACKAGE BODY: APPS.FTE_SEL_GROUPS_PKG
12.1.1
-
Table: FTE_SEL_RULES
12.2.2
owner:FTE, object_type:TABLE, fnd_design_data:FTE.FTE_SEL_RULES, object_name:FTE_SEL_RULES, status:VALID, product: FTE - Transportation Execution , description: this table holds header level rule information, such as rule id and name. The attributes (or restrictions) that make up the rule are defined in the FTE_SEL_RULE_RESTRICTIONS table. , implementation_dba_data: FTE.FTE_SEL_RULES ,
-
Table: FTE_SEL_GROUP_ATTRIBUTES
12.2.2
owner:FTE, object_type:TABLE, fnd_design_data:FTE.FTE_SEL_GROUP_ATTRIBUTES, object_name:FTE_SEL_GROUP_ATTRIBUTES, status:VALID, product: FTE - Transportation Execution , description: This table provides the method of associating individual attributes defined in FTE_SEL_ATTRIBUTES for a specific object to a group also assigned to the object. Attributes and groups must be associated with the same object in order to be abl , implementation_dba_data: FTE.FTE_SEL_GROUP_ATTRIBUTES ,
-
TABLE: FTE.FTE_SEL_GROUPS
12.2.2
owner:FTE, object_type:TABLE, fnd_design_data:FTE.FTE_SEL_GROUPS, object_name:FTE_SEL_GROUPS, status:VALID,
-
Table: FTE_SEL_OBJECTS
12.2.2
owner:FTE, object_type:TABLE, fnd_design_data:FTE.FTE_SEL_OBJECTS, object_name:FTE_SEL_OBJECTS, status:VALID, product: FTE - Transportation Execution , description: This table holds object definitions that may use the selection tables and for retrieval of certain information, e.g. defining an object such as 'carrier_selection' allows a rule-based data system for the specific purpose of selection of ca , implementation_dba_data: FTE.FTE_SEL_OBJECTS ,
-
12.1.1 DBA Data
12.1.1
-
PACKAGE BODY: APPS.FTE_ACS_CACHE_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:FTE_ACS_CACHE_PKG, status:VALID,
-
PACKAGE BODY: APPS.FTE_ACS_RULE_UTIL_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:FTE_ACS_RULE_UTIL_PKG, status:VALID,
-
PACKAGE BODY: APPS.FTE_ACS_RULE_UTIL_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:FTE_ACS_RULE_UTIL_PKG, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
PACKAGE BODY: APPS.FTE_SEL_GROUPS_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:FTE_SEL_GROUPS_PKG, status:VALID,
-
12.2.2 FND Design Data
12.2.2
-
PACKAGE BODY: APPS.FTE_SEL_GROUPS_PKG
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
APPS.FTE_ACS_CACHE_PKG SQL Statements
12.2.2
-
APPS.FTE_ACS_CACHE_PKG SQL Statements
12.1.1
-
TABLE: FTE.FTE_SEL_GROUP_ASSIGNMENTS
12.1.1
owner:FTE, object_type:TABLE, fnd_design_data:FTE.FTE_SEL_GROUP_ASSIGNMENTS, object_name:FTE_SEL_GROUP_ASSIGNMENTS, status:VALID,
-
TABLE: FTE.FTE_SEL_GROUP_ASSIGNMENTS
12.2.2
owner:FTE, object_type:TABLE, fnd_design_data:FTE.FTE_SEL_GROUP_ASSIGNMENTS, object_name:FTE_SEL_GROUP_ASSIGNMENTS, status:VALID,
-
eTRM - FTE Tables and Views
12.2.2
description: This table records many-to-many association between transportation trips and trip segments. ,
-
eTRM - FTE Tables and Views
12.1.1
description: This table records many-to-many association between transportation trips and trip segments. ,
-
VIEW: APPS.MST_PLAN_PARAMETERS_V
12.1.1
owner:APPS, object_type:VIEW, object_name:MST_PLAN_PARAMETERS_V, status:VALID,