Search Results dun_set




Overview

APPS.AR_CUSTOMER_PROFILES_V is a reporting and integration view in the Oracle E-Business Suite Receivables (AR) module. It presents customer profile information by denormalizing the underlying customer profile records stored in the Oracle Trading Community Architecture (TCA) tables and enriching them with descriptive names resolved from Receivables reference entities. The view combines customer profile attributes, such as credit checking, dunning, statements, interest charges, and collections assignments, with human-readable lookup meanings and related entity names to provide a comprehensive, query-friendly representation of customer profile configuration.

The view resides in the APPS schema and is available in both EBS 12.1.1 and 12.2.2. It is commonly consumed by reports, concurrent programs, and integrations that require customer profile settings without having to join multiple TCA and AR tables directly. Because it exposes translated or resolved values such as lookup meanings, collector names, dunning letter set names, statement cycle names, and terms names, it is particularly useful in reporting contexts where code values alone would be insufficient.

Underlying Base Objects

The view is defined over the customer profile entity and a set of synonymous references to related master and reference entities. The primary driving object is HZ_CUSTOMER_PROFILES (referenced through a synonym), which supplies the core profile columns such as CUST_ACCOUNT_PROFILE_ID, CUST_ACCOUNT_ID, SITE_USE_ID, PROFILE_CLASS_ID, STATUS, and the various profile flags and identifiers. The profile class description is resolved from HZ_CUST_PROFILE_CLASSES, while HZ_CUST_SITE_USES and HZ_PARTIES provide supporting context for site use and party associations.

Several reference lookups and master entities are joined to enrich the profile. AR_COLLECTORS supplies the collector name, AR_DUNNING_LETTER_SETS supplies the dunning letter set name, AR_STATEMENT_CYCLES supplies the statement cycle name, RA_TERMS supplies the standard terms name, and AR_AUTOCASH_HIERARCHIES supplies the AutoCash hierarchy name. RA_GROUPING_RULES is also referenced. The package ARPT_SQL_FUNC_UTIL is invoked to translate coded values into lookup meanings for attributes such as CREDIT_RATING, RISK_CODE, ACCOUNT_STATUS, and TAX_PRINTING_OPTION. All underlying tables are accessed through synonyms owned by APPS.

Key Columns

Common Use Cases and Queries

The view is typically used to report on customer profile configuration, validate collections and dunning setup, and drive integrations that require resolved profile attributes. A frequent scenario involves retrieving the dunning letter set assigned to customer profiles, which the user searching for "dun_set" is likely pursuing.

To list profiles alongside their dunning letter set names:

  • SELECT CUSTOMER_ID, CUSTOMER_PROFILE_ID, DUNNING_LETTERS, DUNNING_LETTER_SET_ID, DUNNING_LETTER_SET_NAME FROM APPS.AR_CUSTOMER_PROFILES_V;

To filter by a specific dunning letter set or collector:

  • SELECT CUSTOMER_ID, COLLECTOR_NAME, DUNNING_LETTER_SET_NAME FROM APPS.AR_CUSTOMER_PROFILES_V WHERE DUNNING_LETTER_SET_NAME IS NOT NULL;

To report credit and statements configuration with resolved meanings:

  • SELECT CUSTOMER_ID, CREDIT_RATING_MEANING, RISK_MEANING, ACCOUNT_STATUS_MEANING, STATEMENT_CYCLE_NAME FROM APPS.AR_CUSTOMER_PROFILES_V WHERE CREDIT_HOLD = 'Y';

Because the view joins several master entities, queries should include selective predicates on CUSTOMER_ID, SITE_USE_ID, or profile class to limit result sets and improve performance in high-volume environments.