Search Results bic_party_status_summ
Overview
BIC.BIC_PARTY_STATUS_SUMM is a table within the Oracle E-Business Suite BIC – Customer Intelligence product. The BIC module is flagged as Obsolete in the ETRM 12.2.2 repository, meaning that while the object remains physically VALID in the schema, it is no longer part of the actively supported product footprint and should generally be treated as a legacy or historical construct.
Functionally, the table is a flattened, denormalized summary of party-level status measures. As the ETRM description states, rows from an underlying "Party Summary" table are transposed into columns to support matrix-style reporting — specifically for non-org striped measures. In other words, rather than representing each measure as a row, the table pivots those measures into discrete columns, enabling direct matrix and cross-tab reporting against a single party record per period.
Applying a heuristic Data Vault classification based on the documented foreign-key structure, the object is satellite-leaning. Its grain is keyed by a business identifier (party) combined with a period, and it carries descriptive, time-varying measures — the profile of a satellite attached to a party hub rather than a hub or link in its own right. This is offered as a modeling suggestion only; the physical table is not implemented as a formal Data Vault artifact.
Key Information Stored
The table exposes 17 documented columns. The most operationally significant are:
- PARTY_ID — the party business key and foreign key to HZ_PARTIES; it identifies the customer or party the summarized measures describe.
- PERIOD_START_DATE — the time dimension that anchors each summarized row, defining the reporting period for the measure set.
- ACQUISITION, ACTIVATION, RETENTION, LIFE_CYCLE — transposed lifecycle measures that constitute the core analytical content of the flattened table.
- MARKET_SEGMENT_ID — a segmentation classifier applied to the party for the period.
- SECURITY_GROUP_ID — the foreign key to FND_SECURITY_GROUPS, enforcing multi-org / data-security access boundaries.
- LAST_UPDATE_DATE, CREATION_DATE, LAST_UPDATED_BY, CREATED_BY, LAST_UPDATE_LOGIN — standard who-columns for audit and concurrency.
- REQUEST_ID, PROGRAM_APPLICATION_ID, PROGRAM_ID, PROGRAM_UPDATE_DATE — concurrent-program lineage identifying the job that populated or last refreshed the row.
The metadata does not document an explicit surrogate primary key or unique index on this table, so no formal surrogate-vs-business-key distinction can be asserted from ETRM alone. Based on the structure, PARTY_ID combined with PERIOD_START_DATE (and SECURITY_GROUP_ID where org-striping applies) is the most plausible composite business key.
Common Use Cases and Queries
Because the table is pre-pivoted, its primary use is direct matrix reporting on customer lifecycle measures by party and period. A typical retrieval pattern filters to a reporting window and security context:
- Lifecycle trend analysis — tracking ACQUISITION, ACTIVATION, and RETENTION movements for a party across successive PERIOD_START_DATE values.
- Segmented reporting — aggregating measures by MARKET_SEGMENT_ID to compare performance across customer segments.
- Refresh auditing — reviewing PROGRAM_ID, REQUEST_ID, and PROGRAM_UPDATE_DATE to determine the last population run and its source program.
A representative query joining to the party master would be:
SELECT p.party_name, s.period_start_date, s.acquisition, s.activation, s.retention, s.life_cycle
FROM bic.bic_party_status_summ s, hz_parties p
WHERE s.party_id = p.party_id
AND s.period_start_date BETWEEN :from_date AND :to_date;
ORDER BY p.party_name, s.period_start_date;
All access should respect SECURITY_GROUP_ID filtering consistent with the caller's operating unit and security profile.
Related Objects
The documented foreign keys and dependencies define the object's immediate lineage:
- HZ_PARTIES — joined via BIC_PARTY_STATUS_SUMM.PARTY_ID; the party master providing names and party classifications.
- FND_SECURITY_GROUPS — joined via SECURITY_GROUP_ID; governs data-security and multi-org partitioning.
- FND_CONCURRENT_REQUESTS — resolves REQUEST_ID to the concurrent job that populated the summary rows.
- FND_PROGRAM / FND_APPLICATION — resolve PROGRAM_ID and PROGRAM_APPLICATION_ID for refresh lineage.
- FND_USER — resolves CREATED_BY and LAST_UPDATED_BY for audit attribution.
Given the module's obsolete status, architects planning migrations or custom reporting should confirm whether this table is still populated by an active concurrent program before building dependencies upon it.
-
Table: BIC_PARTY_STATUS_SUMM
12.2.2
owner:BIC, object_type:TABLE, fnd_design_data:BIC.BIC_PARTY_STATUS_SUMM, object_name:BIC_PARTY_STATUS_SUMM, status:VALID, product: BIC - Customer Intelligence(Obsolete) , description: From Party Summary table, the rows are transposed as columns for matrix reporting. i.e., Flattened table for non-org striped measures. , implementation_dba_data: BIC.BIC_PARTY_STATUS_SUMM ,
-
Table: BIC_PARTY_STATUS_SUMM
12.1.1
owner:BIC, object_type:TABLE, fnd_design_data:BIC.BIC_PARTY_STATUS_SUMM, object_name:BIC_PARTY_STATUS_SUMM, status:VALID, product: BIC - Customer Intelligence (obsolete) , description: From Party Summary table, the rows are transposed as columns for matrix reporting. i.e., Flattened table for non-org striped measures. , implementation_dba_data: BIC.BIC_PARTY_STATUS_SUMM ,
-
VIEW: BIC.BIC_PARTY_STATUS_SUMM#
12.2.2
owner:BIC, object_type:VIEW, object_name:BIC_PARTY_STATUS_SUMM#, status:VALID,
-
VIEW: BIC.BIC_PARTY_STATUS_SUMM#
12.2.2
-
SYNONYM: APPS.BIC_PARTY_STATUS_SUMM
12.1.1
owner:APPS, object_type:SYNONYM, object_name:BIC_PARTY_STATUS_SUMM, status:VALID,
-
SYNONYM: APPS.BIC_PARTY_STATUS_SUMM
12.2.2
owner:APPS, object_type:SYNONYM, object_name:BIC_PARTY_STATUS_SUMM, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.2.2 FND Design Data
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,
-
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
-
TABLE: BIC.BIC_PARTY_STATUS_SUMM
12.2.2
owner:BIC, object_type:TABLE, fnd_design_data:BIC.BIC_PARTY_STATUS_SUMM, object_name:BIC_PARTY_STATUS_SUMM, status:VALID,
-
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,
-
APPS.BIC_CONSOLIDATE_CUST_DATA_PKG SQL Statements
12.1.1
-
View: BIC_PARTY_STATUS_SUMM_V
12.1.1
product: BIC - Customer Intelligence (obsolete) , implementation_dba_data: Not implemented in this database ,
-
TABLE: BIC.BIC_PARTY_STATUS_SUMM
12.1.1
owner:BIC, object_type:TABLE, fnd_design_data:BIC.BIC_PARTY_STATUS_SUMM, object_name:BIC_PARTY_STATUS_SUMM, status:VALID,
-
PACKAGE: APPS.BIC_CONSOLIDATE_CUST_DATA_PKG
12.2.2
-
PACKAGE: APPS.BIC_CONSOLIDATE_CUST_DATA_PKG
12.1.1
-
View: BIC_PARTY_STATUS_SUMM_V
12.2.2
product: BIC - Customer Intelligence(Obsolete) , implementation_dba_data: Not implemented in this database ,
-
APPS.BIC_CONSOLIDATE_CUST_DATA_PKG SQL Statements
12.2.2
-
eTRM - BIC Tables and Views
12.2.2
description: This table stores industry standard values for satisfaction ,
-
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_CONSOLIDATE_CUST_DATA_PKG
12.1.1
-
APPS.BIC_CONSOLIDATE_CUST_DATA_PKG dependencies on BIC_PARTY_STATUS_SUMM
12.2.2
-
APPS.BIC_CONSOLIDATE_CUST_DATA_PKG dependencies on BIC_PARTY_STATUS_SUMM
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 ,
-
Table: HZ_PARTIES
12.2.2
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 ,
-
eTRM - BIC Tables and Views
12.1.1
description: This table stores industry standard values for satisfaction ,
-
APPS.BIC_SUMMARY_EXTRACT_PKG SQL Statements
12.1.1
-
APPS.BIC_CONSOLIDATE_CUST_DATA_PKG dependencies on AMS_PARTY_MARKET_SEGMENTS
12.1.1
-
APPS.BIC_CONSOLIDATE_CUST_DATA_PKG dependencies on AMS_PARTY_MARKET_SEGMENTS
12.2.2
-
APPS.BIC_SUMMARY_EXTRACT_PKG SQL Statements
12.2.2
-
APPS.BIC_CONSOLIDATE_CUST_DATA_PKG dependencies on FND_FILE
12.1.1
-
APPS.BIC_CONSOLIDATE_CUST_DATA_PKG dependencies on FND_FILE
12.2.2
-
APPS.BIC_CONSOLIDATE_CUST_DATA_PKG dependencies on BIC_PARTY_SUMM
12.2.2
-
APPS.BIC_CONSOLIDATE_CUST_DATA_PKG dependencies on BIC_PARTY_SUMM
12.1.1
-
PACKAGE BODY: APPS.BIC_SUMMARY_EXTRACT_PKG
12.1.1
-
PACKAGE BODY: APPS.BIC_SUMMARY_EXTRACT_PKG
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1