Search Results credit_checking




Overview

The APPS.CSC_CUST_PROFILE_CREDIT_V view is a Customer Care (CSC) reporting object that consolidates customer credit profile and credit account attributes into a single, denormalized projection. Its primary role is to support credit management inquiries, customer care dashboards, and integration extract routines where a flattened view of credit risk, terms, collector, and analyst assignments is required for a given customer account. Because it joins the customer profile, the customer account header, standard terms, payment terms, and the collector master, it eliminates the need for reporting tools and downstream integrations to reconstruct these relationships individually.

The view is especially relevant to questions concerning credit_analyst_id, which is exposed directly as a column. Analysts searching for this attribute can obtain the credit analyst assignment for a customer profile without traversing the base profile table directly, alongside the associated collector, risk code, credit rating, and hold status for contextual interpretation.

Underlying Base Objects

The view text identifies five documented base objects, all owned under the APPS synonyms or views as listed in the ETRM 12.2.2 metadata:

The join between HZ_CUSTOMER_PROFILES and HZ_CUST_ACCOUNTS is on CUST_ACCOUNT_ID. Standard terms are outer-joined, while the RA_TERMS_VL join is referenced in the projection.

Key Columns

Common Use Cases and Queries

Typical use cases include credit review reporting, collector and analyst workload analysis, and integration extracts feeding external credit systems. A common query retrieves the credit analyst and collector for a specific account:

  • SELECT cust_account_profile_id, cust_account_id, credit_analyst_id, collector_id, c.name AS collector_name, risk_code, credit_rating, next_credit_review_date FROM apps.csc_cust_profile_credit_v WHERE cust_account_id = :cust_account_id;
  • SELECT credit_analyst_id, COUNT(*) FROM apps.csc_cust_profile_credit_v GROUP BY credit_analyst_id; — analyst workload distribution.
  • SELECT cust_account_id, risk_code, restriction_limit_amount, credit_hold FROM apps.csc_cust_profile_credit_v WHERE credit_hold = 'Y'; — accounts currently on credit hold.

Because the view embeds a filter on standard terms active dates, queries that are sensitive to date-effective terms should account for this constraint.