Search Results csc_acct_relationship_v
Overview
CSC_ACCT_RELATE_RELATIONSHIP_V is a view owned by the APPS schema within the CSC (Customer Care) product family in Oracle E-Business Suite 12.1.1 and 12.2.2. Its documented purpose is to retrieve related accounts for a customer account, exposing the relationship records that link one customer account to another through Oracle's Trading Community Architecture (TCA) and Receivables lookup infrastructure. The view provides a denormalized, read-only presentation of account-to-account relationships, resolving raw lookup codes into their descriptive equivalents so that downstream reporting, Customer Care self-service pages, and integration interfaces can consume relationship data without embedding multi-table join logic.
Because the view is defined in the APPS schema and is reported as VALID, it is treated as a supported read interface for querying account relationships. It is a key object where users investigate the CUSTOMER_RECIPROCAL_FLAG column, which indicates whether a defined relationship is reciprocal between the two accounts.
Underlying Base Objects
The view is defined over three documented base objects:
- HZ_CUST_ACCT_RELATE (SYNONYM) — the primary relationship table (aliased ACCT_RELATE) storing one row per account-to-account relationship, including relationship type, status, reciprocal flag, audit columns, and the DFF attribute columns.
- HZ_CUST_ACCOUNTS (SYNONYM) — the TCA customer account master (aliased CUST_ACCT), joined on
ACCT_RELATE.RELATED_CUST_ACCOUNT_ID = CUST_ACCT.CUST_ACCOUNT_IDto supply the related account's name and number. - AR_LOOKUPS (VIEW) — referenced twice, once as STATUS_LOOKUP (join on
STATUSwithLOOKUP_TYPE = 'CODE_STATUS') and once as RELATION_LOOKUP (outer join onRELATIONSHIP_TYPEwithLOOKUP_TYPE = 'RELATIONSHIP_TYPE'), to translate codes into descriptions.
The relationship table is the driving source; the account master and both lookup references are joined to enrich each row. The outer join on RELATION_LOOKUP means relationships with an undefined relationship type code are still returned, with a null description.
Key Columns
- ROW_ID — the ROWID of the underlying HZ_CUST_ACCT_RELATE record, useful for precise row identification.
- CUST_ACCOUNT_ID / RELATED_CUST_ACCOUNT_ID — the two account identifiers that frame the relationship.
- RELATED_ACCOUNT_NAME / RELATED_ACCOUNT_NUMBER — sourced from HZ_CUST_ACCOUNTS for the related account.
- RELATIONSHIP_TYPE / RELATIONSHIP_DESCRIPTION — the relationship code and its RELATIONSHIP_TYPE lookup description.
- CUSTOMER_RECIPROCAL_FLAG — indicates whether the relationship is reciprocal; the primary search target for users investigating this object.
- RELATED_ACCOUNT_STATUS / ACCOUNT_STATUS_DESCRIPTION — the status code (CODE_STATUS lookup) and its description.
- Audit columns — CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY, LAST_UPDATE_LOGIN.
- ATTRIBUTE_CATEGORY and ATTRIBUTE1–15 — descriptive flexfield context and segments carried from the base relationship table.
Common Use Cases and Queries
Typical uses include Customer Care account 360 screens, relationship validation in integrations, and ad hoc reporting on account hierarchies and reciprocal relationships.
Retrieve all relationships for a given account:
SELECT related_account_name, related_account_number, relationship_description, customer_reciprocal_flag FROM csc_acct_relationship_v WHERE cust_account_id = :p_account_id;
List only reciprocal relationships:
SELECT cust_account_id, related_cust_account_id, relationship_type FROM csc_acct_relationship_v WHERE customer_reciprocal_flag = 'Y';
Filter active relationships by status description:
SELECT a.related_account_number, a.account_status_description FROM csc_acct_relationship_v a WHERE a.account_status_description = 'Active';
Because the view is read-only and resolves lookups internally, it is preferable to direct joins across the base TCA tables for ad hoc relationship queries.
-
View: CSC_ACCT_RELATIONSHIP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSC.CSC_ACCT_RELATIONSHIP_V, object_name:CSC_ACCT_RELATIONSHIP_V, status:VALID, product: CSC - Customer Care , description: CSC_ACCT_RELATIONSHIP_V retrieves related accounts for a customer account. , implementation_dba_data: APPS.CSC_ACCT_RELATIONSHIP_V ,
-
View: CSC_ACCT_RELATIONSHIP_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSC.CSC_ACCT_RELATIONSHIP_V, object_name:CSC_ACCT_RELATIONSHIP_V, status:VALID, product: CSC - Customer Care , description: CSC_ACCT_RELATIONSHIP_V retrieves related accounts for a customer account. , implementation_dba_data: APPS.CSC_ACCT_RELATIONSHIP_V ,
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
SYNONYM: APPS.HZ_CUST_ACCT_RELATE
12.1.1
owner:APPS, object_type:SYNONYM, object_name:HZ_CUST_ACCT_RELATE, status:VALID,
-
SYNONYM: APPS.HZ_CUST_ACCT_RELATE
12.2.2
owner:APPS, object_type:SYNONYM, object_name:HZ_CUST_ACCT_RELATE, status:VALID,
-
VIEW: APPS.CSC_ACCT_RELATIONSHIP_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSC.CSC_ACCT_RELATIONSHIP_V, object_name:CSC_ACCT_RELATIONSHIP_V, status:VALID,
-
VIEW: APPS.CSC_ACCT_RELATIONSHIP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSC.CSC_ACCT_RELATIONSHIP_V, object_name:CSC_ACCT_RELATIONSHIP_V, status:VALID,
-
VIEW: APPS.AR_LOOKUPS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_LOOKUPS, object_name:AR_LOOKUPS, status:VALID,
-
VIEW: APPS.AR_LOOKUPS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_LOOKUPS, object_name:AR_LOOKUPS, status:VALID,
-
SYNONYM: APPS.HZ_CUST_ACCOUNTS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:HZ_CUST_ACCOUNTS, status:VALID,
-
SYNONYM: APPS.HZ_CUST_ACCOUNTS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:HZ_CUST_ACCOUNTS, 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 ,
-
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 ,
-
eTRM - AR Tables and Views
12.2.2
description: Territory information ,
-
eTRM - AR Tables and Views
12.1.1
description: Territory information ,
-
eTRM - AR Tables and Views
12.1.1
description: Territory information ,
-
eTRM - AR Tables and Views
12.2.2
description: Territory information ,