Search Results as_interest_types_vl
Overview
AS_INTEREST_TYPES_VL is a seeded, customer-facing view owned by the APPS schema in Oracle E-Business Suite, belonging to the AS (Sales Foundation) product family. As its description states, it presents interest types within a single organization and single language context. In the EBS multi-org and multi-lingual architecture, the "VL" suffix denotes a view that joins the base table (_B) and translation table (_TL) while resolving the current session's organization and language. This view is the principal reporting and integration surface for the Interest Type lookup used by Oracle Sales, TeleSales, and Oracle Marketing (TCA/AS foundation) to classify contacts, leads, and opportunities according to expressed customer interests, such as product preferences or hobbies.
The object is reported as VALID in the ETRM metadata for 12.1.1 and 12.2.2, and its definition is consistent across both releases.
Underlying Base Objects
The view is defined over three base objects, all synonyms resolved to APPS tables in the AS schema:
- AS_INTEREST_TYPES_B — the base (non-translated) table holding interest type IDs, descriptive flags, seeding attributes, and audit columns.
- AS_INTEREST_TYPES_TL — the translation table storing the language-dependent
INTEREST_TYPEname andDESCRIPTION, keyed byLANGUAGE = USERENV('LANG'). - AS_INTEREST_TYPES_ALL — the multi-org (operating unit) extension table carrying
ORG_IDand an override ofENABLED_FLAG. The join to this table is an outer join (MOT), meaning interest types with no org-specific row are still returned.
The organization filter uses USERENV('CLIENT_INFO') to derive the current operating unit, comparing it to MOT.ORG_ID with an NVL fallback to -99, which is the standard EBS multi-org security predicate applied to org-striped views.
Key Columns
- INTEREST_TYPE_ID — primary key linking all three base tables.
- INTEREST_TYPE and DESCRIPTION — the translated, user-facing name and text, sourced from
_TL. - ENABLED_FLAG — the effective enablement status, computed as
NVL(MOT.ENABLED_FLAG, 'Y'), so an org-level override governs, otherwise the value defaults to enabled. - ORG_ID — the operating unit from the
_ALLtable, or NULL for global interest types. - MASTER_ENABLED_FLAG — the base-table
ENABLED_FLAG, aliased to distinguish it from the effective flag. - COMPANY_CLASSIFICATION_FLAG, CONTACT_INTEREST_FLAG, LEAD_CLASSIFICATION_FLAG, EXPECTED_PURCHASE_FLAG, CURRENT_ENVIRONMENT_FLAG — usage indicators that determine which business processes (company classification, contact interest, lead classification, expected purchase, current environment) may consume the interest type.
- PRODUCT_CATEGORY_ID and PRODUCT_CAT_SET_ID — optional linkage to product categories and the category set, supporting interest types tied to specific products.
- LAST_UPDATE_DATE, LAST_UPDATED_BY, CREATION_DATE, CREATED_BY, LAST_UPDATE_LOGIN — standard WHO audit columns propagated from the base table.
Common Use Cases and Queries
Typical applications include populating interest-type LOVs on contact and lead forms, filtering interest types for a specific classification process, and extracting the translated list for data migration or integration.
- List all enabled interest types for the current session's org and language:
SELECT interest_type_id, interest_type, description FROM as_interest_types_vl WHERE enabled_flag = 'Y' ORDER BY interest_type;
- Retrieve interest types eligible for lead classification:
SELECT interest_type_id, interest_type FROM as_interest_types_vl WHERE lead_classification_flag = 'Y' AND enabled_flag = 'Y';
- Identify interest types linked to a product category:
SELECT interest_type_id, interest_type, product_category_id FROM as_interest_types_vl WHERE product_category_id IS NOT NULL;
- Reconcile effective versus master enablement:
SELECT interest_type, org_id, enabled_flag, master_enabled_flag FROM as_interest_types_vl WHERE enabled_flag <> master_enabled_flag;
Because the view applies language and org predicates automatically, reports and integrations can query it directly without reproducing multi-org or translation joins, ensuring consistent, session-aware results across Oracle EBS 12.1.1 and 12.2.2.
-
View: AS_INTEREST_TYPES_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AS.AS_INTEREST_TYPES_VL, object_name:AS_INTEREST_TYPES_VL, status:VALID, product: AS - Sales Foundation , description: Interest types (single org, single language view) , implementation_dba_data: APPS.AS_INTEREST_TYPES_VL ,
-
View: AS_INTEREST_TYPES_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AS.AS_INTEREST_TYPES_VL, object_name:AS_INTEREST_TYPES_VL, status:VALID, product: AS - Sales Foundation , description: Interest types (single org, single language view) , implementation_dba_data: APPS.AS_INTEREST_TYPES_VL ,
-
View: AS_ALL_INTEREST_TYPES_V
12.2.2
product: AS - Sales Foundation , implementation_dba_data: Not implemented in this database ,
-
View: AS_ALL_INTEREST_TYPES_V
12.1.1
product: AS - Sales Foundation , implementation_dba_data: Not implemented in this database ,
-
APPS.AML_CATEGORY_MIGRATION SQL Statements
12.2.2
-
APPS.AML_CATEGORY_MIGRATION SQL Statements
12.1.1
-
VIEW: APPS.AS_SECOND_INTERESTS_ACTIVE_V
12.2.2
-
VIEW: APPS.AS_INTEREST_CATEGORY_SETS_V
12.1.1
-
VIEW: APPS.AS_INTEREST_CATEGORY_SETS_V
12.2.2
-
VIEW: APPS.AS_PRIMARY_INTERESTS_ACTIVE_V
12.2.2
-
VIEW: APPS.AS_PRIMARY_INTERESTS_ACTIVE_V
12.1.1
-
VIEW: APPS.AS_SECOND_INTERESTS_ACTIVE_V
12.1.1
-
VIEW: APPS.AST_PURCH_LINES_V
12.1.1
-
VIEW: APPS.AST_PURCH_LINES_V
12.2.2
-
APPS.PV_CATEGORY_MIGRATION SQL Statements
12.2.2
-
VIEW: APPS.AS_OPP_CLASSIFICATION_V
12.1.1
-
VIEW: APPS.AS_INTERESTS_V
12.2.2
-
APPS.AS_INTEREST_TYPES_PUB SQL Statements
12.1.1
-
APPS.PV_CATEGORY_MIGRATION SQL Statements
12.1.1
-
VIEW: APPS.AS_OPP_CLASSIFICATION_V
12.2.2
-
VIEW: APPS.AS_INTERESTS_V
12.1.1
-
VIEW: APPS.AMS_LEAD_ACCOUNTS_V
12.1.1
-
VIEW: APPS.AS_CURRENT_ENVIRONMENT_V
12.1.1
-
APPS.AS_INTEREST_TYPES_PUB SQL Statements
12.2.2
-
VIEW: APPS.AS_CURRENT_ENVIRONMENT_V
12.2.2
-
VIEW: APPS.AMS_LEAD_ACCOUNTS_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
-
VIEW: APPS.AST_CONTACT_CLASSIFICATION_V
12.2.2
-
View: AS_PRIMARY_INTERESTS_ACTIVE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AS.AS_PRIMARY_INTERESTS_ACTIVE_V, object_name:AS_PRIMARY_INTERESTS_ACTIVE_V, status:VALID, product: AS - Sales Foundation , description: Active primary interest codes view , implementation_dba_data: APPS.AS_PRIMARY_INTERESTS_ACTIVE_V ,
-
View: AS_INTEREST_CATEGORY_SETS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AS.AS_INTEREST_CATEGORY_SETS_V, object_name:AS_INTEREST_CATEGORY_SETS_V, status:VALID, product: AS - Sales Foundation , description: Interest category sets view , implementation_dba_data: APPS.AS_INTEREST_CATEGORY_SETS_V ,
-
VIEW: APPS.AS_INTEREST_TYPES_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AS.AS_INTEREST_TYPES_VL, object_name:AS_INTEREST_TYPES_VL, status:VALID,
-
VIEW: APPS.AS_INTEREST_TYPES_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AS.AS_INTEREST_TYPES_VL, object_name:AS_INTEREST_TYPES_VL, status:VALID,
-
View: AS_PRIMARY_INTERESTS_ACTIVE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AS.AS_PRIMARY_INTERESTS_ACTIVE_V, object_name:AS_PRIMARY_INTERESTS_ACTIVE_V, status:VALID, product: AS - Sales Foundation , description: Active primary interest codes view , implementation_dba_data: APPS.AS_PRIMARY_INTERESTS_ACTIVE_V ,
-
PACKAGE BODY: APPS.AS_INTEREST_TYPES_PUB
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:AS_INTEREST_TYPES_PUB, status:VALID,
-
SYNONYM: APPS.AS_INTEREST_TYPES_TL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:AS_INTEREST_TYPES_TL, status:VALID,
-
View: AS_INTEREST_CATEGORY_SETS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AS.AS_INTEREST_CATEGORY_SETS_V, object_name:AS_INTEREST_CATEGORY_SETS_V, status:VALID, product: AS - Sales Foundation , description: Interest category sets view , implementation_dba_data: APPS.AS_INTEREST_CATEGORY_SETS_V ,
-
PACKAGE BODY: APPS.AML_CATEGORY_MIGRATION
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:AML_CATEGORY_MIGRATION, status:VALID,
-
SYNONYM: APPS.AS_INTEREST_TYPES_B
12.2.2
owner:APPS, object_type:SYNONYM, object_name:AS_INTEREST_TYPES_B, status:VALID,
-
View: AS_SECOND_INTERESTS_ACTIVE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AS.AS_SECOND_INTERESTS_ACTIVE_V, object_name:AS_SECOND_INTERESTS_ACTIVE_V, status:VALID, product: AS - Sales Foundation , description: Active secondary interests view , implementation_dba_data: APPS.AS_SECOND_INTERESTS_ACTIVE_V ,
-
SYNONYM: APPS.AS_INTEREST_TYPES_TL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:AS_INTEREST_TYPES_TL, status:VALID,
-
View: AS_SCRIPT_ANS_ACT_PI_V
12.1.1
product: AS - Sales Foundation , description: Product interest answer actions view , implementation_dba_data: Not implemented in this database ,
-
SYNONYM: APPS.AS_INTEREST_TYPES_B
12.1.1
owner:APPS, object_type:SYNONYM, object_name:AS_INTEREST_TYPES_B, status:VALID,
-
View: AS_SCRIPT_ANS_ACT_PI_V
12.2.2
product: AS - Sales Foundation , description: Product interest answer actions view , implementation_dba_data: Not implemented in this database ,
-
View: AS_DEFAULT_PURCHASES_V
12.2.2
product: AS - Sales Foundation , description: Currently not in use , implementation_dba_data: Not implemented in this database ,
-
PACKAGE BODY: APPS.AS_INTEREST_TYPES_PUB
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:AS_INTEREST_TYPES_PUB, status:VALID,
-
View: AS_FST_SALES_CATEGORIES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AS.AS_FST_SALES_CATEGORIES_V, object_name:AS_FST_SALES_CATEGORIES_V, status:VALID, product: AS - Sales Foundation , description: This view refers to AS_INTEREST_TYPES_TL instead of view AS_INTEREST_TYPES_VL for the performance tuning considerations. Every interest type id in AS_FST_SALES_CATEGORIES will have corresponding entry in AS_INTEREST_TYPES_TL , implementation_dba_data: APPS.AS_FST_SALES_CATEGORIES_V ,
-
View: AS_SECOND_INTERESTS_ACTIVE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AS.AS_SECOND_INTERESTS_ACTIVE_V, object_name:AS_SECOND_INTERESTS_ACTIVE_V, status:VALID, product: AS - Sales Foundation , description: Active secondary interests view , implementation_dba_data: APPS.AS_SECOND_INTERESTS_ACTIVE_V ,
-
View: IGS_RC_I_PRG_PKGS_V
12.1.1
product: IGS - Student System , description: Reduction of Package Items by Inquiry Program , implementation_dba_data: Not implemented in this database ,