Search Results igs_rc_i_ent_stats
Overview
The AS_INTEREST_TYPES_B table is a core master data table within the Oracle E-Business Suite Sales Foundation (AS) module. It serves as the base table for defining and storing the fundamental types of customer interests or product interests used throughout the sales and marketing lifecycle. As a base table, it holds the primary, language-independent transactional data. Its primary role is to act as a central reference point, ensuring data integrity and consistency for interest type classification across numerous sales-related entities, from leads and opportunities to quotas and sales credits.
Key Information Stored
While the provided metadata does not list specific column names beyond the primary key, the structure and relationships define its critical data elements. The central column is INTEREST_TYPE_ID, which is the unique identifier (primary key) for each interest type record. This ID is the foreign key referenced by over fifteen other tables in the schema. Typical columns in such a base table would include CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY for auditing, and a CODE or NAME field for the interest type. The table's description, "Define Interest types," indicates it stores the master list of classifications, such as "New Product Interest," "Service Renewal," or "Upgrade Opportunity," which categorize sales activities and forecasts.
Common Use Cases and Queries
This table is primarily used in setup, reporting, and data validation. Administrators use it to maintain the list of valid interest types during application configuration. Common operational queries involve joining this table to transactional data to generate meaningful reports. For instance, to analyze lead lines by their interest type, a query would join AS_SALES_LEAD_LINES to AS_INTEREST_TYPES_B. A typical reporting pattern is retrieving all active interest types or counting opportunities grouped by interest type for pipeline analysis. Sample SQL to list all interest types referenced in opportunities might be:
- SELECT it.INTEREST_TYPE_ID, it.NAME, COUNT(o.opportunity_id)
- FROM AS_INTEREST_TYPES_B it, AS_INTERESTS_ALL o
- WHERE it.INTEREST_TYPE_ID = o.INTEREST_TYPE_ID
- GROUP BY it.INTEREST_TYPE_ID, it.NAME;
Related Objects
The AS_INTEREST_TYPES_B table has extensive relationships, underscoring its foundational role. It is directly referenced by a significant number of foreign keys from transactional and setup tables. Key related objects include the translation table AS_INTEREST_TYPES_TL (for multilingual support) and the _ALL variant AS_INTEREST_TYPES_ALL (for multi-org data). Major transactional tables that depend on it are AS_INTERESTS_ALL (opportunities), AS_LEAD_LINES_ALL, AS_SALES_QUOTAS, and AS_SALES_CREDITS_DENORM. Important setup tables like AS_INTEREST_CODES_B, AS_INTEREST_STATUSES, and AS_QUOTA_PROFILES also link to it, defining rules and profiles based on interest type. This wide integration highlights that the interest type is a critical dimension for segmentation, forecasting, and compensation within Oracle Sales.
-
Table: AS_INTEREST_TYPES_B
12.2.2
owner:OSM, object_type:TABLE, fnd_design_data:AS.AS_INTEREST_TYPES_B, object_name:AS_INTEREST_TYPES_B, status:VALID, product: AS - Sales Foundation , description: Define Interest types - base table , implementation_dba_data: OSM.AS_INTEREST_TYPES_B ,
-
Table: AS_INTEREST_TYPES_B
12.1.1
owner:OSM, object_type:TABLE, fnd_design_data:AS.AS_INTEREST_TYPES_B, object_name:AS_INTEREST_TYPES_B, status:VALID, product: AS - Sales Foundation , description: Define Interest types - base table , implementation_dba_data: OSM.AS_INTEREST_TYPES_B ,