Search Results ra_hcustomers
Overview
RA_HCUSTOMERS is a Receivables (AR) dictionary view that exposes customer information by joining the Receivables customer account layer (HZ_CUST_ACCOUNTS, aliased CUST_ACCT) to the Trading Community Architecture party layer (HZ_PARTIES, aliased PARTY). The name retains the legacy "RA_" prefix from the original Receivables customer model, and the view acts as a flattened, denormalized projection that presents party attributes and customer account attributes side by side in a single row per customer account. Its described purpose in the ETRM documentation is simply "Customer information."
The view played a significant role in Oracle EBS Releases 11i and early 12.x as a compatibility and reporting layer over the older RA_CUSTOMERS structure, allowing forms, reports, and third-party integrations written against the legacy customer schema to continue functioning after the introduction of the HZ_ (Trading Community) data model. In 12.1.1 and 12.2.2, Receivables and other modules generally favor the HZ_CUST_ACCOUNTS and HZ_PARTIES base tables directly, but RA_HCUSTOMERS remains available for query and for legacy report definitions.
Underlying Base Objects
The ETRM metadata lists no explicitly documented referenced base objects, and implementation status is recorded as "Not implemented in this database" for the tracked instance. The view text, however, is unambiguous about its sources: it selects from HZ_CUST_ACCOUNTS (CUST_ACCT) joined to HZ_PARTIES (PARTY), with the join driven by the party_id relationship between the two. The CUST_ACCT.ROWID is carried through as the first column, characteristic of a view intended to support Oracle Forms-based updates or row identification against the customer account entity.
Several columns are synthesized rather than directly stored. A literal 'CUSTOMER' string is projected in place of a former customer-type indicator, and multiple NULL placeholders are retained for attributes that were retired with the migration away from RA_CUSTOMERS, including CUSTOMER_GROUP_CODE, CUSTOMER_SUBGROUP_CODE, and NET_WORTH. Organization-specific party attributes are conditionally surfaced through DECODE on PARTY_TYPE, returning values only when the party is an ORGANIZATION and NULL for persons.
Key Columns
- CUST_ACCOUNT_ID / PARTY_ID / PARTY_NUMBER — primary identifiers for the customer account and the underlying party, used for joins to transaction and site-level tables.
- CUSTOMER_NAME — derived via SUBSTRB(PARTY.PARTY_NAME, 1, 50), truncating the party name to 50 bytes.
- ACCOUNT_NUMBER (aliased CUSTOMER NUMBER) / ORIG_SYSTEM_REFERENCE — the customer account number and its source-system reference for cross-system reconciliation.
- STATUS / CUSTOMER_TYPE / CUSTOMER_CLASS_CODE — account status, customer type, and classification code.
- PARTY_TYPE — distinguishes ORGANIZATION from PERSON, and governs which conditional attributes are populated.
- CUSTOMER_KEY / TAX_CODE / TAX_REFERENCE — customer key plus tax identifiers used in tax determination and reporting.
- Fiscal and demographic attributes — ANALYSIS_FY, FISCAL_YEAREND_MONTH, EMPLOYEES_TOTAL, CURR_FY_POTENTIAL_REVENUE, NEXT_FY_POTENTIAL_REVENUE, and SIC_CODE, returned only for organizations.
- ATTRIBUTE1–ATTRIBUTE15 and the WHO columns — descriptive flexfield context and values, plus the standard CREATED_BY/LAST_UPDATED_BY audit and concurrency columns.
Common Use Cases and Queries
Typical uses include legacy customer master reports, reconciliation between RA_ and HZ_ based customer data, and integrations that must present a single flat customer row. A simple listing of active organizations illustrates the conditional column behavior:
SELECT customer_number, customer_name, party_number, status, tax_code FROM ra_hcustomers WHERE party_type = 'ORGANIZATION' AND status = 'A';SELECT cust_account_id, party_id, customer_name, last_update_date FROM ra_hcustomers WHERE last_update_date >= SYSDATE - 1;SELECT customer_number, employees_total, curr_fy_potential_revenue FROM ra_hcustomers WHERE party_type = 'ORGANIZATION';
For new development on 12.1.1 or 12.2.2, querying HZ_CUST_ACCOUNTS joined to HZ_PARTIES is the recommended approach; RA_HCUSTOMERS should be treated as a supported compatibility view rather than the primary integration point.
-
View: RA_HCUSTOMERS
12.1.1
product: AR - Receivables , description: Customer information , implementation_dba_data: Not implemented in this database ,
-
View: RA_HCUSTOMERS
12.2.2
product: AR - Receivables , description: Customer information , implementation_dba_data: Not implemented in this database ,
-
View: IGI_RPI_STANDING_CHARGES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGI.IGI_RPI_STANDING_CHARGES_V, object_name:IGI_RPI_STANDING_CHARGES_V, status:VALID, product: IGI - Public Sector Financials International , description: View for the standing charges forms based on IGI_RPI_STANDING_CHARGES view , implementation_dba_data: APPS.IGI_RPI_STANDING_CHARGES_V ,
-
View: IGI_STP_SITE_BAL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IGI.IGI_STP_SITE_BAL, object_name:IGI_STP_SITE_BAL, status:VALID, product: IGI - Public Sector Financials International , description: View which displays the active Sites for a Single Third Party. , implementation_dba_data: APPS.IGI_STP_SITE_BAL ,
-
View: IGI_RPI_STANDING_CHARGES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IGI.IGI_RPI_STANDING_CHARGES_V, object_name:IGI_RPI_STANDING_CHARGES_V, status:VALID, product: IGI - Public Sector Financials International , description: View for the standing charges forms based on IGI_RPI_STANDING_CHARGES view , implementation_dba_data: APPS.IGI_RPI_STANDING_CHARGES_V ,
-
View: IGI_STP_SITE_BAL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGI.IGI_STP_SITE_BAL, object_name:IGI_STP_SITE_BAL, status:VALID, product: IGI - Public Sector Financials International , description: View which displays the active Sites for a Single Third Party. , implementation_dba_data: APPS.IGI_STP_SITE_BAL ,
-
View: IGI_EXP_AR_INV_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGI.IGI_EXP_AR_INV_V, object_name:IGI_EXP_AR_INV_V, status:VALID, product: IGI - Public Sector Financials International , description: Displays all unposted receivable transactions awaiting exchange protocol approval. , implementation_dba_data: APPS.IGI_EXP_AR_INV_V ,
-
View: IGI_AR_CUSTOMERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGI.IGI_AR_CUSTOMERS_V, object_name:IGI_AR_CUSTOMERS_V, status:VALID, product: IGI - Public Sector Financials International , description: This view displays single third party customers information , implementation_dba_data: APPS.IGI_AR_CUSTOMERS_V ,
-
View: IGI_AR_CUSTOMERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IGI.IGI_AR_CUSTOMERS_V, object_name:IGI_AR_CUSTOMERS_V, status:VALID, product: IGI - Public Sector Financials International , description: This view displays single third party customers information , implementation_dba_data: APPS.IGI_AR_CUSTOMERS_V ,
-
View: IGI_EXP_EPTU_DIAL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGI.IGI_EXP_EPTU_DIAL_V, object_name:IGI_EXP_EPTU_DIAL_V, status:VALID, product: IGI - Public Sector Financials International , description: Displays all information pertaining to exchange protocol dialog units contained in transmission units , implementation_dba_data: APPS.IGI_EXP_EPTU_DIAL_V ,
-
View: IGI_EXP_AR_INV_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IGI.IGI_EXP_AR_INV_V, object_name:IGI_EXP_AR_INV_V, status:VALID, product: IGI - Public Sector Financials International , description: Displays all unposted receivable transactions awaiting exchange protocol approval. , implementation_dba_data: APPS.IGI_EXP_AR_INV_V ,
-
View: IGI_EXP_DIAL_UNIT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGI.IGI_EXP_DIAL_UNIT_V, object_name:IGI_EXP_DIAL_UNIT_V, status:VALID, product: IGI - Public Sector Financials International , description: Displays all information pertaining to dialog unit setup , implementation_dba_data: APPS.IGI_EXP_DIAL_UNIT_V ,
-
View: IGI_DUN_CUSTOMER_PROFILE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGI.IGI_DUN_CUSTOMER_PROFILE_V, object_name:IGI_DUN_CUSTOMER_PROFILE_V, status:VALID, product: IGI - Public Sector Financials International , description: Holds information about Dunning customer profiles , implementation_dba_data: APPS.IGI_DUN_CUSTOMER_PROFILE_V ,
-
View: IGI_EXP_EPTU_DIAL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IGI.IGI_EXP_EPTU_DIAL_V, object_name:IGI_EXP_EPTU_DIAL_V, status:VALID, product: IGI - Public Sector Financials International , description: Displays all information pertaining to exchange protocol dialog units contained in transmission units , implementation_dba_data: APPS.IGI_EXP_EPTU_DIAL_V ,
-
View: IGI_DUN_CUSTOMER_PROFILE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IGI.IGI_DUN_CUSTOMER_PROFILE_V, object_name:IGI_DUN_CUSTOMER_PROFILE_V, status:VALID, product: IGI - Public Sector Financials International , description: Holds information about Dunning customer profiles , implementation_dba_data: APPS.IGI_DUN_CUSTOMER_PROFILE_V ,
-
View: IGI_EXP_DIAL_UNIT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IGI.IGI_EXP_DIAL_UNIT_V, object_name:IGI_EXP_DIAL_UNIT_V, status:VALID, product: IGI - Public Sector Financials International , description: Displays all information pertaining to dialog unit setup , implementation_dba_data: APPS.IGI_EXP_DIAL_UNIT_V ,
-
View: IGI_EXP_DIAL_UNIT_DEF_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IGI.IGI_EXP_DIAL_UNIT_DEF_V, object_name:IGI_EXP_DIAL_UNIT_DEF_V, status:VALID, product: IGI - Public Sector Financials International , description: Displays all information pertaining to dialog unit setup. , implementation_dba_data: APPS.IGI_EXP_DIAL_UNIT_DEF_V ,
-
View: IGI_EXP_DIAL_UNIT_DEF_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGI.IGI_EXP_DIAL_UNIT_DEF_V, object_name:IGI_EXP_DIAL_UNIT_DEF_V, status:VALID, product: IGI - Public Sector Financials International , description: Displays all information pertaining to dialog unit setup. , implementation_dba_data: APPS.IGI_EXP_DIAL_UNIT_DEF_V ,
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
PACKAGE BODY: SYSTEM.AD_APPS_PRIVATE
12.1.1
-
SYSTEM.AD_APPS_PRIVATE dependencies on STANDARD
12.2.2
-
SYSTEM.AD_APPS_PRIVATE dependencies on STANDARD
12.1.1
-
PACKAGE BODY: SYSTEM.AD_APPS_PRIVATE
12.2.2