Search Results fte_trip_moves_interface
Overview
FTE_TRIP_MOVES_INTERFACE is an integration staging table in the Oracle E-Business Suite Transportation Execution module (FTE). It records the association between trip-level and move-level interface records as inbound transportation data is processed into the EBS data model. In releases 12.1.1 and 12.2.2 the table is owned by the FTE schema and carries a status of VALID, with a documented physical schema of 33 columns.
The table acts as a transient repository during the transformation of external trip and move data into their permanent counterparts. Each row links interface records derived from WSH_TRIPS_INTERFACE and FTE_MOVES_INTERFACE to the previously resolved WSH_TRIPS and FTE_MOVES records. It also references the FTE_TRIP_MOVES relationship table, which holds the persistent trip-to-move association once processing completes. The heuristic Data Vault classification mined from the foreign key structure is standalone. In practical terms, this suggests the table is best modeled as an independent interface or staging entity rather than as a strict hub, link, or satellite, reflecting its role as a transient landing structure rather than a durable business entity.
Key Information Stored
Among the 33 documented columns, the following are of principal importance:
- TRIP_MOVE_INTERFACE_ID — the surrogate primary key, enforced by the unique index FTE_TRIP_MOVES_INTERFACE_PK, which is the sole documented business-key candidate.
- TRIP_MOVE_ID — foreign key to FTE_TRIP_MOVES, identifying the persistent trip-to-move association after resolution.
- TRIP_INTERFACE_ID — foreign key to WSH_TRIPS_INTERFACE, pointing to the inbound trip interface row.
- MOVE_INTERFACE_ID — foreign key to FTE_MOVES_INTERFACE, pointing to the inbound move interface row.
- TRIP_ID — foreign key to WSH_TRIPS, the resolved trip record.
- MOVE_ID — foreign key to FTE_MOVES, the resolved move record.
- SEQUENCE_NUMBER — ordering of moves within the trip during interface processing.
- INTERFACE_ACTION_CODE — indicates the action to be performed (such as insert, update, or delete) for the interface row.
- REQUEST_ID — identifies the concurrent program request that created the row.
- PROGRAM_APPLICATION_ID, PROGRAM_ID, and PROGRAM_UPDATE_DATE — standard concurrent program audit context.
- CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY, and LAST_UPDATE_LOGIN — Who columns capturing row-level audit information.
- ATTRIBUTE_CATEGORY and ATTRIBUTE1 through ATTRIBUTE15 — the standard flexfield descriptor columns available for extensible data capture.
The surrogate primary key is a system-generated identifier, distinct from any natural business key; the documented metadata lists no additional unique index beyond FTE_TRIP_MOVES_INTERFACE_PK.
Common Use Cases and Queries
This table is principally queried during transportation interface troubleshooting — for example, reconciling pending trip and move interface rows, verifying that sequence assignments were preserved, or diagnosing processing failures in the concurrent request chain. A representative join resolves interface rows to their permanent counterparts:
SELECT tm.TRIP_MOVE_INTERFACE_ID, tm.SEQUENCE_NUMBER, tm.INTERFACE_ACTION_CODE,
t.TRIP_NAME, m.MOVE_ID, tm.REQUEST_ID
FROM FTE.FTE_TRIP_MOVES_INTERFACE tm, WSH.WSH_TRIPS t, FTE.FTE_MOVES m
WHERE tm.TRIP_ID = t.TRIP_ID
AND tm.MOVE_ID = m.MOVE_ID
AND tm.REQUEST_ID = :request_id;
Reporting use cases include auditing interface volume per concurrent request, monitoring unresolved rows where TRIP_ID or MOVE_ID remain null, and confirming ordering fidelity for multi-stop trips. Because records are transitional, queries should be scoped by REQUEST_ID or creation date rather than treated as a historical archive.
Related Objects
- FTE_TRIP_MOVES — the persistent trip-to-move association, referenced via TRIP_MOVE_ID.
- FTE_MOVES_INTERFACE — inbound move interface rows, referenced via MOVE_INTERFACE_ID.
- WSH_TRIPS_INTERFACE — inbound trip interface rows, referenced via TRIP_INTERFACE_ID.
- FTE_MOVES — the resolved move records, referenced via MOVE_ID.
- WSH_TRIPS — the resolved trip records, referenced via TRIP_ID.
- FTE_TRIP_MOVES_INTERFACE_PK — the primary key index enforcing uniqueness on TRIP_MOVE_INTERFACE_ID.
-
Table: FTE_TRIP_MOVES_INTERFACE
12.1.1
owner:FTE, object_type:TABLE, fnd_design_data:FTE.FTE_TRIP_MOVES_INTERFACE, object_name:FTE_TRIP_MOVES_INTERFACE, status:VALID, product: FTE - Transportation Execution , implementation_dba_data: FTE.FTE_TRIP_MOVES_INTERFACE ,
-
Table: FTE_TRIP_MOVES_INTERFACE
12.2.2
owner:FTE, object_type:TABLE, fnd_design_data:FTE.FTE_TRIP_MOVES_INTERFACE, object_name:FTE_TRIP_MOVES_INTERFACE, status:VALID, product: FTE - Transportation Execution , implementation_dba_data: FTE.FTE_TRIP_MOVES_INTERFACE ,
-
VIEW: FTE.FTE_TRIP_MOVES_INTERFACE#
12.2.2
owner:FTE, object_type:VIEW, object_name:FTE_TRIP_MOVES_INTERFACE#, status:VALID,
-
SYNONYM: APPS.FTE_TRIP_MOVES_INTERFACE
12.2.2
owner:APPS, object_type:SYNONYM, object_name:FTE_TRIP_MOVES_INTERFACE, status:VALID,
-
SYNONYM: APPS.FTE_TRIP_MOVES_INTERFACE
12.1.1
owner:APPS, object_type:SYNONYM, object_name:FTE_TRIP_MOVES_INTERFACE, status:VALID,
-
APPS.FTE_TP_GRP SQL Statements
12.1.1
-
APPS.FTE_TP_GRP SQL Statements
12.2.2
-
VIEW: FTE.FTE_TRIP_MOVES_INTERFACE#
12.2.2
-
TABLE: FTE.FTE_TRIP_MOVES_INTERFACE
12.1.1
owner:FTE, object_type:TABLE, fnd_design_data:FTE.FTE_TRIP_MOVES_INTERFACE, object_name:FTE_TRIP_MOVES_INTERFACE, status:VALID,
-
TABLE: FTE.FTE_TRIP_MOVES_INTERFACE
12.2.2
owner:FTE, object_type:TABLE, fnd_design_data:FTE.FTE_TRIP_MOVES_INTERFACE, object_name:FTE_TRIP_MOVES_INTERFACE, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.1.1 FND Design Data
12.1.1
-
PACKAGE BODY: APPS.FTE_TP_GRP
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:FTE_TP_GRP, status:VALID,
-
PACKAGE BODY: APPS.FTE_TP_GRP
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:FTE_TP_GRP, status:VALID,
-
PACKAGE BODY: APPS.MST_RELEASE
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:MST_RELEASE, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
PACKAGE BODY: APPS.FTE_TP_GRP
12.2.2
-
PACKAGE BODY: APPS.FTE_TP_GRP
12.1.1
-
PACKAGE: APPS.FTE_TP_GRP
12.1.1
-
PACKAGE: APPS.FTE_TP_GRP
12.2.2
-
PACKAGE: APPS.WSH_FTE_TP_INTEGRATION
12.1.1
-
PACKAGE: APPS.WSH_FTE_TP_INTEGRATION
12.2.2
-
APPS.FTE_TP_GRP dependencies on FTE_TRIP_MOVES_INTERFACE
12.2.2
-
APPS.FTE_TP_GRP dependencies on FTE_TRIP_MOVES_INTERFACE
12.1.1
-
APPS.MST_RELEASE dependencies on FTE_TRIP_MOVES_INTERFACE
12.1.1
-
eTRM - FTE Tables and Views
12.1.1
description: This table records many-to-many association between transportation trips and trip segments. ,
-
eTRM - FTE Tables and Views
12.2.2
description: This table records many-to-many association between transportation trips and trip segments. ,
-
PACKAGE BODY: APPS.WSH_FTE_TP_INTEGRATION
12.2.2
-
PACKAGE BODY: APPS.WSH_FTE_TP_INTEGRATION
12.1.1
-
APPS.FTE_TP_GRP dependencies on FTE_TRIP_MOVES
12.2.2
-
APPS.FTE_TP_GRP dependencies on FTE_TRIP_MOVES
12.1.1
-
APPS.MST_RELEASE SQL Statements
12.1.1
-
APPS.FTE_TP_GRP dependencies on WSH_TRIPS_INTERFACE
12.1.1
-
APPS.FTE_TP_GRP dependencies on WSH_TRIPS_INTERFACE
12.2.2
-
APPS.FTE_TP_GRP dependencies on FTE_MOVES_INTERFACE
12.1.1
-
APPS.WSH_FTE_TP_INTEGRATION dependencies on WSH_TP_RELEASE_GRP
12.2.2
-
APPS.FTE_TP_GRP dependencies on FTE_MOVES_INTERFACE
12.2.2
-
APPS.WSH_FTE_TP_INTEGRATION dependencies on WSH_TP_RELEASE_GRP
12.1.1
-
APPS.WSH_FTE_TP_INTEGRATION dependencies on WSH_TP_RELEASE_GRP
12.1.1
-
APPS.FTE_TP_GRP dependencies on WSH_TP_RELEASE_GRP
12.1.1
-
APPS.FTE_TP_GRP dependencies on WSH_TP_RELEASE_GRP
12.2.2
-
APPS.WSH_FTE_TP_INTEGRATION dependencies on WSH_TP_RELEASE_GRP
12.2.2
-
APPS.FTE_TP_GRP dependencies on WSH_TP_RELEASE_GRP
12.1.1