Search Results ar_customers_active_v
Overview
The AR_CUSTOMERS_ACTIVE_V view is a legacy Oracle Receivables (AR) database object owned by the APPS schema. According to the ETRM metadata, this view is documented specifically for Oracle E-Business Suite Release 11.5, and it exposes customer information in a flat, denormalized format suitable for reporting, integration, and backward compatibility with earlier releases of the application.
In the Oracle EBS 12.1.1 and 12.2.2 data models, customer master data resides in the Oracle Trading Community Architecture (TCA) tables, primarily HZ_CUST_ACCOUNTS and HZ_PARTIES. The AR_CUSTOMERS_ACTIVE_V view merges columns from both of these underlying entities — the customer account record and its corresponding party record — into a single row per customer. This design allows legacy code, reports, and interfaces that were built against the earlier AR_CUSTOMERS model to continue functioning without modification.
Because it represents a customer-oriented, presentation-layer abstraction, the view is most frequently encountered in custom reports and migration scripts that predate the full adoption of TCA-based APIs.
Underlying Base Objects
The ETRM metadata for Release 12.2.2 identifies two referenced base objects, each resolved through APPS synonyms:
HZ_CUST_ACCOUNTS(SYNONYM) — supplies account-level attributes such asCUST_ACCOUNT_ID,ACCOUNT_NUMBER,STATUS,CUSTOMER_CLASS_CODE,CUSTOMER_TYPE, and various order-management attributes.HZ_PARTIES(SYNONYM) — supplies party-level attributes such asPARTY_NAME,CUSTOMER_KEY,CATEGORY_CODE,TAX_REFERENCE, and organization-specific fields.
The view joins these two entities on the relationship between the customer account and its owning party. In the underlying view text, the DECODE on PARTY.PARTY_TYPE demonstrates that several columns are populated only when the party is an ORGANIZATION; for person-type parties these columns return NULL. This structure reflects the TCA model, in which a customer account is linked to exactly one party record.
Key Columns
The view exposes a broad set of columns. Notable ones include:
CUSTOMER_ID— alias forCUST_ACCOUNT_ID, the primary identifier of the customer account.CUSTOMER_NAME— the party name, truncated to 50 bytes viaSUBSTRB.CUSTOMER_NUMBER— the account number fromHZ_CUST_ACCOUNTS.CUSTOMER_KEY— the TCA customer key fromHZ_PARTIES.STATUS— the account status (for example, active or inactive).CUSTOMER_PROSPECT_CODE— a literal'CUSTOMER', distinguishing these rows from prospect records.CUSTOMER_CLASS_CODE,CUSTOMER_TYPE,CUSTOMER_CATEGORY_CODE— classification attributes.TAX_REFERENCE,TAXPAYER_ID,TAX_CODE— tax-related identifiers.- Organization-only fields such as
SIC_CODE,NUM_OF_EMPLOYEES,POTENTIAL_REVENUE_CURR_FY, andYEAR_ESTABLISHED, which are populated only for organization parties.
Common Use Cases and Queries
This view is typically used for reporting on active customers, validating customer data during data conversions, and supporting legacy integrations. Despite its 11.5 designation, it remains queryable in 12.1.1 and 12.2.2 schemas where the underlying TCA tables exist.
A representative query to list active customers with their account numbers is:
SELECT customer_id, customer_name, customer_number, status FROM ar_customers_active_v WHERE status = 'A';
A second example, retrieving customer classification for a given account, illustrates filtering on exposed columns:
SELECT customer_name, customer_class_code, customer_type FROM ar_customers_active_v WHERE customer_number = :acct_num;
Because the view is defined over TCA base tables, results reflect the current state of customer records maintained through standard Receivables and TCA functionality. Organizations operating on 12.1.1 or 12.2.2 should note that Oracle directs new development toward TCA APIs and the HZ_CUST_ACCOUNTS_V family, treating AR_CUSTOMERS_ACTIVE_V as a compatibility object rather than a strategic interface.
-
View: AR_CUSTOMERS_ACTIVE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_CUSTOMERS_ACTIVE_V, object_name:AR_CUSTOMERS_ACTIVE_V, status:VALID, product: AR - Receivables , description: (Release 11.5 Only) , implementation_dba_data: APPS.AR_CUSTOMERS_ACTIVE_V ,
-
View: AR_CUSTOMERS_ACTIVE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_CUSTOMERS_ACTIVE_V, object_name:AR_CUSTOMERS_ACTIVE_V, status:VALID, product: AR - Receivables , description: (Release 11.5 Only) , implementation_dba_data: APPS.AR_CUSTOMERS_ACTIVE_V ,
-
VIEW: APPS.RCV_OPSM_CUSTOMERADDRESS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_OPSM_CUSTOMERADDRESS_V, object_name:RCV_OPSM_CUSTOMERADDRESS_V, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
VIEW: APPS.RCV_OPSM_CUSTOMERADDRESS_V
12.2.2
-
VIEW: APPS.AR_CUSTOMERS_ACTIVE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_CUSTOMERS_ACTIVE_V, object_name:AR_CUSTOMERS_ACTIVE_V, status:VALID,
-
VIEW: APPS.WSH_OPSM_ASN_DELIVERIES_V
12.2.2
-
VIEW: APPS.AR_CUSTOMERS_ACTIVE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_CUSTOMERS_ACTIVE_V, object_name:AR_CUSTOMERS_ACTIVE_V, status:VALID,
-
View: RCV_OPSM_CUSTOMERADDRESS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_OPSM_CUSTOMERADDRESS_V, object_name:RCV_OPSM_CUSTOMERADDRESS_V, status:VALID, product: PO - Purchasing , implementation_dba_data: APPS.RCV_OPSM_CUSTOMERADDRESS_V ,
-
VIEW: APPS.WSH_OPSM_ASN_DELIVERIES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_OPSM_ASN_DELIVERIES_V, object_name:WSH_OPSM_ASN_DELIVERIES_V, status:VALID,
-
View: WSH_OPSM_ASN_DELIVERIES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_OPSM_ASN_DELIVERIES_V, object_name:WSH_OPSM_ASN_DELIVERIES_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_OPSM_ASN_DELIVERIES_V ,
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
SYNONYM: APPS.HZ_CUST_ACCOUNTS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:HZ_CUST_ACCOUNTS, status:VALID,
-
SYNONYM: APPS.HZ_CUST_ACCOUNTS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:HZ_CUST_ACCOUNTS, status:VALID,
-
SYNONYM: APPS.HZ_PARTIES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:HZ_PARTIES, status:VALID,
-
SYNONYM: APPS.HZ_PARTIES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:HZ_PARTIES, status:VALID,
-
eTRM - WSH Tables and Views
12.2.2
description: Stores hierarchy for zones. Each region component of a zone has a record in this table. ,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
eTRM - PO Tables and Views
12.2.2
description: Temporary table for tracking a receiving upgrade from Release 9 to Release 10 ,
-
eTRM - AR Tables and Views
12.2.2
description: Territory information ,
-
eTRM - AR Tables and Views
12.1.1
description: Territory information ,
-
eTRM - WSH Tables and Views
12.2.2
description: Stores hierarchy for zones. Each region component of a zone has a record in this table. ,
-
eTRM - PO Tables and Views
12.2.2
description: Temporary table for tracking a receiving upgrade from Release 9 to Release 10 ,
-
eTRM - AR Tables and Views
12.1.1
description: Territory information ,
-
eTRM - AR Tables and Views
12.2.2
description: Territory information ,