Search Results csc_cust_plans_audit
Overview
The CSC_CUST_PLANS_AUDIT table is a core audit and history tracking object within the Oracle E-Business Suite Customer Care (CSC) module. Its primary function is to maintain a complete historical record of all changes to customer and plan associations. In the context of service and support operations, a "plan" often represents a service contract, support agreement, or subscription. This table ensures a non-repudiable audit trail of when a specific customer (or customer account) was associated with or disassociated from a particular plan, which is critical for compliance, dispute resolution, and analyzing customer service history across versions 12.1.1 and 12.2.2.
Key Information Stored
The table's structure is designed to capture the essential elements of an audit record. Its primary key, PLAN_AUDIT_ID, uniquely identifies each historical event. The most critical foreign key columns define the entities involved in the association: PLAN_ID references the specific plan from CSC_PLAN_HEADERS_B, PARTY_ID identifies the customer party from the Trading Community Architecture (HZ_PARTIES), and CUST_ACCOUNT_ID points to the specific customer account (HZ_CUST_ACCOUNTS). While the provided metadata does not list all columns, a table of this nature typically includes audit-specific fields such as CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY, and columns indicating the action performed (e.g., INSERT, UPDATE, DELETE) or the effective start and end dates of the association.
Common Use Cases and Queries
This table is central to historical reporting and forensic analysis in Customer Care. Common use cases include generating a customer's complete plan history for audit purposes, determining which plan a customer was subscribed to on a specific historical date for billing or support entitlement validation, and analyzing plan adoption or churn trends over time. A typical query would join this audit table to the plan and customer tables to produce a readable history report.
- Sample Query Pattern:
SELECT cpa.*, ph.PLAN_NAME, p.PARTY_NAME, ca.ACCOUNT_NUMBER FROM CSC_CUST_PLANS_AUDIT cpa, CSC_PLAN_HEADERS_B ph, HZ_PARTIES p, HZ_CUST_ACCOUNTS ca WHERE cpa.PLAN_ID = ph.PLAN_ID AND cpa.PARTY_ID = p.PARTY_ID AND cpa.CUST_ACCOUNT_ID = ca.CUST_ACCOUNT_ID AND cpa.PARTY_ID = :p_customer_id ORDER BY cpa.CREATION_DATE DESC;
Related Objects
The CSC_CUST_PLANS_AUDIT table sits at the intersection of Customer Care data and the core Trading Community Architecture. Its documented foreign key relationships are fundamental to its purpose:
- CSC_PLAN_HEADERS_B: Joined via
CSC_CUST_PLANS_AUDIT.PLAN_ID. This provides descriptive information about the service plan or contract involved in the audit record. - HZ_PARTIES: Joined via
CSC_CUST_PLANS_AUDIT.PARTY_ID. This links the audit entry to the master customer (party) entity in the system. - HZ_CUST_ACCOUNTS: Joined via
CSC_CUST_PLANS_AUDIT.CUST_ACCOUNT_ID. This links the audit entry to the specific customer account related to the plan association.
These relationships ensure data integrity and enable comprehensive joins for reporting. The table is likely referenced by standard Customer Care reports and may be populated by triggers or APIs managing the main customer-plan association table.
-
Table: CSC_CUST_PLANS_AUDIT
12.1.1
owner:CSC, object_type:TABLE, fnd_design_data:CSC.CSC_CUST_PLANS_AUDIT, object_name:CSC_CUST_PLANS_AUDIT, status:VALID, product: CSC - Customer Care , description: CSC_CUST_PLANS_AUDIT stores the history of all customer, plan association , implementation_dba_data: CSC.CSC_CUST_PLANS_AUDIT ,
-
Table: CSC_CUST_PLANS_AUDIT
12.2.2
owner:CSC, object_type:TABLE, fnd_design_data:CSC.CSC_CUST_PLANS_AUDIT, object_name:CSC_CUST_PLANS_AUDIT, status:VALID, product: CSC - Customer Care , description: CSC_CUST_PLANS_AUDIT stores the history of all customer, plan association , implementation_dba_data: CSC.CSC_CUST_PLANS_AUDIT ,
-
APPS.CSC_ACCOUNT_MERGE_PKG dependencies on CSC_CUST_PLANS_AUDIT
12.2.2
-
APPS.CSC_PARTY_MERGE_PKG dependencies on CSC_CUST_PLANS_AUDIT
12.2.2
-
APPS.CSC_PLAN_ASSIGNMENT_PKG dependencies on CSC_CUST_PLANS_AUDIT
12.1.1
-
APPS.CSC_PLAN_ASSIGNMENT_PKG dependencies on CSC_CUST_PLANS_AUDIT
12.2.2
-
APPS.CSC_ACCOUNT_MERGE_PKG dependencies on CSC_CUST_PLANS_AUDIT
12.1.1
-
APPS.CSC_CUST_PLANS_AUDIT_PKG dependencies on CSC_CUST_PLANS_AUDIT
12.1.1
-
APPS.CSC_PARTY_MERGE_PKG dependencies on CSC_CUST_PLANS_AUDIT
12.1.1
-
APPS.CSC_CUST_PLANS_AUDIT_PKG dependencies on CSC_CUST_PLANS_AUDIT
12.2.2
-
APPS.CSC_PARTY_MERGE_PKG dependencies on CSC_CUST_PLANS
12.1.1
-
APPS.CSC_PARTY_MERGE_PKG dependencies on CSC_CUST_PLANS
12.2.2
-
SYNONYM: APPS.CSC_CUST_PLANS_AUDIT
12.2.2
owner:APPS, object_type:SYNONYM, object_name:CSC_CUST_PLANS_AUDIT, status:VALID,
-
APPS.CSC_PARTY_MERGE_PKG SQL Statements
12.2.2
-
SYNONYM: APPS.CSC_CUST_PLANS_AUDIT
12.1.1
owner:APPS, object_type:SYNONYM, object_name:CSC_CUST_PLANS_AUDIT, status:VALID,
-
APPS.CSC_ACCOUNT_MERGE_PKG dependencies on CSC_CUST_PLANS
12.1.1
-
APPS.CSC_PARTY_MERGE_PKG SQL Statements
12.1.1
-
VIEW: CSC.CSC_CUST_PLANS_AUDIT#
12.2.2
owner:CSC, object_type:VIEW, object_name:CSC_CUST_PLANS_AUDIT#, status:VALID,
-
APPS.CSC_ACCOUNT_MERGE_PKG dependencies on CSC_CUST_PLANS
12.2.2
-
VIEW: CSC.CSC_CUST_PLANS_AUDIT#
12.2.2
-
APPS.CSC_CUST_PLANS_PVT dependencies on CSC_CUST_PLANS_AUDIT_PKG
12.1.1
-
APPS.CSC_CUST_PLANS_PVT dependencies on CSC_CUST_PLANS_AUDIT_PKG
12.2.2
-
View: CSC_CUST_PLANS_AUDIT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSC.CSC_CUST_PLANS_AUDIT_V, object_name:CSC_CUST_PLANS_AUDIT_V, status:VALID, product: CSC - Customer Care , description: This view is based on CSC_CUST_PLANS_AUDIT used in lock row event of server side API's , implementation_dba_data: APPS.CSC_CUST_PLANS_AUDIT_V ,
-
View: CSC_CUST_PLANS_AUDIT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSC.CSC_CUST_PLANS_AUDIT_V, object_name:CSC_CUST_PLANS_AUDIT_V, status:VALID, product: CSC - Customer Care , description: This view is based on CSC_CUST_PLANS_AUDIT used in lock row event of server side API's , implementation_dba_data: APPS.CSC_CUST_PLANS_AUDIT_V ,
-
APPS.CSC_ACCOUNT_MERGE_PKG dependencies on RA_CUSTOMER_MERGES
12.1.1
-
APPS.CSC_ACCOUNT_MERGE_PKG dependencies on RA_CUSTOMER_MERGES
12.2.2
-
APPS.CSC_PARTY_MERGE_PKG dependencies on FND_FILE
12.2.2
-
APPS.CSC_PARTY_MERGE_PKG dependencies on FND_FILE
12.1.1
-
TABLE: CSC.CSC_CUST_PLANS_AUDIT
12.2.2
owner:CSC, object_type:TABLE, fnd_design_data:CSC.CSC_CUST_PLANS_AUDIT, object_name:CSC_CUST_PLANS_AUDIT, status:VALID,
-
TABLE: CSC.CSC_CUST_PLANS_AUDIT
12.1.1
owner:CSC, object_type:TABLE, fnd_design_data:CSC.CSC_CUST_PLANS_AUDIT, object_name:CSC_CUST_PLANS_AUDIT, status:VALID,
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
VIEW: APPS.CSC_CUST_PLANS_AUDIT_V
12.2.2
-
VIEW: APPS.CSC_CUST_PLANS_AUDIT_V
12.1.1
-
12.2.2 DBA Data
12.2.2
-
APPS.CSC_ACCOUNT_MERGE_PKG dependencies on HZ_CUST_ACCOUNTS
12.1.1
-
APPS.CSC_ACCOUNT_MERGE_PKG dependencies on HZ_CUST_ACCOUNTS
12.2.2
-
12.1.1 DBA Data
12.1.1
-
Table: CSC_PLAN_HEADERS_B
12.2.2
owner:CSC, object_type:TABLE, fnd_design_data:CSC.CSC_PLAN_HEADERS_B, object_name:CSC_PLAN_HEADERS_B, status:VALID, product: CSC - Customer Care , description: CSC_PLAN_HEADERS_B table stores all the plan templates and customized plan templates. , implementation_dba_data: CSC.CSC_PLAN_HEADERS_B ,
-
12.2.2 DBA Data
12.2.2
-
APPS.CSC_ACCOUNT_MERGE_PKG SQL Statements
12.1.1
-
APPS.CSC_ACCOUNT_MERGE_PKG SQL Statements
12.2.2
-
PACKAGE BODY: APPS.CSC_CUST_PLANS_AUDIT_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CSC_CUST_PLANS_AUDIT_PKG, status:VALID,
-
PACKAGE BODY: APPS.CSC_CUST_PLANS_AUDIT_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CSC_CUST_PLANS_AUDIT_PKG, status:VALID,
-
Table: CSC_PLAN_HEADERS_B
12.1.1
owner:CSC, object_type:TABLE, fnd_design_data:CSC.CSC_PLAN_HEADERS_B, object_name:CSC_PLAN_HEADERS_B, status:VALID, product: CSC - Customer Care , description: CSC_PLAN_HEADERS_B table stores all the plan templates and customized plan templates. , implementation_dba_data: CSC.CSC_PLAN_HEADERS_B ,
-
12.1.1 DBA Data
12.1.1