Search Results ar_customer_profiles_v
Overview
The AR_CUSTOMER_PROFILES_V view is an APPS-owned database object in the Oracle E-Business Suite Receivables (AR) module. It exposes customer profile information used by Receivables for credit management, collections, dunning, statements, and payment terms defaulting. The view is documented in the ETRM repository with a status of VALID. Its original documentation notes that the object was defined for Release 11.5; however, the object remains referenced in the 12.2.2 metadata, where its owning schema and dependency footprint continue to be tracked.
Functionally, the view presents one row per customer account profile (and, where applicable, one row per site use), consolidating profile class attributes, credit checking parameters, collector assignment, dunning and statement configuration, and administrative columns into a single queryable structure. Its name is a legacy artifact: the view text selects from Receivables profile storage but resolves to the trading community (HZ) customer model in later releases, making it a compatibility surface for reporting and integration rather than a purely transactional entity.
Underlying Base Objects
The 12.2.2 metadata documents the following referenced base objects, all reached through APPS synonyms:
HZ_CUSTOMER_PROFILES— primary source of profile attributes; supplies profile class, credit checking, tolerance, credit hold, credit rating, risk code, dunning, interest, statement, and account status values.HZ_CUST_PROFILE_CLASSES— provides the profile class name and description.HZ_CUST_SITE_USES— provides the site use context referenced bySITE_USE_ID.HZ_PARTIES— supplies party-level information for the customer.AR_COLLECTORS— supplies the collector name for the assigned collector.AR_DUNNING_LETTER_SETS— supplies the dunning letter set name.AR_STATEMENT_CYCLES— supplies the statement cycle name.AR_AUTOCASH_HIERARCHIES— supplies the automatic cash application hierarchy name.RA_TERMS— supplies the standard payment terms name.RA_GROUPING_RULES— grouping rule reference for the profile.ARPT_SQL_FUNC_UTIL— a package used in the view text to translate lookup codes into their meanings viaGET_LOOKUP_MEANING.
Key Columns
The view exposes identifiers (CUSTOMER_PROFILE_ID, CUSTOMER_ID, SITE_USE_ID), the owning profile class (CUSTOMER_PROFILE_CLASS_ID, PROFILE_CLASS_NAME), status, and audit columns (LAST_UPDATED_BY, CREATED_BY, LAST_UPDATE_DATE, OBJECT_VERSION). Credit-related columns include CREDIT_CHECKING, TOLERANCE, CREDIT_HOLD, CREDIT_RATING with its translated CREDIT_RATING_MEANING, and RISK_CODE with its translated RISK_MEANING. Collections columns include COLLECTOR_ID and COLLECTOR_NAME. Terms and dunning are represented by STANDARD_TERMS/STANDARD_TERMS_NAME, OVERRIDE_TERMS, and DUNNING_LETTER_SET_ID/DUNNING_LETTER_SET_NAME. Statement behavior is captured by SEND_STATEMENTS, CREDIT_BALANCE_STATEMENTS, and STATEMENT_CYCLE_ID/STATEMENT_CYCLE_NAME. ACCOUNT_STATUS and ACCOUNT_STATUS_MEANING reflect the profile's account status.
Common Use Cases and Queries
Reports and integrations commonly query this view to report credit exposure, review risk classification, and confirm collections or statement settings. Because the user searched for risk_code, the following query returns profile-level risk and credit data with decoded meanings:
SELECT customer_id,
customer_profile_id,
site_use_id,
profile_class_name,
risk_code,
risk_meaning,
credit_rating_meaning,
credit_hold,
account_status_meaning,
collector_name,
standard_terms_name
FROM apps.ar_customer_profiles_v
WHERE risk_code = :p_risk_code;
Additional scenarios include joining to customer and party tables to build credit review extracts, filtering by COLLECTOR_ID for collections workload reports, and auditing profiles where CREDIT_HOLD is enabled. Query authors should confirm column availability in their target release, since the object's documentation originates in Release 11.5 and it remains a compatibility view within the 12.x data model.
-
View: AR_CUSTOMER_PROFILES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_CUSTOMER_PROFILES_V, object_name:AR_CUSTOMER_PROFILES_V, status:VALID, product: AR - Receivables , description: (Release 11.5 Only) , implementation_dba_data: APPS.AR_CUSTOMER_PROFILES_V ,
-
View: AR_CUSTOMER_PROFILES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_CUSTOMER_PROFILES_V, object_name:AR_CUSTOMER_PROFILES_V, status:VALID, product: AR - Receivables , description: (Release 11.5 Only) , implementation_dba_data: APPS.AR_CUSTOMER_PROFILES_V ,
-
SYNONYM: APPS.AR_DUNNING_LETTER_SETS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:AR_DUNNING_LETTER_SETS, status:VALID,
-
PACKAGE BODY: APPS.ARH_CPC_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:ARH_CPC_PKG, status:VALID,
-
PACKAGE BODY: APPS.ARH_CPC_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:ARH_CPC_PKG, status:VALID,
-
SYNONYM: APPS.AR_AUTOCASH_HIERARCHIES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:AR_AUTOCASH_HIERARCHIES, status:VALID,
-
SYNONYM: APPS.AR_AUTOCASH_HIERARCHIES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:AR_AUTOCASH_HIERARCHIES, status:VALID,
-
SYNONYM: APPS.RA_GROUPING_RULES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:RA_GROUPING_RULES, status:VALID,
-
SYNONYM: APPS.AR_STATEMENT_CYCLES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:AR_STATEMENT_CYCLES, status:VALID,
-
SYNONYM: APPS.AR_STATEMENT_CYCLES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:AR_STATEMENT_CYCLES, status:VALID,
-
SYNONYM: APPS.RA_GROUPING_RULES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:RA_GROUPING_RULES, status:VALID,
-
SYNONYM: APPS.AR_DUNNING_LETTER_SETS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:AR_DUNNING_LETTER_SETS, status:VALID,
-
SYNONYM: APPS.HZ_CUST_PROFILE_CLASSES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:HZ_CUST_PROFILE_CLASSES, status:VALID,
-
SYNONYM: APPS.AR_COLLECTORS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:AR_COLLECTORS, status:VALID,
-
SYNONYM: APPS.AR_COLLECTORS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:AR_COLLECTORS, status:VALID,
-
SYNONYM: APPS.HZ_CUST_PROFILE_CLASSES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:HZ_CUST_PROFILE_CLASSES, status:VALID,
-
PACKAGE: APPS.ARPT_SQL_FUNC_UTIL
12.1.1
owner:APPS, object_type:PACKAGE, object_name:ARPT_SQL_FUNC_UTIL, status:VALID,
-
PACKAGE: APPS.ARPT_SQL_FUNC_UTIL
12.2.2
owner:APPS, object_type:PACKAGE, object_name:ARPT_SQL_FUNC_UTIL, status:VALID,
-
SYNONYM: APPS.RA_TERMS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:RA_TERMS, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
SYNONYM: APPS.RA_TERMS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:RA_TERMS, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
SYNONYM: APPS.HZ_CUSTOMER_PROFILES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:HZ_CUSTOMER_PROFILES, status:VALID,
-
VIEW: APPS.AR_CUSTOMER_PROFILES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_CUSTOMER_PROFILES_V, object_name:AR_CUSTOMER_PROFILES_V, status:VALID,
-
VIEW: APPS.AR_CUSTOMER_PROFILES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_CUSTOMER_PROFILES_V, object_name:AR_CUSTOMER_PROFILES_V, status:VALID,
-
SYNONYM: APPS.HZ_CUSTOMER_PROFILES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:HZ_CUSTOMER_PROFILES, status:VALID,
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
SYNONYM: APPS.HZ_CUST_SITE_USES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:HZ_CUST_SITE_USES, status:VALID,
-
SYNONYM: APPS.HZ_CUST_SITE_USES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:HZ_CUST_SITE_USES, status:VALID,
-
APPS.ARH_CPC_PKG dependencies on AR_CUSTOMER_PROFILES_V
12.2.2
-
APPS.ARH_CPC_PKG dependencies on AR_CUSTOMER_PROFILES_V
12.1.1
-
APPS.ARH_CPC_PKG SQL Statements
12.2.2
-
APPS.ARH_CPC_PKG SQL Statements
12.1.1
-
SYNONYM: APPS.HZ_PARTIES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:HZ_PARTIES, status:VALID,
-
PACKAGE BODY: APPS.ARH_CPC_PKG
12.2.2
-
PACKAGE BODY: APPS.ARH_CPC_PKG
12.1.1
-
SYNONYM: APPS.HZ_PARTIES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:HZ_PARTIES, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
eTRM - AR Tables and Views
12.2.2
description: Territory information ,
-
eTRM - AR Tables and Views
12.1.1
description: Territory information ,
-
eTRM - AR Tables and Views
12.1.1
description: Territory information ,
-
eTRM - AR Tables and Views
12.2.2
description: Territory information ,