Search Results fte_location_parameters_u2




Overview

FTE.FTE_LOCATION_PARAMETERS is a transactional configuration table within the Oracle E-Business Suite Transportation Management (FTE) schema. It stores facility definitions and the operational parameters that govern how each facility may participate in consolidation, deconsolidation, and cross-docking activity. In Oracle EBS 12.1.1 and 12.2.2, this table supplies the master facility attributes consumed by the Transportation Planning engine when evaluating shipment consolidation opportunities and cross-dock execution.

Under a heuristic Data Vault classification derived from foreign key structure, this object is satellite-leaning. It extends a facility business key with descriptive and operational attributes rather than acting as a pure hub or a link between multiple hubs, which is consistent with its role as an attribute-bearing satellite around the facility entity.

The table resides in the APPS_TS_TX_DATA tablespace with a PCT Free of 10. Its FND Design Data reference is FTE.FTE_LOCATION_PARAMETERS. In the documented 12.2.2 physical schema the table carries 92 columns.

Key Information Stored

The surrogate primary key is FACILITY_ID, enforced by the FTE_LOCATION_PARAMETERS_PK constraint. Two further unique indexes function as business-key candidates: FTE_LOCATION_PARAMETERS_U1 on FACILITY_ID and FTE_LOCATION_PARAMETERS_U2 on LOCATION_ID, while FTE_LOCATION_PARAMETERS_U3 uniquely constrains FACILITY_CODE. These three unique constraints make FACILITY_CODE and LOCATION_ID the practical business identifiers used by external references.

Common Use Cases and Queries

Planners and logistics analysts query this table to determine which facilities permit consolidation or cross-docking before committing a load plan. A typical lookup resolves a facility by business code:

  • SELECT facility_id, facility_code, description FROM fte.fte_location_parameters WHERE facility_code = :code;
  • SELECT facility_code, consolidation_allowed, crossdocking_allowed FROM fte.fte_location_parameters WHERE consolidation_allowed = 'Y' AND effective_date_to IS NULL;
  • Joining to WSH_LOCATIONS to obtain address and site detail for reporting.
  • Filtering by mode-specific flags to identify facilities capable of LTL-to-TL consolidation.
  • Reviewing effective-dated rows to audit parameter changes over time.

Related Objects

  • WSH_LOCATIONS — referenced via LOCATION_ID (FTE_LOCATION_PARAMETERS.LOCATION_ID → WSH_LOCATIONS.WSH_LOCATION_ID).
  • HZ_PARTIES — referenced via FACILITY_CONTACT_ID for the facility contact.
  • Transportation planning and consolidation engine logic in the FTE schema that consumes these Yes/No flags.
  • Cross-dock and load-building programs that validate facility permissions before execution.
  • Standard EBS flexfield and audit infrastructure that reads ATTRIBUTE1–15 and the WHO columns.