Search Results csc_customer_response_v
Overview
The CSC_CUSTOMER_RESPONSE_V view is a Customer Care (CSC) reporting and integration object owned by the APPS schema in Oracle E-Business Suite. In the ETRM metadata it is registered as a VALID VIEW within the CSC – Customer Care product family, and its stated purpose is to expose Relationship information together with Subject (Caller) and Object (Person/Group/Organization) information. In practice this means the view presents a denormalized, denormalized-by-design projection that joins a subject party to an object party through a relationship record, then decorates both sides of that relationship with the profile attributes of each party type.
For EBS 12.1.1 and 12.2.2, the Trading Community Architecture (TCA) model stores people, organizations, and groups as rows in HZ_PARTIES, while their extended attributes are held in HZ_PERSON_PROFILES and HZ_ORGANIZATION_PROFILES. Relationships between parties are stored in HZ_RELATIONSHIPS. The CSC view collapses these distinct TCA entities into a single consumable result set so that Customer Care screens, contact-center dashboards, and downstream integrations can retrieve "who is related to whom" without writing the multi-table join themselves.
Underlying Base Objects
The documented ETRM base objects referenced by the view are all TCA synonyms:
- HZ_PARTIES – the master entity table for persons, organizations, and groups.
- HZ_RELATIONSHIPS – the relationship bridge between a subject party and an object party, supplying SUBJECT_ID, OBJECT_ID, and PARTY_RELATIONSHIP_TYPE.
- HZ_PERSON_PROFILES – person-specific attributes such as phonetic name and known-as values.
- HZ_ORGANIZATION_PROFILES – organization attributes such as DUNS number, fiscal year end, employee count, and revenue estimates.
- HZ_ORG_CONTACTS – organization contact attributes including job title, decision-maker flag, department, and managed-by information.
The view text aliases HZ_PARTIES as PARTY for the base side and as SUB_PARTY and OBJ_PARTY for the subject and object sides, joining each back through HZ_RELATIONSHIPS and the relevant profile table. This structure allows a single query to return both the caller and the related account or contact in one row.
Key Columns
- PARTY_ID / PARTY_NUMBER / PARTY_TYPE / PARTY_NAME – identity and classification of the primary party.
- SUBJECT_ID / OBJECT_ID – the two endpoints of the relationship stored in HZ_RELATIONSHIPS.
- PARTY_RELATIONSHIP_TYPE – the nature of the relationship (e.g., contact-of, employee-of).
- OBJ_PARTY / SUB_PARTY attributes – first, middle, last name, suffix, title, known-as, SIC code, and pre-name adjunct, allowing both sides of a relationship to be rendered.
- Organization profile columns – ANALYSIS_FY, FISCAL_YEAREND_MONTH, EMPLOYEES_TOTAL, CURR_FY_POTENTIAL_REVENUE, NEXT_FY_POTENTIAL_REVENUE, TAX_REFERENCE, YEAR_ESTABLISHED, INTERNAL_FLAG, PUBLIC_PRIVATE_OWNERSHIP_FLAG, DUNS_NUMBER, JGZZ_FISCAL_CODE.
- Contact columns – JOB_TITLE, DECISION_MAKER_FLAG, JOB_TITLE_CODE, MANAGED_BY, NATIVE_LANGUAGE, RANK, DEPARTMENT.
- Address columns – ADDRESS1 through ADDRESS4 concatenated with DECODE logic, plus CITY, STATE, PROVINCE, POSTAL_CODE.
- Audit columns – CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY, LAST_UPDATE_LOGIN.
Common Use Cases and Queries
Typical scenarios include contact-center agent screens that must display a caller alongside the organization they belong to, data-migration extracts of customer relationships, and integration feeds to CRM or analytics platforms. A representative query is:
SELECT party_id, party_number, party_name, subject_id, object_id, party_relationship_type FROM csc_customer_response_v WHERE party_relationship_type = 'CONTACT_OF';SELECT party_name, obj_party_name, duns_number FROM csc_customer_response_v WHERE party_type = 'PERSON' AND group_type = 'ORGANIZATION';SELECT subject_id, object_id, known_as, job_title FROM csc_customer_response_v WHERE object_id = :p_org_party_id;
Because the view is a synonym-backed APPS object, it should be queried with the APPS credentials or through a synonym granted to the reporting schema. Performance is dominated by the underlying joins across HZ_RELATIONSHIPS and the profile tables, so filtering on PARTY_ID, SUBJECT_ID, or OBJECT_ID is recommended.
-
View: CSC_CUSTOMER_RESPONSE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSC.CSC_CUSTOMER_RESPONSE_V, object_name:CSC_CUSTOMER_RESPONSE_V, status:VALID, product: CSC - Customer Care , description: Contains Relationship information, Subject (Caller) and Object (Person/Group/Organization) information , implementation_dba_data: APPS.CSC_CUSTOMER_RESPONSE_V ,
-
View: CSC_CUSTOMER_RESPONSE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSC.CSC_CUSTOMER_RESPONSE_V, object_name:CSC_CUSTOMER_RESPONSE_V, status:VALID, product: CSC - Customer Care , description: Contains Relationship information, Subject (Caller) and Object (Person/Group/Organization) information , implementation_dba_data: APPS.CSC_CUSTOMER_RESPONSE_V ,
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
SYNONYM: APPS.HZ_PERSON_PROFILES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:HZ_PERSON_PROFILES, status:VALID,
-
SYNONYM: APPS.HZ_ORGANIZATION_PROFILES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:HZ_ORGANIZATION_PROFILES, status:VALID,
-
SYNONYM: APPS.HZ_ORGANIZATION_PROFILES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:HZ_ORGANIZATION_PROFILES, status:VALID,
-
SYNONYM: APPS.HZ_PERSON_PROFILES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:HZ_PERSON_PROFILES, status:VALID,
-
VIEW: APPS.CSC_CUSTOMER_RESPONSE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSC.CSC_CUSTOMER_RESPONSE_V, object_name:CSC_CUSTOMER_RESPONSE_V, status:VALID,
-
VIEW: APPS.CSC_CUSTOMER_RESPONSE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSC.CSC_CUSTOMER_RESPONSE_V, object_name:CSC_CUSTOMER_RESPONSE_V, status:VALID,
-
SYNONYM: APPS.HZ_ORG_CONTACTS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:HZ_ORG_CONTACTS, status:VALID,
-
SYNONYM: APPS.HZ_ORG_CONTACTS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:HZ_ORG_CONTACTS, status:VALID,
-
SYNONYM: APPS.HZ_RELATIONSHIPS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:HZ_RELATIONSHIPS, status:VALID,
-
SYNONYM: APPS.HZ_RELATIONSHIPS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:HZ_RELATIONSHIPS, status:VALID,
-
eTRM - CSC Tables and Views
12.1.1
description: Translation table to Store Drilldown details for a profile variable. This stores the column and table names for the drilldown form. Also stores the object_code, which provides the form_function to drilldown ,
-
eTRM - CSC Tables and Views
12.2.2
description: Translation table to Store Drilldown details for a profile variable. This stores the column and table names for the drilldown form. Also stores the object_code, which provides the form_function to drilldown ,
-
SYNONYM: APPS.HZ_PARTIES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:HZ_PARTIES, status:VALID,
-
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 - CSC Tables and Views
12.2.2
description: Translation table to Store Drilldown details for a profile variable. This stores the column and table names for the drilldown form. Also stores the object_code, which provides the form_function to drilldown ,
-
eTRM - CSC Tables and Views
12.1.1
description: Translation table to Store Drilldown details for a profile variable. This stores the column and table names for the drilldown form. Also stores the object_code, which provides the form_function to drilldown ,