Results for “okl_txl_itm_insts_v”

50+ results




AI-generated from documented ETRM metadata — verify critical details on the linked pages.

Overview

The view APPS.OKL_TXL_ITM_INSTS_V is a reporting and integration layer within the Oracle E-Business Suite Release 12.1.1 and 12.2.2 Lease and Finance Management (OKL) product. It presents contract line level transaction records that capture the Install Base (IB) location attributes of leased assets, which must be communicated to the Install Base module prior to contract activation. In practical terms, the view exposes the staging data that links a leased asset to its physical and organizational location context—such as inventory organization, serial number, and instance identifiers—so that the Install Base module can correctly register or update the corresponding instance. Because its defining query is a simple projection over OKL_TXL_ITM_INSTS, the view adds no filtering or transformation logic; its primary value is naming clarity, security-context containment within the APPS schema, and a stable column contract for downstream reports, concurrent programs, and interface routines. Users searching for tal_type will find that the view carries TAL_TYPE as a first-class column, making it a convenient source when distinguishing transaction types across contract lines.

Underlying Base Objects

The view is defined exclusively over the base object OKL_TXL_ITM_INSTS, referenced in the ETRM 12.2.2 metadata as a synonym owned within the APPS layer. The view text aliases this source as ITIB and performs a one-to-one SELECT of its columns without joins, unions, or aggregation. Consequently, row cardinality and integrity constraints (primary key ID, OBJECT_VERSION_NUMBER for optimistic locking) are inherited directly from the base table. Any DML performed through the base table is immediately visible through the view, and no INSTEAD-OF triggers or materialization are documented. Because it is registered as VALID, the projection is consistent with the base table definition at the documented release levels.

Key Columns

Common Use Cases and Queries

Typical usage includes pre-activation validation reports, Install Base interface extracts, and reconciliation of asset location changes. A common query filters by transaction type to isolate the lines that will be pushed to Install Base:

SELECT id,
       tal_id,
       line_number,
       tal_type,
       instance_number_ib,
       serial_number,
       inventory_org_id,
       instance_id
  FROM apps.okl_txl_itm_insts_v
 WHERE tal_type = :p_tal_type
   AND nvl(selected_for_split_flag,'N') = 'N';

A second pattern joins the view to the contract header to report outstanding activation work, and a third compares the _NEW and _OLD object identifiers to detect relocations prior to interface submission. Because the view is a thin projection, all predicates on TAL_TYPE, TAL_ID, and INSTANCE_ID are passed efficiently to the base table, and no distinct or set-operation overhead is incurred.