Search Results gmf_lc_adj_transactions




Overview

GMF_LC_ADJ_TRANSACTIONS is a Process Manufacturing Financials (GMF) table that stores Estimated and Actual Landed Cost adjustments. Each row represents a single landed cost adjustment created during the Landed Cost Adjustment import process, capturing both the prior (estimated) landed cost and the newly computed (actual) landed cost for a shipment line or cost component. The table is owned by the GMF schema and is classified as VALID in the ETRM repository for Oracle EBS 12.1.1 and 12.2.2.

From a Data Vault modeling perspective, the heuristic classification for this object is hub-leaning. Its structure—a single-column surrogate primary key (ADJ_TRANSACTION_ID) combined with multiple business identifiers (SHIP_HEADER_ID, SHIP_LINE_ID, ADJUSTMENT_NUM, RCV_TRANSACTION_ID) and a foreign key to FV_LEGAL_ENTITIES—suggests it functions as a central anchor for landed cost adjustment events, with dependent detail captured in downstream cost adjustment tables.

Key Information Stored

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

Common Use Cases and Queries

Typical uses include reconciling estimated versus actual landed cost, auditing adjustments by shipment or legal entity, and reporting unposted or posted adjustments.

  • Retrieve adjustments for a shipment line:
    SELECT ADJ_TRANSACTION_ID, ADJUSTMENT_NUM, PRIOR_LANDED_COST, NEW_LANDED_COST
    FROM   GMF.GMF_LC_ADJ_TRANSACTIONS
    WHERE  SHIP_HEADER_ID = :p_ship_header_id;
  • Identify adjustments awaiting posting:
    SELECT * FROM GMF.GMF_LC_ADJ_TRANSACTIONS
    WHERE  NVL(ACCOUNTED_FLAG,'N') = 'N';
  • Summarise adjustment variance by legal entity and item.
  • Trace adjustments back to receiving via RCV_TRANSACTION_ID for cost audit trails.

Related Objects