Search Results fte_invoice_lines_n3




Overview

FTE.FTE_INVOICE_LINES is a transactional table in the Oracle E-Business Suite transportation and freight payment (FTE/ETRM) schema. It stores the line-level detail of freight invoices, capturing rating, discount, surcharge, weight, volume, and approved-amount information for each charge appearing on an invoice header. The table occupies the APPS_TS_TX_DATA tablespace with PCTFREE 10, confirming its role as an active transactional data store rather than a reference or setup entity. In Oracle EBS 12.1.1 and 12.2.2 the table is registered under FND Design Data as FTE.FTE_INVOICE_LINES and carries VALID status in the ETRM dictionary.

The heuristic Data Vault classification mined from the foreign-key structure is hub-leaning. Under this modeling suggestion, INVOICE_LINE_ID functions as the hub business key at line grain, while the descriptive rating, discount, surcharge, and measurement attributes (RATE_AMOUNT, TOTAL_WEIGHT, DISCOUNT_AMOUNT, and similar) would behave as satellite attributes. The single foreign key to FTE_INVOICE_HEADERS supplies the associational link back to the invoice header hub.

Key Information Stored

The table contains 30 documented columns. The most significant are:

Common Use Cases and Queries

Typical reporting scenarios include reconciling approved freight charges to invoice headers, analyzing accessorial spend by INVOICE_LINE_TYPE, and tracing a payable line to its downstream accounting distribution. Because INVOICE_LINE_ID is the unique access path, most queries filter or join on it.

  • Retrieve all lines for a header: SELECT * FROM FTE.FTE_INVOICE_LINES WHERE INVOICE_HEADER_ID = :header_id;
  • Look up a single line by surrogate key: SELECT * FROM FTE.FTE_INVOICE_LINES WHERE INVOICE_LINE_ID = :line_id;
  • Aggregate approved spend by line type: SELECT INVOICE_LINE_TYPE, SUM(APPROVED_AMOUNT) FROM FTE.FTE_INVOICE_LINES GROUP BY INVOICE_LINE_TYPE;
  • Join to the header for header-level context: SELECT l.INVOICE_LINE_NUM, l.APPROVED_AMOUNT, h.* FROM FTE.FTE_INVOICE_LINES l, FTE.FTE_INVOICE_HEADERS h WHERE l.INVOICE_HEADER_ID = h.INVOICE_HEADER_ID;

Search terms such as "fte_invoice_lines_u1" indicate the user is targeting the unique index on INVOICE_LINE_ID, which is the correct access path for point lookups. Because the column is unique, queries using it return at most one row.

Related Objects

The table participates in a hub-and-spoke relationship pattern. FTE_INVOICE_HEADERS is the parent referenced via INVOICE_HEADER_ID. Numerous downstream objects reference INVOICE_LINE_ID and provide linkage into accounting, receivables, and lease subsystems:

The breadth of dependent objects demonstrates that FTE_INVOICE_LINES is the central transactional record through which freight charges are conveyed into Oracle Payables, Receivables, and Fixed Assets processes.