Search Results parent_tpartner




Overview

The view EDW_TPRT_P4_TPARTNER_LTC_IV is a reporting and integration object within the Oracle E-Business Suite (EBS) environment, assigned to the BIS (Applications BIS) product family. Its name indicates a role within the Enterprise Data Warehouse / Trading Partner reporting layer, where the _IV suffix conventionally denotes an "interface view" — a database object intended to expose trading partner master data in a denormalised, read-only form for downstream consumption by reporting, ETL, and integration processes.

In the context of EBS 12.1.1 and 12.2.2, this view presents supplier/trading partner attributes (payment terms, tax registration, vendor classification, diversity indicators, and receipt controls) as a flat record set. The object is relevant to searches such as "BTB & MERCURY CORPORATION" because it exposes partner NAME and ALTERNATE_NAME columns that can be filtered to resolve specific trading partner entities. Per the documented ETRM metadata, the view is not implemented in this database, meaning the definition exists in the data model reference but the physical object is absent from the current instance. This is significant: any query referencing the view will raise ORA-00942 (table or view does not exist) unless the object is created.

Underlying Base Objects

The documented base object is EDW_TPRT_P4_TPARTNER_LTC. The view does not itself persist data; it is a pass-through projection over this single source, exposing the same column set in a defined order and appending a synthetic literal column. No other referenced base objects are documented in the ETRM metadata, and the owner attribute is blank — a common characteristic of EDW staging views that are deployed under a specific schema (typically an APPS or EDW reporting schema) after the source table is materialised.

The view text selects a fixed list of columns from the base table and appends the expression ' ' OPERATION_CODE, a single-space literal. In data warehouse interface views this construct is typically a placeholder to satisfy a fixed target column contract, allowing the view to conform to a canonical column layout expected by an extract program or downstream interface table, even though no meaningful operation code is sourced at this layer.

Key Columns

The view exposes thirty-four columns. The most functionally significant include:

Common Use Cases and Queries

Typical use cases are supplier master extracts, diversity-spend reporting, tax registration reconciliation, and trading partner name lookup. A representative query resolving a specific entity would take the form:

  • SELECT TPARTNER_PK, NAME, ALTERNATE_NAME, VENDOR_NUMBER, PAYMENT_TERMS, TAX_REG_NUM FROM EDW_TPRT_P4_TPARTNER_LTC_IV WHERE UPPER(NAME) LIKE '%BTB%MERCURY%' OR UPPER(ALTERNATE_NAME) LIKE '%BTB%MERCURY%';
  • SELECT VENDOR_TYPE, SMALL_BUSINESS, WOMEN_OWNED, MINORITY_GROUP, COUNT(*) FROM EDW_TPRT_P4_TPARTNER_LTC_IV GROUP BY VENDOR_TYPE, SMALL_BUSINESS, WOMEN_OWNED, MINORITY_GROUP;
  • SELECT TPARTNER_PK, NAME, START_ACTIVE_DATE, END_ACTIVE_DATE, HOLD_FLAG FROM EDW_TPRT_P4_TPARTNER_LTC_IV WHERE HOLD_FLAG = 'Y';

Because the view is documented as not implemented, these queries require the object to be created first, and any dependent extraction job should be validated against the base table EDW_TPRT_P4_TPARTNER_LTC to confirm availability before the interface view is relied upon in production reporting.