Search Results interest_code_id
Overview
The AS_INTEREST_CODES_TL table is a core data object within the Oracle E-Business Suite (EBS) Sales Foundation module, specifically designed to support the Multi-Lingual Support (MLS) architecture. It functions as a translation table, storing language-specific textual descriptions for interest codes defined in the base table, AS_INTEREST_CODES_B. This structure separates language-invariant data (like IDs and codes) from translatable attributes (like names and descriptions), enabling a single EBS installation to support multiple languages for sales-related interest classifications used in processes such as lead and opportunity management.
Key Information Stored
The table's primary purpose is to hold translated text, which is uniquely identified by a composite key. The most critical columns include INTEREST_CODE_ID, which is the foreign key linking to the base table's primary identifier; LANGUAGE, which holds the language code (e.g., 'US', 'FR', 'DE') for the translation; and CODE, which stores the actual interest code value. The table also contains the translated NAME and DESCRIPTION columns for the interest code in the specified language. The SOURCE_LANG column indicates the original language of the record, which is typically the installation's base language. The table enforces data integrity through two unique constraints: a primary key on (INTEREST_CODE_ID, LANGUAGE) and a unique key on (INTEREST_CODE_ID, CODE, LANGUAGE).
Common Use Cases and Queries
The primary use case is retrieving interest code descriptions in a user's session language for UI display, reports, and data extracts. A typical query joins the translation table with its base table, filtering by the desired language and often the session language via the NLS_LANGUAGE database parameter. For example, to get all active interest codes in French, one might use:
- SELECT b.CODE, tl.NAME, tl.DESCRIPTION FROM AS_INTEREST_CODES_B b, AS_INTEREST_CODES_TL tl WHERE b.INTEREST_CODE_ID = tl.INTEREST_CODE_ID AND tl.LANGUAGE = 'FR' AND b.ENABLED_FLAG = 'Y';
Another common pattern is used in seeded data migration or upgrade scripts, where data is inserted into this table for each supported language. Reporting on the availability of translations for a given set of interest codes is also a frequent administrative task.
Related Objects
AS_INTEREST_CODES_TL has a direct and fundamental relationship with the AS_INTEREST_CODES_B table. The foreign key AS_INTEREST_CODES_TL.INTEREST_CODE_ID references AS_INTEREST_CODES_B, forming the core link between a translatable attribute and its base definition. This is a classic EBS MLS table pair. In application logic, this table is accessed through views that automatically handle language filtering, such as AS_INTEREST_CODES_VL (the "VL" suffix denotes a view for a specific language). Developers and integrators should utilize these public views or the relevant Oracle APIs for any data operations to ensure proper MLS behavior and data integrity.
-
Table: AS_INTEREST_CODES_TL
12.1.1
owner:OSM, object_type:TABLE, fnd_design_data:AS.AS_INTEREST_CODES_TL, object_name:AS_INTEREST_CODES_TL, status:VALID, product: AS - Sales Foundation , description: For MLS - Translated columns of Interest Codes. , implementation_dba_data: OSM.AS_INTEREST_CODES_TL ,
-
Table: AS_INTEREST_CODES_TL
12.2.2
owner:OSM, object_type:TABLE, fnd_design_data:AS.AS_INTEREST_CODES_TL, object_name:AS_INTEREST_CODES_TL, status:VALID, product: AS - Sales Foundation , description: For MLS - Translated columns of Interest Codes. , implementation_dba_data: OSM.AS_INTEREST_CODES_TL ,
-
View: AS_DEFAULT_PURCHASES_V
12.1.1
product: AS - Sales Foundation , description: Currently not in use , implementation_dba_data: Not implemented in this database ,
-
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 ,
-
View: AS_INV_ITEM_LOV_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AS.AS_INV_ITEM_LOV_V, object_name:AS_INV_ITEM_LOV_V, status:VALID, product: AS - Sales Foundation , description: This view provides Inventory Item and associated Sales category IDs. , implementation_dba_data: APPS.AS_INV_ITEM_LOV_V ,
-
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 ,
-
View: AS_MRP_INTERFACE_LINES_V
12.2.2
product: AS - Sales Foundation , description: Manufacturing resource planning interface lines view , implementation_dba_data: Not implemented in this database ,
-
View: AS_INV_ITEM_LOV_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AS.AS_INV_ITEM_LOV_V, object_name:AS_INV_ITEM_LOV_V, status:VALID, product: AS - Sales Foundation , description: This view provides Inventory Item and associated Sales category IDs. , implementation_dba_data: APPS.AS_INV_ITEM_LOV_V ,
-
View: AS_MRP_INTERFACE_LINES_V
12.1.1
product: AS - Sales Foundation , description: Manufacturing resource planning interface lines view , implementation_dba_data: Not implemented in this database ,
-
View: AS_SCRIPT_ANS_ACT_CL_V
12.1.1
product: AS - Sales Foundation , description: Create lead answer actions view , implementation_dba_data: Not implemented in this database ,
-
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 ,
-
View: AS_INTEREST_CODES
12.2.2
product: AS - Sales Foundation , description: This is single-org only from _ALL table. , implementation_dba_data: Not implemented in this database ,
-
View: AS_SCRIPT_ANS_ACT_CL_V
12.2.2
product: AS - Sales Foundation , description: Create lead answer actions view , implementation_dba_data: Not implemented in this database ,
-
View: AS_QUOTA_PROFILES_V
12.2.2
product: AS - Sales Foundation , implementation_dba_data: Not implemented in this database ,
-
View: AS_SCRIPT_ANSWER_ACTIONS_V
12.1.1
product: AS - Sales Foundation , description: Script actual answers view , implementation_dba_data: Not implemented in this database ,
-
View: AS_QUOTA_PROFILES_V
12.1.1
product: AS - Sales Foundation , implementation_dba_data: Not implemented in this database ,
-
View: AS_SALES_QUOTAS_V
12.1.1
product: AS - Sales Foundation , description: Sales quotas view , implementation_dba_data: Not implemented in this database ,
-
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: AS_SALES_QUOTAS_V
12.2.2
product: AS - Sales Foundation , description: Sales quotas view , implementation_dba_data: Not implemented in this database ,
-
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_INTEREST_CODES
12.1.1
product: AS - Sales Foundation , description: This is single-org only from _ALL table. , implementation_dba_data: Not implemented in this database ,
-
View: AS_SCRIPT_ANSWER_ACTIONS_V
12.2.2
product: AS - Sales Foundation , description: Script actual answers view , implementation_dba_data: Not implemented in this database ,
-
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: AS_OPP_LINE_ADJS_BASE_V
12.2.2
product: AS - Sales Foundation , description: Displays the base information of a lead line , implementation_dba_data: Not implemented in this database ,
-
View: AS_OPP_LINE_ADJS_BASE_V
12.1.1
product: AS - Sales Foundation , description: Displays the base information of a lead line , implementation_dba_data: Not implemented in this database ,
-
View: AS_VIEW_FORECAST_V
12.1.1
product: AS - Sales Foundation , description: Forecast detail view , implementation_dba_data: Not implemented in this database ,
-
View: AS_VIEW_FORECAST_V
12.2.2
product: AS - Sales Foundation , description: Forecast detail view , implementation_dba_data: Not implemented in this database ,
-
Table: AS_INTEREST_CODES_MC
12.2.2
owner:OSM, object_type:TABLE, fnd_design_data:AS.AS_INTEREST_CODES_MC, object_name:AS_INTEREST_CODES_MC, status:VALID, product: AS - Sales Foundation , description: for recording a price and currency for a product family. , implementation_dba_data: OSM.AS_INTEREST_CODES_MC ,
-
Table: AS_INTEREST_CODES_ALL
12.1.1
owner:OSM, object_type:TABLE, fnd_design_data:AS.AS_INTEREST_CODES_ALL, object_name:AS_INTEREST_CODES_ALL, status:VALID, product: AS - Sales Foundation , description: Defines interest codes with multi-org flag columns , implementation_dba_data: OSM.AS_INTEREST_CODES_ALL ,
-
Table: AS_INTEREST_CODES_MC
12.1.1
owner:OSM, object_type:TABLE, fnd_design_data:AS.AS_INTEREST_CODES_MC, object_name:AS_INTEREST_CODES_MC, status:VALID, product: AS - Sales Foundation , description: for recording a price and currency for a product family. , implementation_dba_data: OSM.AS_INTEREST_CODES_MC ,
-
View: AS_QUOTAS_FORECASTS_V
12.1.1
product: AS - Sales Foundation , description: Sales quotas for forecast view , implementation_dba_data: Not implemented in this database ,
-
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: ASBV_INTEREST_CODES
12.2.2
product: AS - Sales Foundation , implementation_dba_data: Not implemented in this database ,
-
Table: AS_INTEREST_CODES_ALL
12.2.2
owner:OSM, object_type:TABLE, fnd_design_data:AS.AS_INTEREST_CODES_ALL, object_name:AS_INTEREST_CODES_ALL, status:VALID, product: AS - Sales Foundation , description: Defines interest codes with multi-org flag columns , implementation_dba_data: OSM.AS_INTEREST_CODES_ALL ,
-
View: ASBV_INTEREST_CODES
12.1.1
product: AS - Sales Foundation , implementation_dba_data: Not implemented in this database ,
-
View: AS_QUOTAS_FORECASTS_V
12.2.2
product: AS - Sales Foundation , description: Sales quotas for forecast view , implementation_dba_data: Not implemented in this database ,
-
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: 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 ,
-
View: AS_INTEREST_CODES_MC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AS.AS_INTEREST_CODES_MC_V, object_name:AS_INTEREST_CODES_MC_V, status:VALID, product: AS - Sales Foundation , description: View to show price and curreny code for a product family item associated with a secondary inyterest code. , implementation_dba_data: APPS.AS_INTEREST_CODES_MC_V ,
-
View: AS_INTEREST_CODES_MC_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AS.AS_INTEREST_CODES_MC_V, object_name:AS_INTEREST_CODES_MC_V, status:VALID, product: AS - Sales Foundation , description: View to show price and curreny code for a product family item associated with a secondary inyterest code. , implementation_dba_data: APPS.AS_INTEREST_CODES_MC_V ,
-
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 ,
-
View: ASFV_INTEREST_CODES
12.2.2
product: AS - Sales Foundation , implementation_dba_data: Not implemented in this database ,
-
Table: AS_INTEREST_CODES_B
12.1.1
owner:OSM, object_type:TABLE, fnd_design_data:AS.AS_INTEREST_CODES_B, object_name:AS_INTEREST_CODES_B, status:VALID, product: AS - Sales Foundation , description: Define Interest code - Base table , implementation_dba_data: OSM.AS_INTEREST_CODES_B ,
-
View: AS_INTEREST_CODES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AS.AS_INTEREST_CODES_V, object_name:AS_INTEREST_CODES_V, status:VALID, product: AS - Sales Foundation , description: Interest Codes (single language, no org-specific information) , implementation_dba_data: APPS.AS_INTEREST_CODES_V ,
-
View: AS_INTEREST_CODES_ALL_VL
12.1.1
product: AS - Sales Foundation , description: Interest Codes (all orgs, single language view) , implementation_dba_data: Not implemented in this database ,
-
View: AS_INTEREST_CODES_ALL_VL
12.2.2
product: AS - Sales Foundation , description: Interest Codes (all orgs, single language view) , implementation_dba_data: Not implemented in this database ,
-
View: ASFV_INTEREST_CODES
12.1.1
product: AS - Sales Foundation , implementation_dba_data: Not implemented in this database ,
-
View: AS_INTEREST_CODES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AS.AS_INTEREST_CODES_V, object_name:AS_INTEREST_CODES_V, status:VALID, product: AS - Sales Foundation , description: Interest Codes (single language, no org-specific information) , implementation_dba_data: APPS.AS_INTEREST_CODES_V ,
-
Table: AS_INTEREST_CODES_B
12.2.2
owner:OSM, object_type:TABLE, fnd_design_data:AS.AS_INTEREST_CODES_B, object_name:AS_INTEREST_CODES_B, status:VALID, product: AS - Sales Foundation , description: Define Interest code - Base table , implementation_dba_data: OSM.AS_INTEREST_CODES_B ,