Search Results as_interests
Overview
AS_INTERESTS is a multi-org secured view owned by the APPS schema within the AS (Sales Foundation) product family of Oracle E-Business Suite. It exposes customer interest records, which capture the products, product categories, or buying preferences associated with a customer, contact, address, or lead. The view presents interests in a reporting-friendly, operating-unit-scoped form, allowing applications and integrations to query interest data without addressing the underlying table's multi-org implementation details directly.
In EBS 12.1.1 and 12.2.2, the object carries a status of VALID and remains part of the standard Sales Foundation data model. Its primary role is to serve as the read interface for interest data used by Oracle Sales, Trade Management, and related modules. Because the view is defined over a multi-org table, it supplies the ORG_ID column that identifies the operating unit under which each interest record was created, making it suitable for both single-org and cross-org reporting where organization security is enforced.
Underlying Base Objects
The view is defined exclusively over the synonym AS_INTERESTS_ALL, which resolves to the multi-org base table storing interest records. AS_INTERESTS is the filtered, org-secured projection of that table. In practice, the "_ALL" object holds rows for every operating unit, while AS_INTERESTS applies the organization security policy so that a query returns only the records visible to the current operating unit context. This separation follows the standard EBS multi-org architecture: the base table retains all rows and the view layers on the MOAC (Multi-Org Access Control) predicate through the ORG_ID column.
No additional joins or base tables are introduced at the view definition level; all columns are drawn directly from AS_INTERESTS_ALL. Any enrichment with customer, contact, or product category descriptions must be performed by the caller through separate joins.
Key Columns
- INTEREST_ID — Primary key uniquely identifying each interest record.
- INTEREST_USE_CODE and INTEREST_TYPE_ID — Classify the nature and category of the interest, distinguishing how the interest is used and which defined interest type applies.
- CUSTOMER_ID, ADDRESS_ID, LEAD_ID, CONTACT_ID — The parties or entities to which the interest is linked, enabling association with customers, locations, leads, or contacts.
- PRIMARY_INTEREST_CODE_ID and SECONDARY_INTEREST_CODE_ID — Codes capturing the primary and secondary interest values.
- STATUS_CODE — Lifecycle status of the interest record.
- PRODUCT_CATEGORY_ID and PRODUCT_CAT_SET_ID — Product category and its category set, tying interests to catalog structure.
- ORG_ID — Operating unit identifier that drives multi-org security.
- ATTRIBUTE_CATEGORY and ATTRIBUTE1 through ATTRIBUTE15 — Flexfield descriptive attributes for extensibility.
- Audit columns — CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN, REQUEST_ID, PROGRAM_APPLICATION_ID, PROGRAM_ID, PROGRAM_UPDATE_DATE.
Common Use Cases and Queries
Typical uses include reporting on customer buying preferences, profiling leads and contacts for sales campaigns, and extracting interest data into data warehouses or integration feeds. The multi-org view is preferred over the _ALL table whenever operating unit security must be honored.
Retrieve interests for a specific customer:
SELECT interest_id, customer_id, interest_type_id,
primary_interest_code_id, status_code, org_id
FROM as_interests
WHERE customer_id = :p_customer_id;
List active interests within the current operating unit, joined to descriptive category data:
SELECT i.interest_id, i.interest_use_code, i.product_category_id,
i.primary_interest_code_id, i.status_code
FROM as_interests i
WHERE i.status_code = 'ACTIVE'
ORDER BY i.creation_date DESC;
Count interests by operating unit for trend reporting:
SELECT org_id, COUNT(*) interest_count FROM as_interests GROUP BY org_id;
All three patterns rely on the view's org filtering to restrict results automatically, while the interest, party, category, and attribute columns provide the granularity needed for detailed analysis.
-
View: AS_INTERESTS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AS.AS_INTERESTS, object_name:AS_INTERESTS, status:VALID, product: AS - Sales Foundation , description: Interests (multi-org) , implementation_dba_data: APPS.AS_INTERESTS ,
-
View: AS_INTERESTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AS.AS_INTERESTS, object_name:AS_INTERESTS, status:VALID, product: AS - Sales Foundation , description: Interests (multi-org) , implementation_dba_data: APPS.AS_INTERESTS ,
-
VIEW: APPS.AS_OPP_CLASSIFICATION_V
12.2.2
-
VIEW: APPS.AS_INTERESTS_V
12.1.1
-
VIEW: APPS.AS_OPP_CLASSIFICATION_V
12.1.1
-
VIEW: APPS.AS_INTERESTS_V
12.2.2
-
VIEW: APPS.AST_CONTACT_CLASSIFICATION_V
12.2.2
-
VIEW: APPS.AS_SITE_CLASSIFICATION_V
12.1.1
-
VIEW: APPS.AS_SITE_CLASSIFICATION_V
12.2.2
-
VIEW: APPS.AST_CONTACT_CLASSIFICATION_V
12.1.1
-
APPS.AS_INTERESTS_PKG SQL Statements
12.2.2
-
APPS.AS_INTERESTS_PKG SQL Statements
12.1.1
-
SYNONYM: APPS.AS_INTERESTS_ALL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:AS_INTERESTS_ALL, status:VALID,
-
PACKAGE BODY: APPS.AS_INTERESTS_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:AS_INTERESTS_PKG, status:VALID,
-
PACKAGE BODY: APPS.AS_INTERESTS_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:AS_INTERESTS_PKG, status:VALID,
-
SYNONYM: APPS.AS_INTERESTS_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:AS_INTERESTS_ALL, status:VALID,
-
APPS.JTF_TERRITORY_CUSTOM SQL Statements
12.1.1
-
APPS.JTF_TERRITORY_CUSTOM SQL Statements
12.2.2
-
View: AS_OPP_CLASSIFICATION_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AS.AS_OPP_CLASSIFICATION_V, object_name:AS_OPP_CLASSIFICATION_V, status:VALID, product: AS - Sales Foundation , description: Sales opportunity classifications view , implementation_dba_data: APPS.AS_OPP_CLASSIFICATION_V ,
-
12.1.1 DBA Data
12.1.1
-
PACKAGE BODY: APPS.AS_INTEREST_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:AS_INTEREST_PVT, status:VALID,
-
PACKAGE BODY: APPS.AS_INTEREST_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:AS_INTEREST_PVT, status:VALID,
-
View: AS_INTERESTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AS.AS_INTERESTS_V, object_name:AS_INTERESTS_V, status:VALID, product: AS - Sales Foundation , description: Interests view , implementation_dba_data: APPS.AS_INTERESTS_V ,
-
View: AS_OPP_CLASSIFICATION_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AS.AS_OPP_CLASSIFICATION_V, object_name:AS_OPP_CLASSIFICATION_V, status:VALID, product: AS - Sales Foundation , description: Sales opportunity classifications view , implementation_dba_data: APPS.AS_OPP_CLASSIFICATION_V ,
-
View: AS_INTERESTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AS.AS_INTERESTS_V, object_name:AS_INTERESTS_V, status:VALID, product: AS - Sales Foundation , description: Interests view , implementation_dba_data: APPS.AS_INTERESTS_V ,
-
12.2.2 DBA Data
12.2.2
-
View: AS_SITE_CLASSIFICATION_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AS.AS_SITE_CLASSIFICATION_V, object_name:AS_SITE_CLASSIFICATION_V, status:VALID, product: AS - Sales Foundation , description: Site Classification View , implementation_dba_data: APPS.AS_SITE_CLASSIFICATION_V ,
-
View: AST_CONTACT_CLASSIFICATION_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_CONTACT_CLASSIFICATION_V, object_name:AST_CONTACT_CLASSIFICATION_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_CONTACT_CLASSIFICATION_V ,
-
View: AS_SITE_CLASSIFICATION_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AS.AS_SITE_CLASSIFICATION_V, object_name:AS_SITE_CLASSIFICATION_V, status:VALID, product: AS - Sales Foundation , description: Site Classification View , implementation_dba_data: APPS.AS_SITE_CLASSIFICATION_V ,
-
View: AST_CONTACT_CLASSIFICATION_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_CONTACT_CLASSIFICATION_V, object_name:AST_CONTACT_CLASSIFICATION_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_CONTACT_CLASSIFICATION_V ,
-
VIEW: APPS.AS_OPP_CLASSIFICATION_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AS.AS_OPP_CLASSIFICATION_V, object_name:AS_OPP_CLASSIFICATION_V, status:VALID,
-
PACKAGE BODY: APPS.AS_INTERESTS_PKG
12.1.1
-
PACKAGE BODY: APPS.AS_INTERESTS_PKG
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
VIEW: APPS.AS_OPP_CLASSIFICATION_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AS.AS_OPP_CLASSIFICATION_V, object_name:AS_OPP_CLASSIFICATION_V, status:VALID,
-
VIEW: APPS.AS_INTERESTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AS.AS_INTERESTS, object_name:AS_INTERESTS, status:VALID,
-
VIEW: APPS.AS_INTERESTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AS.AS_INTERESTS_V, object_name:AS_INTERESTS_V, status:VALID,
-
VIEW: APPS.AS_INTERESTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AS.AS_INTERESTS_V, object_name:AS_INTERESTS_V, status:VALID,
-
VIEW: APPS.AS_INTERESTS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AS.AS_INTERESTS, object_name:AS_INTERESTS, status:VALID,
-
VIEW: APPS.AS_SITE_CLASSIFICATION_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AS.AS_SITE_CLASSIFICATION_V, object_name:AS_SITE_CLASSIFICATION_V, status:VALID,
-
VIEW: APPS.AS_SITE_CLASSIFICATION_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AS.AS_SITE_CLASSIFICATION_V, object_name:AS_SITE_CLASSIFICATION_V, status:VALID,
-
PACKAGE BODY: APPS.JTF_TERRITORY_CUSTOM
12.2.2
-
VIEW: APPS.AST_CONTACT_CLASSIFICATION_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_CONTACT_CLASSIFICATION_V, object_name:AST_CONTACT_CLASSIFICATION_V, status:VALID,
-
VIEW: APPS.AST_CONTACT_CLASSIFICATION_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_CONTACT_CLASSIFICATION_V, object_name:AST_CONTACT_CLASSIFICATION_V, status:VALID,
-
PACKAGE BODY: APPS.JTF_TERRITORY_CUSTOM
12.1.1
-
APPS.AS_INTEREST_PVT SQL Statements
12.1.1
-
APPS.AS_INTEREST_PVT SQL Statements
12.2.2
-
APPS.AS_INTERESTS_PKG dependencies on AS_INTERESTS
12.1.1
-
PACKAGE: APPS.JTF_QUALIFIER_PUB
12.2.2