Search Results ece_xref_data




Overview

ECE_XREF_DATA is the code-conversion repository for the Oracle e-Commerce Gateway (EC) product. It stores cross-reference mappings that translate Oracle internal values into external (trading-partner or flat-file) values, and conversely translate inbound external values back into Oracle internal values. Because e-Commerce Gateway interfaces exchange data with third-party systems, translating codes such as units of measure, currency codes, and status codes is essential to successful message processing. Each row represents one mapping entry within a named cross-reference category.

The table resides in the EC schema and is documented as VALID. In the ETRM 12.2.2 physical schema it exposes 25 columns. Heuristically, the mined foreign-key structure classifies this object as satellite-leaning in a Data Vault model: it hangs off a parent dimension (ECE_XREF_CATEGORIES) via a foreign key and carries descriptive, attribute-style payload (the external/internal value pairs), rather than acting as a pure hub or a many-to-many link. This classification should be treated as a modeling suggestion; the operative role within EBS is a transactional lookup and conversion table.

Key Information Stored

The table's primary key and its principal business columns are as follows:

Common Use Cases and Queries

The most common requirement is to resolve an Oracle internal value to a partner-specific external value during outbound interface generation, or to reverse the lookup on inbound files. A typical query filters by category and directional context:

  • Resolve internal to external: select XREF_EXT_VALUE1 from ECE_XREF_DATA where XREF_CATEGORY_ID = :category and XREF_INT_VALUE = :internal and DIRECTION is compatible.
  • List all mappings for a category: join to ECE_XREF_CATEGORIES on XREF_CATEGORY_ID and order by XREF_INT_VALUE.
  • Audit changes: query rows by LAST_UPDATE_DATE or LAST_UPDATED_BY to identify recent maintenance.
  • Multi-partner resolution: use XREF_KEY1..XREF_KEY5 to determine which of XREF_EXT_VALUE1..5 applies to a given trading partner.
  • Reporting: build a cross-reference matrix report showing internal values against external values per category for implementation validation.

Related Objects

The dominant documented relationship is the foreign key from XREF_CATEGORY_ID to ECE_XREF_CATEGORIES, which supplies the category definition that qualifies every mapping row. Because e-Commerce Gateway conversion logic is invoked across outbound and inbound interfaces, dependent objects include the gateway transaction tables and the concurrent programs that populate and maintain cross-reference data. When querying or extending this table, always join to ECE_XREF_CATEGORIES to resolve the category context and constrain results to the intended conversion domain.

  • Table: ECE_XREF_DATA 12.1.1

    owner:EC,  object_type:TABLE,  fnd_design_data:EC.ECE_XREF_DATA,  object_name:ECE_XREF_DATA,  status:VALID,  product: EC - e-Commerce Gatewaydescription: Contains the information for code conversions which identify external values for a given Oracle internal value and vice versa. ,  implementation_dba_data: EC.ECE_XREF_DATA

  • Table: ECE_XREF_DATA 12.2.2

    owner:EC,  object_type:TABLE,  fnd_design_data:EC.ECE_XREF_DATA,  object_name:ECE_XREF_DATA,  status:VALID,  product: EC - e-Commerce Gatewaydescription: Contains the information for code conversions which identify external values for a given Oracle internal value and vice versa. ,  implementation_dba_data: EC.ECE_XREF_DATA

  • Table: ECE_XREF_CATEGORIES 12.2.2

    owner:EC,  object_type:TABLE,  fnd_design_data:EC.ECE_XREF_CATEGORIES,  object_name:ECE_XREF_CATEGORIES,  status:VALID,  product: EC - e-Commerce Gatewaydescription: Contains the code conversion categories information. Rows contain category code, description, and up to five processing flags. ,  implementation_dba_data: EC.ECE_XREF_CATEGORIES

  • Table: ECE_XREF_CATEGORIES 12.1.1

    owner:EC,  object_type:TABLE,  fnd_design_data:EC.ECE_XREF_CATEGORIES,  object_name:ECE_XREF_CATEGORIES,  status:VALID,  product: EC - e-Commerce Gatewaydescription: Contains the code conversion categories information. Rows contain category code, description, and up to five processing flags. ,  implementation_dba_data: EC.ECE_XREF_CATEGORIES