Search Results bic_party_summary
Overview
The BIC_PARTY_SUMMARY table resides in the BIC schema, which is the physical owner of the Customer Intelligence (BIC) product in Oracle E-Business Suite releases 12.1.1 and 12.2.2. BIC is documented as an obsolete module, and this table exists primarily to hold pre-aggregated, non-organization-striped customer measures produced by the concurrent program "Extract Customer Summary." Rather than computing customer metrics on demand from transactional tables, BIC materializes summary values here on a periodic basis, keyed by party, measure, and accounting period. The table is populated as part of the Customer Intelligence extraction cycle and is intended for reporting and downstream intelligence consumption.
From a Data Vault modeling perspective, a heuristic classification derived from the foreign-key structure suggests that BIC_PARTY_SUMMARY behaves as a satellite-leaning table. Its grain is described by the combination of a party (business key) plus a measure and period, while descriptive and numeric payload columns (VALUE, SCORE) attach context to that business key. It is not a pure hub or link, but its design is consistent with a satellite that hangs off the HZ_PARTIES hub.
Key Information Stored
The table contains 18 documented columns. The most significant include:
- PARTY_ID — The foreign key to HZ_PARTIES that identifies the customer or party being summarized. This is the primary business key dimension.
- MEASURE_ID and MEASURE_CODE — Identify the specific metric being stored for the party. MEASURE_CODE provides a human-readable label; MEASURE_ID is the surrogate reference to the measure definition.
- PERIOD_START_DATE — The start of the accounting or reporting period to which the summary value applies.
- BUCKET_ID — Foreign key to BIC_MEASURE_BUCKETS, used to classify or band the measure value for analytic bucketing.
- VALUE — The numeric result of the extracted and summarized measure.
- SCORE — A derived scoring value, typically used in customer scoring or ranking models.
- SECURITY_GROUP_ID — Foreign key to FND_SECURITY_GROUPS that enforces Oracle EBS multi-org or data-security access control over which rows a user may see.
- LAST_UPDATE_DATE, LAST_UPDATED_BY, CREATION_DATE, CREATED_BY, LAST_UPDATE_LOGIN — Standard EBS audit Who columns.
- REQUEST_ID, PROGRAM_APPLICATION_ID, PROGRAM_ID, PROGRAM_UPDATE_DATE — Concurrent program traceability columns that link each summary row back to the extract run that created it.
- BIC_PARTY_SUMMARY_MEASURE_ID — An additional measure-related surrogate reference retained in the table definition.
The documented business-key candidate is the unique index BIC_PARTY_SUMMARY_U1, defined over (PERIOD_START_DATE, PARTY_ID, MEASURE_ID), which confirms the intended grain of one row per party, per measure, per period.
Common Use Cases and Queries
Because BIC is obsolete, the primary uses of this table are historical reporting, data migration, and auditing of prior customer intelligence extracts. Typical queries join to HZ_PARTIES to resolve party names and to BIC_MEASURE_BUCKETS to obtain bucket definitions.
A representative query retrieves the current-period measure value for a specific customer:
SELECT p.party_name, s.measure_code, s.value, s.score FROM bic.bic_party_summary s JOIN hz_parties p ON p.party_id = s.party_id WHERE s.party_id = :party_id AND s.period_start_date = :period AND s.security_group_id = :sgid;
Other common patterns include aggregating VALUE by MEASURE_CODE across all parties for a given PERIOD_START_DATE, tracing rows back to their originating concurrent request via REQUEST_ID, and filtering rows by SECURITY_GROUP_ID to honor data-security policies in reporting tools.
Related Objects
- HZ_PARTIES — joined via BIC_PARTY_SUMMARY.PARTY_ID; the master party/customer definition.
- BIC_MEASURE_BUCKETS — joined via BIC_PARTY_SUMMARY.BUCKET_ID; provides bucket or banding definitions for measure values.
- FND_SECURITY_GROUPS — joined via BIC_PARTY_SUMMARY.SECURITY_GROUP_ID; enforces EBS security group access.
- "Extract Customer Summary" concurrent program — the population process registered as PROGRAM_ID/REQUEST_ID references that fills this table.
- BIC measure definition tables — referenced through MEASURE_ID and MEASURE_CODE, providing measure metadata.
Together these relationships make BIC_PARTY_SUMMARY a dependent satellite of the party dimension, used for reporting and scoring workflows within an obsolete BIC deployment.
-
Table: BIC_PARTY_SUMMARY
12.1.1
owner:BIC, object_type:TABLE, fnd_design_data:BIC.BIC_PARTY_SUMMARY, object_name:BIC_PARTY_SUMMARY, status:VALID, product: BIC - Customer Intelligence (obsolete) , description: Customer Intelligence Summary information. This gets populated by the concurrent program 'Extract Customer Summary' - for non-Org striped measures only , implementation_dba_data: BIC.BIC_PARTY_SUMMARY ,
-
Table: BIC_PARTY_SUMMARY
12.2.2
owner:BIC, object_type:TABLE, fnd_design_data:BIC.BIC_PARTY_SUMMARY, object_name:BIC_PARTY_SUMMARY, status:VALID, product: BIC - Customer Intelligence(Obsolete) , description: Customer Intelligence Summary information. This gets populated by the concurrent program 'Extract Customer Summary' - for non-Org striped measures only , implementation_dba_data: BIC.BIC_PARTY_SUMMARY ,
-
SYNONYM: APPS.BIC_PARTY_SUMMARY
12.2.2
owner:APPS, object_type:SYNONYM, object_name:BIC_PARTY_SUMMARY, status:VALID,
-
SYNONYM: APPS.BIC_PARTY_SUMMARY
12.1.1
owner:APPS, object_type:SYNONYM, object_name:BIC_PARTY_SUMMARY, status:VALID,
-
VIEW: BIC.BIC_PARTY_SUMMARY#
12.2.2
owner:BIC, object_type:VIEW, object_name:BIC_PARTY_SUMMARY#, status:VALID,
-
PACKAGE: APPS.BIC_CONSOLIDATE_CUST_DATA_PKG
12.1.1
-
VIEW: BIC.BIC_PARTY_SUMMARY#
12.2.2
-
PACKAGE: APPS.BIC_CONSOLIDATE_CUST_DATA_PKG
12.2.2
-
12.2.2 DBA Data
12.2.2
-
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
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
APPS.BIC_CONSOLIDATE_CUST_DATA_PKG SQL Statements
12.1.1
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
PACKAGE BODY: APPS.BIC_CONSOLIDATE_CUST_DATA_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:BIC_CONSOLIDATE_CUST_DATA_PKG, status:VALID,
-
TABLE: BIC.BIC_PARTY_SUMMARY
12.1.1
owner:BIC, object_type:TABLE, fnd_design_data:BIC.BIC_PARTY_SUMMARY, object_name:BIC_PARTY_SUMMARY, status:VALID,
-
12.1.1 FND Design Data
12.1.1
-
APPS.BIC_CONSOLIDATE_CUST_DATA_PKG SQL Statements
12.2.2
-
PACKAGE BODY: APPS.BIC_CONSOLIDATE_CUST_DATA_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:BIC_CONSOLIDATE_CUST_DATA_PKG, status:VALID,
-
TABLE: BIC.BIC_PARTY_SUMMARY
12.2.2
owner:BIC, object_type:TABLE, fnd_design_data:BIC.BIC_PARTY_SUMMARY, object_name:BIC_PARTY_SUMMARY, status:VALID,
-
PACKAGE BODY: APPS.BIC_LIFECYCLE_EXTRACT_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:BIC_LIFECYCLE_EXTRACT_PKG, status:VALID,
-
PACKAGE BODY: APPS.BIC_LIFECYCLE_EXTRACT_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:BIC_LIFECYCLE_EXTRACT_PKG, status:VALID,
-
PACKAGE BODY: APPS.BIC_SUMMARY_EXTRACT_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:BIC_SUMMARY_EXTRACT_PKG, status:VALID,
-
View: BIC_PARTY_SUMMARY_V
12.1.1
product: BIC - Customer Intelligence (obsolete) , implementation_dba_data: Not implemented in this database ,
-
PACKAGE BODY: APPS.BIC_SUMMARY_EXTRACT_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:BIC_SUMMARY_EXTRACT_PKG, status:VALID,
-
View: BIC_PARTY_SUMMARY_V
12.2.2
product: BIC - Customer Intelligence(Obsolete) , implementation_dba_data: Not implemented in this database ,
-
APPS.BIC_SUMMARY_EXTRACT_PKG SQL Statements
12.2.2
-
APPS.BIC_LIFECYCLE_EXTRACT_PKG SQL Statements
12.1.1
-
APPS.BIC_SUMMARY_EXTRACT_PKG SQL Statements
12.1.1
-
APPS.BIC_LIFECYCLE_EXTRACT_PKG SQL Statements
12.2.2
-
eTRM - BIC Tables and Views
12.2.2
description: This table stores industry standard values for satisfaction ,
-
PACKAGE BODY: APPS.BIC_CONSOLIDATE_CUST_DATA_PKG
12.1.1
-
eTRM - BIC Tables and Views
12.1.1
description: This table stores industry standard values for satisfaction ,
-
PACKAGE BODY: APPS.BIC_CONSOLIDATE_CUST_DATA_PKG
12.2.2
-
PACKAGE BODY: APPS.BIC_SUMMARY_EXTRACT_PKG
12.1.1
-
PACKAGE BODY: APPS.BIC_SUMMARY_EXTRACT_PKG
12.2.2
-
APPS.BIC_CONSOLIDATE_CUST_DATA_PKG dependencies on BIC_PARTY_SUMMARY
12.1.1
-
APPS.BIC_LIFECYCLE_EXTRACT_PKG dependencies on BIC_PARTY_SUMMARY
12.1.1
-
PACKAGE BODY: APPS.BIC_LIFECYCLE_EXTRACT_PKG
12.2.2
-
APPS.BIC_CONSOLIDATE_CUST_DATA_PKG dependencies on BIC_PARTY_SUMMARY
12.2.2
-
APPS.BIC_SUMMARY_EXTRACT_PKG dependencies on BIC_PARTY_SUMMARY
12.2.2
-
APPS.BIC_LIFECYCLE_EXTRACT_PKG dependencies on BIC_PARTY_SUMMARY
12.2.2
-
PACKAGE BODY: APPS.BIC_LIFECYCLE_EXTRACT_PKG
12.1.1
-
APPS.BIC_SUMMARY_EXTRACT_PKG dependencies on BIC_PARTY_SUMMARY
12.1.1
-
eTRM - BIC Tables and Views
12.2.2
description: This table stores industry standard values for satisfaction ,
-
Table: HZ_PARTIES
12.1.1
owner:AR, object_type:TABLE, fnd_design_data:AR.HZ_PARTIES, object_name:HZ_PARTIES, status:VALID, product: AR - Receivables , description: Information about parties such as organizations, people, and groups , implementation_dba_data: AR.HZ_PARTIES ,