Search Results lane_id_tbl




Overview

APPS.FTE_LANE_PKG is a PL/SQL package body belonging to the Oracle E-Business Suite Transportation Management (FTE) module. Its business purpose is to manage the definition, maintenance, and retrieval of lanes — the reusable routing records that specify a carrier, an origin, a destination, a mode of transportation, transit times, and special handling instructions for moving goods between two locations. In the Oracle EBS 12.1.1 and 12.2.2 code lines the package acts as the low-level data access and DML layer behind the Lane and Schedule setup windows, providing the primary key generators, validation routines, and insert/update/delete logic required to persist lane, lane commodity, lane service, schedule, and price parameter data.

The source header identifies the package as FTE_LANE_PKG with a version of 120.5 and a "noship" designation, indicating it is an internal, non-shipped object distributed as part of the FTE schema rather than exposed as a public API. Its classification in the ETRM metadata is OTHER, and it is referenced by six other packages, so it functions as a shared internal utility rather than a standalone entry point.

Key Procedures and Functions

The package exposes eighteen documented procedures and functions, grouped functionally as follows.

Tables Accessed

The package reads and writes the principal FTE lane tables, together with their _S shadow tables used by the FTE engine for denormalized or synchronized copies.

Usage Notes

Because the package is internally classified and not shipped as a public API, it is normally invoked indirectly. The Lane and Schedule setup forms in Oracle Transportation Management call these procedures to validate, insert, update, and delete lane data, and concurrent or batch programs may call them when loading lanes in bulk. The collection type LANE_ID_TBL, the object the user searched for, is an INDEX BY BINARY_INTEGER PL/SQL associative array defined over FTE_LANES.LANE_ID%TYPE; it is one of a family of parallel array types (LANE_NUMBER_TBL, CARRIER_ID_TBL, ORIGIN_ID_TBL, DESTINATION_ID_TBL, and others) used to pass bulk lane attribute sets into and out of the package's procedures. Customizations should treat FTE_LANE_PKG as an internal object subject to change between releases; direct calls are unsupported, and any reliance on LANE_ID_TBL or the other collection types should be confined to tightly controlled extensions that are re-tested at each EBS upgrade.