Search Results fte_failure_reasons
Overview
FTE_FAILURE_REASONS is a Transportation Execution (FTE) module table in Oracle E-Busness Suite Release 12.1.1 and 12.2.2, owned by the FTE schema and documented with VALID status in the ETRM repository. Its stated purpose is to store failure reasons associated with FPA (Freight Payment and Audit) processing. When freight invoices, bills of lading, or related transportation documents fail automated validation, matching, or audit rules, the system records the failure detail in this table so that exceptions can be reviewed, categorized, and resolved by transportation or payables personnel.
The object is physically documented in the 12.2.2 schema with 11 columns and a primary key constraint named FTE_FAILUER_REASONS_PK (the spelling reflects the delivered constraint name) built on INVOICE_REJECT_ID. A unique index, FTE_FAILURE_REASONS_U1, also exists on INVOICE_REJECT_ID, making that column both the surrogate primary key and the single documented business-key candidate. The ETRM metadata additionally exposes a self-referencing foreign key on PARENT_ID, indicating a hierarchical structure in which failure reason rows may be nested beneath a parent row. Where the metadata provides a heuristic Data Vault classification, this table is best modeled as a link, since it exists to associate invoice lines with their failure conditions rather than functioning as a standalone reference hub or a pure descriptive satellite.
Key Information Stored
The table centers on the identity and description of each recorded failure:
- INVOICE_REJECT_ID — the surrogate primary key and sole documented unique business-key candidate; uniquely identifies each failure reason record.
- PARENT_ID — self-referencing foreign key that supports hierarchical grouping of failure reasons and also participates in the relationship to FTE_INVOICE_LINES.
- PARENT_NAME — descriptive label for the parent grouping, useful for reporting without a recursive join.
- BOL — the bill of lading reference associated with the failing transaction, linking the exception to the physical shipment.
- FAILURE_TYPE — the category or classification of the failure, supporting grouping and trend analysis.
- FAILURE_REASON — the textual explanation of why the invoice or document failed validation.
- CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN — standard EBS audit columns recording row creation and modification.
Common Use Cases and Queries
Typical scenarios include freight payment exception reporting, root-cause analysis of recurring invoice rejections, and reconciliation dashboards for transportation audit teams. A basic lookup of failures for a given invoice line pattern follows:
SELECT INVOICE_REJECT_ID, BOL, FAILURE_TYPE, FAILURE_REASON FROM FTE.FTE_FAILURE_REASONS WHERE CREATION_DATE >= :start_date;SELECT FAILURE_TYPE, COUNT(*) FROM FTE.FTE_FAILURE_REASONS GROUP BY FAILURE_TYPE ORDER BY 2 DESC;SELECT r.INVOICE_REJECT_ID, r.FAILURE_REASON, p.PARENT_NAME FROM FTE.FTE_FAILURE_REASONS r, FTE.FTE_FAILURE_REASONS p WHERE r.PARENT_ID = p.INVOICE_REJECT_ID;
Because no invoice number column is documented, joins to FTE_INVOICE_LINES are required to attribute a failure to a specific line and supplier invoice.
Related Objects
The primary relationships documented in the ETRM metadata are:
- FTE_INVOICE_LINES — referenced via FTE_FAILURE_REASONS.PARENT_ID; the principal link between failure reasons and freight invoice lines.
- FTE_FAILURE_REASONS (self-reference) — PARENT_ID points back to the table's own INVOICE_REJECT_ID, enabling hierarchical failure explanation.
- The FTE_INVOICE_HEADERS family and the FPA (Freight Payment and Audit) concurrent programs consume this table when generating exception reports and rejection summaries.
DBA activities should account for the FTE_FAILURE_REASONS_PK and FTE_FAILURE_REASONS_U1 indexes when planning maintenance or gathering statistics.
-
Table: FTE_FAILURE_REASONS
12.1.1
owner:FTE, object_type:TABLE, fnd_design_data:FTE.FTE_FAILURE_REASONS, object_name:FTE_FAILURE_REASONS, status:VALID, product: FTE - Transportation Execution , description: This table is used to store failure reasons for FPA , implementation_dba_data: FTE.FTE_FAILURE_REASONS ,
-
Table: FTE_FAILURE_REASONS
12.2.2
owner:FTE, object_type:TABLE, fnd_design_data:FTE.FTE_FAILURE_REASONS, object_name:FTE_FAILURE_REASONS, status:VALID, product: FTE - Transportation Execution , description: This table is used to store failure reasons for FPA , implementation_dba_data: FTE.FTE_FAILURE_REASONS ,
-
VIEW: FTE.FTE_FAILURE_REASONS#
12.2.2
owner:FTE, object_type:VIEW, object_name:FTE_FAILURE_REASONS#, status:VALID,
-
SYNONYM: APPS.FTE_FAILURE_REASONS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:FTE_FAILURE_REASONS, status:VALID,
-
SYNONYM: APPS.FTE_FAILURE_REASONS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:FTE_FAILURE_REASONS, status:VALID,
-
VIEW: FTE.FTE_FAILURE_REASONS#
12.2.2
-
TABLE: FTE.FTE_FAILURE_REASONS
12.1.1
owner:FTE, object_type:TABLE, fnd_design_data:FTE.FTE_FAILURE_REASONS, object_name:FTE_FAILURE_REASONS, status:VALID,
-
TABLE: FTE.FTE_FAILURE_REASONS
12.2.2
owner:FTE, object_type:TABLE, fnd_design_data:FTE.FTE_FAILURE_REASONS, object_name:FTE_FAILURE_REASONS, status:VALID,
-
Table: FTE_INVOICE_LINES
12.1.1
owner:FTE, object_type:TABLE, fnd_design_data:FTE.FTE_INVOICE_LINES, object_name:FTE_INVOICE_LINES, status:VALID, product: FTE - Transportation Execution , description: Table to store invoice line information , implementation_dba_data: FTE.FTE_INVOICE_LINES ,
-
Table: FTE_INVOICE_LINES
12.2.2
owner:FTE, object_type:TABLE, fnd_design_data:FTE.FTE_INVOICE_LINES, object_name:FTE_INVOICE_LINES, status:VALID, product: FTE - Transportation Execution , description: Table to store invoice line information , implementation_dba_data: FTE.FTE_INVOICE_LINES ,
-
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.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 FND Design Data
12.2.2
-
PACKAGE BODY: APPS.WSH_PURGE
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:WSH_PURGE, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
PACKAGE BODY: APPS.WSH_PURGE
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:WSH_PURGE, status:VALID,
-
PACKAGE BODY: APPS.FTE_FPA_UTIL
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:FTE_FPA_UTIL, status:VALID,
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
PACKAGE BODY: APPS.FTE_FPA_UTIL
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:FTE_FPA_UTIL, status:VALID,
-
APPS.WSH_PURGE SQL Statements
12.1.1
-
APPS.WSH_PURGE SQL Statements
12.2.2
-
APPS.WSH_PURGE dependencies on FTE_FAILURE_REASONS
12.2.2
-
APPS.WSH_PURGE dependencies on FTE_FAILURE_REASONS
12.1.1
-
APPS.FTE_FPA_UTIL dependencies on FTE_FAILURE_REASONS
12.2.2
-
APPS.FTE_FPA_UTIL dependencies on FTE_FAILURE_REASONS
12.1.1
-
Foreign Keys
12.2.2
-
APPS.FTE_FPA_UTIL SQL Statements
12.1.1
-
APPS.FTE_FPA_UTIL SQL Statements
12.2.2
-
Foreign Keys
12.1.1
-
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. ,
-
PACKAGE: APPS.WSH_PURGE
12.2.2
-
PACKAGE: APPS.WSH_PURGE
12.1.1
-
APPS.WSH_PURGE dependencies on FTE_INVOICE_HISTORY
12.2.2
-
APPS.WSH_PURGE dependencies on FTE_INVOICE_LINES
12.2.2
-
APPS.WSH_PURGE dependencies on FTE_INVOICE_LINES
12.1.1
-
APPS.WSH_PURGE dependencies on FTE_INVOICE_HISTORY
12.1.1
-
APPS.WSH_PURGE dependencies on WSH_DELIVERY_LEG_DETAILS
12.2.2
-
APPS.WSH_PURGE dependencies on WSH_DELIVERY_LEG_DETAILS
12.1.1
-
APPS.WSH_PURGE dependencies on FTE_INVOICE_HEADERS
12.2.2
-
APPS.WSH_PURGE dependencies on WSH_DELIVERY_LEGS
12.2.2
-
APPS.WSH_PURGE dependencies on FTE_INVOICE_HEADERS
12.1.1
-
APPS.WSH_PURGE dependencies on WSH_DELIVERY_LEGS
12.1.1
-
PACKAGE BODY: APPS.WSH_PURGE
12.2.2
-
PACKAGE BODY: APPS.WSH_PURGE
12.1.1