Search Results override_terms




Overview

JTF_CUSTOMER_PROFILES_V is a CRM Foundation (JTF) view owned by the APPS schema in Oracle E-Business Suite 12.1.1 and 12.2.2. It presents credit profile information associated with customer accounts and customer account sites, and is documented as retrieving credit information for customer accounts and their associated account sites. The view functions as a reporting and integration layer over the customer profile data that supports credit management activities within the Receivables and Order Management flows, most notably credit checking, credit holds, dunning, statements, and collections.

Because it exposes a single flat row per customer account profile (and, where applicable, per site use), the view is convenient for ad-hoc queries, custom reports, and interface extracts without requiring the caller to join multiple Receivables and CRM tables. It is registered as a VALID object in the APPS schema and appears with the standard EBS audit and descriptive flexfield columns.

Underlying Base Objects

Per the ETRM 12.2.2 metadata, the only documented referenced base object is the synonym HZ_CUSTOMER_PROFILES. The view text selects a substantial column list — including ROWID — directly from that customer profile source, meaning JTF_CUSTOMER_PROFILES_V is effectively a pass-through projection over the customer profiles data rather than a multi-table join. The profile records are keyed by CUST_ACCOUNT_PROFILE_ID, with foreign key relationships carried through CUST_ACCOUNT_ID and SITE_USE_ID, allowing each row to be resolved to either a customer account or a specific account site.

Key Columns

Common Use Cases and Queries

Typical uses include credit exposure reporting, identifying accounts on credit hold, and auditing credit ratings and risk codes across accounts or sites. A simple lookup by credit rating is shown below.

  • List accounts with a given credit rating:
    SELECT cust_account_id, site_use_id, credit_rating, risk_code, credit_hold
    FROM   apps.jtf_customer_profiles_v
    WHERE  credit_rating = :credit_rating;
  • Identify accounts currently on credit hold:
    SELECT cust_account_id, profile_class_id, credit_hold, account_status
    FROM   apps.jtf_customer_profiles_v
    WHERE  credit_hold = 'Y';
  • Join to customer account details for reporting:
    SELECT p.cust_account_id, p.credit_rating, p.risk_code, hcp.customer_name
    FROM   apps.jtf_customer_profiles_v p,
           apps.hz_cust_accounts hca,
           apps.hz_parties hcp
    WHERE  p.cust_account_id = hca.cust_account_id
    AND    hca.party_id = hcp.party_id;

Because the view preserves flexfield attributes and site-level key columns, it is well suited to custom extracts and to integration endpoints that require a consolidated view of a customer's credit profile.