Search Results csc_prof_block_results
Overview
The CSC_PROF_BLOCK_RESULTS table is a core data object within the Oracle E-Business Suite Customer Care (CSC) module. It functions as the central repository for storing the outcome of individual profile checks performed during the customer profiling process. In the context of Oracle EBS 12.1.1 and 12.2.2, customer profiling is a critical business function used to assess creditworthiness, set transaction limits, and define service levels for parties and customer accounts. This table captures the specific values of the profile check variables evaluated for each party and account, enabling a granular audit trail of the profiling logic's application and results.
Key Information Stored
The table's primary purpose is to store the detailed results of profile checks. While the full column list is not provided in the metadata, its structure is defined by its relationships and purpose. The primary key, BLOCK_RESULTS_ID, uniquely identifies each result record. A critical foreign key column is BLOCK_ID, which links each result to its parent profile block definition in the CSC_PROF_BLOCKS_B table. Other essential columns would logically include identifiers for the party and account (e.g., PARTY_ID, CUST_ACCOUNT_ID), the specific profile check variable name, the actual value evaluated for that entity, and timestamps for creation. This design allows the system to record precisely which variable values were considered during a profiling run.
Common Use Cases and Queries
This table is primarily accessed for auditing, troubleshooting, and analytical reporting related to customer profiling decisions. Common use cases include investigating why a particular credit limit was assigned to an account or generating reports on profile compliance across a customer base. A typical query might join this table with CSC_PROF_BLOCKS_B to retrieve the profile block name alongside the calculated variable values for a specific account.
- Sample Query: Retrieving all profile check results for a specific customer account to review the inputs used in their latest profile assessment.
SELECT cpb.BLOCK_NAME, cpbr.* FROM csc_prof_block_results cpbr, csc_prof_blocks_b cpb WHERE cpbr.block_id = cpb.block_id AND cpbr.cust_account_id = <account_id> ORDER BY cpbr.creation_date DESC; - Reporting Use Case: Analyzing the distribution of values for a specific profile variable (e.g., average account balance) across all profiled customers to inform policy adjustments.
Related Objects
The CSC_PROF_BLOCK_RESULTS table has defined relationships with other key profiling tables in the CSC schema, as documented in the provided metadata.
- CSC_PROF_BLOCKS_B: This is the primary related table. The foreign key relationship
CSC_PROF_BLOCK_RESULTS.BLOCK_ID → CSC_PROF_BLOCKS_Bensures that every stored result is associated with a valid profile block definition. This block defines the set of checks and rules for which the results were calculated. - CSC_PROF_BLOCK_RESULTS_PK: The primary key constraint on the BLOCK_RESULTS_ID column guarantees the uniqueness of each result record, which is essential for data integrity and referential integrity from any potential child tables not listed in the excerpt.
-
Table: CSC_PROF_BLOCK_RESULTS
12.1.1
owner:CSC, object_type:TABLE, fnd_design_data:CSC.CSC_PROF_BLOCK_RESULTS, object_name:CSC_PROF_BLOCK_RESULTS, status:VALID, product: CSC - Customer Care , description: CSC_PROF_BLOCK_RESULTS stores the value of the profile check variables per party and account , implementation_dba_data: CSC.CSC_PROF_BLOCK_RESULTS ,
-
Table: CSC_PROF_BLOCK_RESULTS
12.2.2
owner:CSC, object_type:TABLE, fnd_design_data:CSC.CSC_PROF_BLOCK_RESULTS, object_name:CSC_PROF_BLOCK_RESULTS, status:VALID, product: CSC - Customer Care , description: CSC_PROF_BLOCK_RESULTS stores the value of the profile check variables per party and account , implementation_dba_data: CSC.CSC_PROF_BLOCK_RESULTS ,
-
APPS.CSC_PROFILE_ENGINE_PKG dependencies on CSC_PROF_BLOCK_RESULTS
12.1.1
-
APPS.CSC_PROFILE_ENGINE_PKG dependencies on CSC_PROF_BLOCK_RESULTS
12.2.2
-
SYNONYM: APPS.CSC_PROF_BLOCK_RESULTS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:CSC_PROF_BLOCK_RESULTS, status:VALID,
-
VIEW: CSC.CSC_PROF_BLOCK_RESULTS#
12.2.2
owner:CSC, object_type:VIEW, object_name:CSC_PROF_BLOCK_RESULTS#, status:VALID,
-
TABLE: CSC.CSC_PROF_BLOCK_RESULTS
12.1.1
owner:CSC, object_type:TABLE, fnd_design_data:CSC.CSC_PROF_BLOCK_RESULTS, object_name:CSC_PROF_BLOCK_RESULTS, status:VALID,
-
VIEW: APPS.CSC_PROF_BLOCK_RESULTS_V
12.1.1
-
VIEW: APPS.CSC_PROF_BLOCK_RESULTS_V
12.2.2
-
SYNONYM: APPS.CSC_PROF_BLOCK_RESULTS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:CSC_PROF_BLOCK_RESULTS, status:VALID,
-
View: CSC_PROF_BLOCK_RESULTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSC.CSC_PROF_BLOCK_RESULTS_V, object_name:CSC_PROF_BLOCK_RESULTS_V, status:VALID, product: CSC - Customer Care , description: View of CSC_PROF_BLOCK_RESULTS. This view will give us information on the result of the Profile Check Variables when the Profile Engine is run. , implementation_dba_data: APPS.CSC_PROF_BLOCK_RESULTS_V ,
-
View: CSC_PROF_BLOCK_RESULTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSC.CSC_PROF_BLOCK_RESULTS_V, object_name:CSC_PROF_BLOCK_RESULTS_V, status:VALID, product: CSC - Customer Care , description: View of CSC_PROF_BLOCK_RESULTS. This view will give us information on the result of the Profile Check Variables when the Profile Engine is run. , implementation_dba_data: APPS.CSC_PROF_BLOCK_RESULTS_V ,
-
VIEW: CSC.CSC_PROF_BLOCK_RESULTS#
12.2.2
-
TABLE: CSC.CSC_PROF_BLOCK_RESULTS
12.2.2
owner:CSC, object_type:TABLE, fnd_design_data:CSC.CSC_PROF_BLOCK_RESULTS, object_name:CSC_PROF_BLOCK_RESULTS, status:VALID,
-
VIEW: APPS.CSC_PROF_BLOCK_RESULTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSC.CSC_PROF_BLOCK_RESULTS_V, object_name:CSC_PROF_BLOCK_RESULTS_V, status:VALID,
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
Table: CSC_PROF_BLOCKS_B
12.1.1
owner:CSC, object_type:TABLE, fnd_design_data:CSC.CSC_PROF_BLOCKS_B, object_name:CSC_PROF_BLOCKS_B, status:VALID, product: CSC - Customer Care , description: CSC_PROF_BLOCKS_B stores the profile check variable information , implementation_dba_data: CSC.CSC_PROF_BLOCKS_B ,
-
VIEW: APPS.CSC_PROF_BLOCK_RESULTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSC.CSC_PROF_BLOCK_RESULTS_V, object_name:CSC_PROF_BLOCK_RESULTS_V, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
Table: CSC_PROF_CHECK_RESULTS
12.1.1
owner:CSC, object_type:TABLE, fnd_design_data:CSC.CSC_PROF_CHECK_RESULTS, object_name:CSC_PROF_CHECK_RESULTS, status:VALID, product: CSC - Customer Care , description: CSC_PROF_BLOCK_RESULTS stores the value of the profile checks per party and account , implementation_dba_data: CSC.CSC_PROF_CHECK_RESULTS ,
-
Table: CSC_PROF_CHECK_RESULTS
12.2.2
owner:CSC, object_type:TABLE, fnd_design_data:CSC.CSC_PROF_CHECK_RESULTS, object_name:CSC_PROF_CHECK_RESULTS, status:VALID, product: CSC - Customer Care , description: CSC_PROF_BLOCK_RESULTS stores the value of the profile checks per party and account , implementation_dba_data: CSC.CSC_PROF_CHECK_RESULTS ,
-
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.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
Table: CSC_PROF_BLOCKS_B
12.2.2
owner:CSC, object_type:TABLE, fnd_design_data:CSC.CSC_PROF_BLOCKS_B, object_name:CSC_PROF_BLOCKS_B, status:VALID, product: CSC - Customer Care , description: CSC_PROF_BLOCKS_B stores the profile check variable information , implementation_dba_data: CSC.CSC_PROF_BLOCKS_B ,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
PACKAGE BODY: APPS.CSC_PROFILE_ENGINE_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CSC_PROFILE_ENGINE_PKG, status:VALID,
-
PACKAGE BODY: APPS.CSC_PROFILE_ENGINE_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CSC_PROFILE_ENGINE_PKG, status:VALID,
-
APPS.CSC_PROFILE_ENGINE_PKG SQL Statements
12.2.2
-
APPS.CSC_PROFILE_ENGINE_PKG SQL Statements
12.1.1
-
TABLE: CSC.CSC_PROF_CHECK_RESULTS
12.1.1
owner:CSC, object_type:TABLE, fnd_design_data:CSC.CSC_PROF_CHECK_RESULTS, object_name:CSC_PROF_CHECK_RESULTS, status:VALID,
-
TABLE: CSC.CSC_PROF_CHECK_RESULTS
12.2.2
owner:CSC, object_type:TABLE, fnd_design_data:CSC.CSC_PROF_CHECK_RESULTS, object_name:CSC_PROF_CHECK_RESULTS, status:VALID,
-
APPS.CSC_PROFILE_ENGINE_PKG dependencies on FND_GLOBAL
12.1.1
-
APPS.CSC_PROFILE_ENGINE_PKG dependencies on FND_GLOBAL
12.2.2
-
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 ,
-
PACKAGE: APPS.CSC_PARTY_MERGE_PKG
12.1.1
-
PACKAGE: APPS.CSC_PARTY_MERGE_PKG
12.2.2
-
PACKAGE BODY: APPS.CSC_PROFILE_ENGINE_PKG
12.2.2
-
PACKAGE BODY: APPS.CSC_PROFILE_ENGINE_PKG
12.1.1
-
PACKAGE: APPS.CSC_PROFILE_ENGINE_PKG
12.1.1
-
PACKAGE: APPS.CSC_PROFILE_ENGINE_PKG
12.2.2
-
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