Search Results igi_dun_cust_profile_class_v
Overview
The view APPS.IGI_DUN_CUST_PROFILE_CLASS_V belongs to the IGI — Public Sector Financials International product family and exposes information about dunning customer profile classes. Dunning is the process of communicating with customers to collect overdue receivables, and the profile class definition controls whether letters are generated, which dunning letter set applies, and what charge type is levied. This view consolidates those attributes into a single reporting structure suitable for Oracle E-Business Suite 12.1.1 and 12.2.2 environments.
The view is particularly relevant to inquiries that reference profile_class_description. Rather than requiring a join between the Oracle Receivables profile class table and the IGI dunning extension table, the view surfaces the description directly as the column PROFILE_CLASS_DESCRIPTION, making it convenient for lookups, LOV definitions, concurrent report sources, and integration extracts. Because it is owned by APPS and defined as a standard view, it can be queried through any tool that has access to the APPS schema, including Oracle Reports, BI Publisher, OAF pages, and SQL*Plus.
Underlying Base Objects
The view text identifies four referenced objects:
- AR_HCUSTOMER_PROFILE_CLASSES (ARCP) — the Receivables customer profile class table, supplying
NAME(aliasPROFILE_CLASS_NAME),DESCRIPTION(aliasPROFILE_CLASS_DESCRIPTION),STATUS,DUNNING_LETTER_SET_ID, andDUNNING_LETTERS. - IGI_DUN_CUST_PROF_CLASS (IDCP) — the IGI dunning extension table, supplying dunning-specific attributes such as
USE_DUNNING_FLAGandDUNNING_CHARGE_TYPE, plusROWIDand audit columns. - AR_DUNNING_LETTER_SETS (ARDL) — provides the letter set name through a non-enforced outer join (
(+)). - IGI_LOOKUPS (IGIL) — provides the meaning of the dunning charge type lookup via
LOOKUP_TYPE = 'DUNNING_CHARGE_TYPE'.
The join keys are CUSTOMER_PROFILE_CLASS_ID between ARCP and IDCP, and DUNNING_LETTER_SET_ID between ARCP and ARDL. Filter predicates restrict results to profile classes where DUNNING_LETTERS = 'Y' and DUNNING_LETTER_SET_ID IS NOT NULL. Results are ordered by profile class name. Documented metadata also lists DUAL as a referenced synonym, a common artifact in ETRM catalog entries.
Key Columns
CUSTOMER_PROFILE_CLASS_ID— primary key of the underlying profile class; the join column to other AR tables.PROFILE_CLASS_NAME— the profile class name (ARCP.NAME).PROFILE_CLASS_DESCRIPTION— the descriptive text sought by searches on profile_class_description.STATUS— active/inactive status of the profile class.DUNNING_LETTER_SET_ID/DUNNING_LETTER_SET_NAME— the letter set used for dunning correspondence.USE_DUNNING_FLAG— indicates whether dunning is enabled for the class.DUNNING_CHARGE_TYPE/DUNNING_CHARGE_TYPE_DESC— the charge type code and its decoded meaning from IGI_LOOKUPS.DUNNING_LETTERS— flag confirming letter-based dunning.ROW_IDand audit columns (CREATED_BY,CREATION_DATE,LAST_UPDATED_BY,LAST_UPDATE_DATE,LAST_UPDATE_LOGIN) — standard WHO columns for traceability.
Common Use Cases and Queries
The view is typically used to list dunning-enabled profile classes with their descriptions, or to resolve a profile class description for display on a form or report.
List all dunning profile classes:
SELECT profile_class_name,
profile_class_description,
dunning_letter_set_name,
dunning_charge_type_desc
FROM apps.igi_dun_cust_profile_class_v
ORDER BY profile_class_name;
Retrieve description for a specific class:
SELECT profile_class_description FROM apps.igi_dun_cust_profile_class_v WHERE customer_profile_class_id = :p_class_id;
Find active classes only:
SELECT profile_class_name, profile_class_description FROM apps.igi_dun_cust_profile_class_v WHERE status = 'A';
These queries form the basis for LOVs, dunning setup validation reports, and data extracts feeding downstream collections processing.
-
View: IGI_DUN_CUST_PROFILE_CLASS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IGI.IGI_DUN_CUST_PROFILE_CLASS_V, object_name:IGI_DUN_CUST_PROFILE_CLASS_V, status:VALID, product: IGI - Public Sector Financials International , description: Holds information for Dunning customer profile classes , implementation_dba_data: APPS.IGI_DUN_CUST_PROFILE_CLASS_V ,
-
View: IGI_DUN_CUST_PROFILE_CLASS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGI.IGI_DUN_CUST_PROFILE_CLASS_V, object_name:IGI_DUN_CUST_PROFILE_CLASS_V, status:VALID, product: IGI - Public Sector Financials International , description: Holds information for Dunning customer profile classes , implementation_dba_data: APPS.IGI_DUN_CUST_PROFILE_CLASS_V ,
-
VIEW: APPS.IGI_DUN_CUST_PROFILE_CLASS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IGI.IGI_DUN_CUST_PROFILE_CLASS_V, object_name:IGI_DUN_CUST_PROFILE_CLASS_V, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
VIEW: APPS.IGI_DUN_CUST_PROFILE_CLASS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGI.IGI_DUN_CUST_PROFILE_CLASS_V, object_name:IGI_DUN_CUST_PROFILE_CLASS_V, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
eTRM - IGI Tables and Views
12.2.2
description: This is a temporary table used for GBV migration from 10.7/11.03 to 11i. ,
-
eTRM - IGI Tables and Views
12.1.1
description: This is a temporary table used for GBV migration from 10.7/11.03 to 11i. ,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
SYNONYM: PUBLIC.DUAL
12.2.2
owner:PUBLIC, object_type:SYNONYM, object_name:DUAL, status:VALID,
-
SYNONYM: PUBLIC.DUAL
12.1.1
owner:PUBLIC, object_type:SYNONYM, object_name:DUAL, status:VALID,
-
eTRM - IGI Tables and Views
12.1.1
description: This is a temporary table used for GBV migration from 10.7/11.03 to 11i. ,
-
eTRM - IGI Tables and Views
12.2.2
description: This is a temporary table used for GBV migration from 10.7/11.03 to 11i. ,