Search Results customer_category_fk
Overview
BIC_SUMV_LOYALTY is a read-only database view belonging to the BIC – Customer Intelligence module of Oracle E-Business Suite. In ETRM 12.2.2 metadata the object is flagged as obsolete and documented as "Not implemented in this database," meaning it is a legacy artifact that may not be installed or populated in a given environment. Within the Customer Intelligence (BIC) reporting layer, the view presents a summarized, party-level loyalty fact set, exposing loyalty value measurements alongside the customer category, market segment, organization, and geographic attributes needed for dimensional analysis. Its role is to support loyalty-oriented reporting and downstream integration, such as extracting loyalty summaries for a data warehouse or a customer analytics dashboard, without requiring the caller to join the full underlying summary table.
Underlying Base Objects
The view text is defined entirely over a single source object: BIC_PARTY_SUMM_V, a customer intelligence party summary view. No additional base tables are documented for BIC_SUMV_LOYALTY, and the ETRM metadata records no referenced base objects beyond this parent view. The definition projects a selected set of columns from BIC_PARTY_SUMM_V and constrains the result set with WITH READ ONLY, so the view cannot be used for DML. Because it is a view over another view, its effective lineage depends on the columns materialized in BIC_PARTY_SUMM_V, and it inherits the access and security characteristics of that parent object.
Key Columns
The projection exposes the measures and dimensional keys required for loyalty analysis:
- PERIOD_START_DATE – effective start date of the reporting period associated with the summary row.
- VALUE – the loyalty measure (listed as "LOYALTY VALUE" in the view text) for the party and period.
- ORG_ID – operating unit identifier, supporting multi-org filtering and access control.
- CUSTOMER_CATEGORY_FK – foreign key to the customer category classification, the attribute most directly relevant to the originating search term.
- MARKET_SEGMENT_FK – foreign key to the market segment dimension.
- PARTY_ID – the customer or party identifier, the primary subject of the summary.
- COUNTRY, CITY, STATE – geographic attributes for the party.
- ACT_PERIOD_NAME – accounting period label.
- ACT_PERIOD_START_DATE, ACT_PERIOD_END_DATE – accounting period boundaries.
- ACT_YEAR, ACT_PERIOD_NUM, ACT_QUARTER, ACT_HALF_YEAR – accounting calendar hierarchy attributes.
- ACT_YEAR_START_DATE, ACT_QUARTER_START_DATE – calendar roll-up dates for year and quarter.
Common Use Cases and Queries
The typical scenario is loyalty value aggregation and comparison across customer categories, market segments, geographies, and accounting periods. The CUSTOMER_CATEGORY_FK column allows analysts to group loyalty value by category, while ACT_QUARTER and ACT_HALF_YEAR support period-over-period trending. Because the object is obsolete and may not exist, scripts should verify presence before execution.
A representative query by customer category:
SELECT customer_category_fk, org_id, act_quarter, SUM(value) loyalty_value
FROM bic_sumv_loyalty
WHERE act_year = :p_year
GROUP BY customer_category_fk, org_id, act_quarter
ORDER BY customer_category_fk, act_quarter;
A comparable query grouping by market segment and geography:
SELECT market_segment_fk, country, state, SUM(value) loyalty_value
FROM bic_sumv_loyalty
WHERE org_id = :p_org_id
GROUP BY market_segment_fk, country, state;
To confirm installation, query the data dictionary before relying on the view:
SELECT view_name, status FROM all_views WHERE view_name = 'BIC_SUMV_LOYALTY';
Where the view is absent, equivalent logic should be reimplemented against BIC_PARTY_SUMM_V or the current customer intelligence summary objects supported in the release.
-
View: BIC_SUMV_LOYALTY
12.1.1
product: BIC - Customer Intelligence (obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: BIC_PARTY_LIST_V
12.1.1
product: BIC - Customer Intelligence (obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: BIC_NEW_PARTY_LIST_V
12.1.1
product: BIC - Customer Intelligence (obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: BIC_SUMV_COGS
12.1.1
product: BIC - Customer Intelligence (obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: BIC_SUMV_SATISFACTION
12.1.1
product: BIC - Customer Intelligence (obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: BIC_PARTY_SUMMARY_V
12.1.1
product: BIC - Customer Intelligence (obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: BIC_DIMV_CUSTOMERS
12.1.1
product: BIC - Customer Intelligence (obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: BIC_SUMV_PROFITABILITY
12.1.1
product: BIC - Customer Intelligence (obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: BIC_SUMV_REVENUE
12.1.1
product: BIC - Customer Intelligence (obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: BIC_SUMV_ACTIVATION
12.1.1
product: BIC - Customer Intelligence (obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: BIC_SUMV_LIFECYCLE
12.1.1
product: BIC - Customer Intelligence (obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: BIC_SUMV_RETENTION
12.1.1
product: BIC - Customer Intelligence (obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: BIC_SUMV_ACQUISITION
12.1.1
product: BIC - Customer Intelligence (obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: BIC_PARTY_SUMM_V
12.1.1
product: BIC - Customer Intelligence (obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: BIC_PARTY_STATUS_SUMM_V
12.1.1
product: BIC - Customer Intelligence (obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: BIC_PARTY_LOYALTY_INDEX_V
12.1.1
product: BIC - Customer Intelligence (obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: BIC_PMF_SUMMARY_V
12.1.1
product: BIC - Customer Intelligence (obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: BIC_PARTY_SAT_INDEX_V
12.1.1
product: BIC - Customer Intelligence (obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: BIC_CUSTOMER_SUMMARY_V
12.1.1
product: BIC - Customer Intelligence (obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: BIC_CUSLIST_V
12.1.1
product: BIC - Customer Intelligence (obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: BIC_FCTV_SR_OPEN
12.1.1
product: BIC - Customer Intelligence (obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: BIC_FCTV_SR_CLOSE
12.1.1
product: BIC - Customer Intelligence (obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: BIC_CUSLIST_SUMMARY_V
12.1.1
product: BIC - Customer Intelligence (obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: BIC_PARTYLIST_SUMMARY_V
12.1.1
product: BIC - Customer Intelligence (obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: BIC_FCTV_SR_REWORKED
12.1.1
product: BIC - Customer Intelligence (obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: BIC_FCTV_SR_TOTAL
12.1.1
product: BIC - Customer Intelligence (obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: BIC_FCTV_SR_ESCALATED
12.1.1
product: BIC - Customer Intelligence (obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: BIC_FCTV_SR_RESPONSE
12.1.1
product: BIC - Customer Intelligence (obsolete) , implementation_dba_data: Not implemented in this database ,