Search Results access_template_entity_code




Overview

ICX_RA_CUSTOMERS_V is a reporting view in Oracle E-Business Suite (EBS) 12.1.1 and 12.2.2 that belongs to the ICX (Oracle iProcurement) product family. As its description ("Customer View") indicates, it provides a denormalized, read-only presentation of customer master records drawn from the Receivables customer model. The view is defined as a projection of the RA_CUSTOMERS table, exposing the full set of customer attributes — identifiers, classification codes, tax settings, sales and financial profiling columns, descriptive flexfields, and audit columns — through a single named object.

The view serves a bridging role between the Receivables (AR) customer data model and iProcurement's need to present and validate customer information. In this sense, ICX_RA_CUSTOMERS_V is best understood as an integration and reporting convenience layer rather than a distinct data store. It does not hold data of its own; every row and column is sourced directly from the underlying Receivables tables. The ETRM record notes that the view is "Not implemented in this database," which is a common ETRM annotation indicating that the object is defined in the release but not necessarily created in every environment.

Underlying Base Objects

According to the documented view text, ICX_RA_CUSTOMERS_V is defined over a single base table: RA_CUSTOMERS. The view text is a straightforward SELECT that enumerates individual columns from RA_CUSTOMERS without joins, filters, or aggregation, so the view is essentially a column-limited mirror of the base table. No additional referenced base objects are documented in the ETRM metadata, and the "Referenced base objects" field lists none.

Because RA_CUSTOMERS is the Receivables customer master and, in R12, is tightly coupled with the trading community model (HZ_PARTIES and related HZ tables), the attributes surfaced here originate in the customer record and cascade from the party model. However, the view itself does not expose those HZ joins — it presents only the RA_CUSTOMERS columns. Practically, this means the view offers a stable, AR-centric slice of customer data suitable for consumers that do not need the full trading community graph.

Key Columns

Common Use Cases and Queries

Because ICX_RA_CUSTOMERS_V mirrors RA_CUSTOMERS, it is most useful where a consumer needs customer attributes without depending directly on the base table name. Typical scenarios include iProcurement customer lookups, third-party customer segregation, and cross-module reporting. To retrieve third-party customers, for example:

  • SELECT customer_id, customer_name, customer_number, third_party_flag FROM icx_ra_customers_v WHERE third_party_flag = 'Y';
  • SELECT customer_id, customer_name, customer_class_code FROM icx_ra_customers_v WHERE status = 'A' AND customer_type = 'R';
  • SELECT customer_id, attribute1, attribute2 FROM icx_ra_customers_v WHERE attribute_category = 'MY_CATEGORY';

Analysts should note that the view is not implemented in every database and that, where it is absent, queries can be rewritten against RA_CUSTOMERS directly. As with all customer reporting, joining to site-use and party tables may be required for address and contact detail not exposed here.