Search Results as_interest_codes_v
Overview
AS_INTEREST_CODES_V is a read-only database view owned by the APPS schema in Oracle E-Business Suite 12.1.1 and 12.2.2. It belongs to the AS – Sales Foundation product family (Oracle Trade Management / Sales Foundation) and is documented in ETRM as "Interest Codes (single language, no org-specific information)." The view exposes interest code definitions in a single, translated language determined at runtime from the session, while deliberately omitting any organization-specific (multi-org / operating unit) context. It therefore serves as the primary reference point for reporting, integration, and validation logic that needs interest code identifiers along with their user-facing code and description, without the overhead of an organization security join.
Because the view is a single-language view keyed off USERENV('LANG'), a given query returns exactly one translated row per interest code, matching the language of the connected user session. This makes it suitable for forms, concurrent programs, and external integrations that must display descriptions in the user's own language.
Underlying Base Objects
The ETRM metadata confirms that AS_INTEREST_CODES_V is defined over two documented base objects, both accessed in the APPS schema through synonyms:
- AS_INTEREST_CODES_B — the base (non-translated) table holding all interest code attributes, keyed by INTEREST_CODE_ID.
- AS_INTEREST_CODES_TL — the translation table supplying the language-dependent CODE and DESCRIPTION columns.
The join is performed on INTEREST_CODE_ID, with the translation table filtered by T.LANGUAGE = USERENV('LANG'). All columns other than CODE and DESCRIPTION originate from AS_INTEREST_CODES_B. The view is documented as VALID and is intended purely for query access; inserts, updates, and deletes must target the base tables through their own APIs and DML rules.
Key Columns
- INTEREST_CODE_ID — primary identifier of the interest code; the join key between the _B and _TL tables.
- INTEREST_TYPE_ID — identifies the interest type the code is associated with.
- PARENT_INTEREST_CODE_ID — self-referencing pointer establishing hierarchical relationships between interest codes.
- MASTER_ENABLED_FLAG — the ENABLED_FLAG from AS_INTEREST_CODES_B, aliased as MASTER_ENABLED_FLAG at the master (base) level.
- CATEGORY_ID / CATEGORY_SET_ID — category and category set assignment for the interest code.
- PF_ITEM_ID / PF_ORGANIZATION_ID — price list / item and organization references, though the view is described as carrying no org-specific information.
- CURRENCY_CODE / PRICE — the currency and price value associated with the interest code.
- CODE / DESCRIPTION — the translated, user-facing interest code and its description, sourced from AS_INTEREST_CODES_TL.
- ATTRIBUTE_CATEGORY and ATTRIBUTE1–ATTRIBUTE15 — descriptive flexfield (DFF) context and segment columns.
- Audit columns — CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN, plus REQUEST_ID, PROGRAM_APPLICATION_ID, PROGRAM_ID, and PROGRAM_UPDATE_DATE for concurrent program traceability.
Common Use Cases and Queries
Typical uses include LOV population and validation in interest code maintenance forms, translated reports requiring the CODE and DESCRIPTION pair, and integration extracts feeding external pricing or finance systems. A basic translated listing:
SELECT interest_code_id, code, description, interest_type_id, master_enabled_flag FROM as_interest_codes_v WHERE master_enabled_flag = 'Y' ORDER BY code;SELECT interest_code_id, code, description, currency_code, price FROM as_interest_codes_v WHERE currency_code = :p_currency;SELECT c.interest_code_id, c.code, c.parent_interest_code_id FROM as_interest_codes_v c WHERE c.parent_interest_code_id IS NOT NULL;
Because the view resolves the session language automatically, no LANGUAGE predicate should be added to queries. Enablement and organization-scoped logic must be applied by the calling application, since the view supplies master-level data only.
-
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_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 ,
-
VIEW: APPS.PA_LEAD_CLASSIFICATIONS_V
12.1.1
-
VIEW: APPS.PA_LEAD_CLASSIFICATIONS_V
12.2.2
-
VIEW: APPS.AS_SECOND_INTERESTS_ACTIVE_V
12.2.2
-
VIEW: APPS.AS_INTERESTS_V
12.2.2
-
VIEW: APPS.AS_SECOND_INTERESTS_ACTIVE_V
12.1.1
-
View: AS_DEMO_PRODUCTS_V
12.1.1
product: AS - Sales Foundation , description: AS_DEMO_PRODUCTS_V , implementation_dba_data: Not implemented in this database ,
-
View: PA_LEAD_CLASSIFICATIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_LEAD_CLASSIFICATIONS_V, object_name:PA_LEAD_CLASSIFICATIONS_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_LEAD_CLASSIFICATIONS_V ,
-
VIEW: APPS.AST_CONTACT_CLASSIFICATION_V
12.2.2
-
VIEW: APPS.AS_CURRENT_ENVIRONMENT_V
12.1.1
-
VIEW: APPS.AS_INTERESTS_V
12.1.1
-
VIEW: APPS.EDW_ITEM_PROD_GRP_LCV
12.1.1
-
VIEW: APPS.AS_SITE_CLASSIFICATION_V
12.1.1
-
View: AS_DEMO_PRODUCTS_V
12.2.2
product: AS - Sales Foundation , description: AS_DEMO_PRODUCTS_V , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.AS_CURRENT_ENVIRONMENT_V
12.2.2
-
VIEW: APPS.AS_INTEREST_CODES_MC_V
12.1.1
-
View: PA_LEAD_CLASSIFICATIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_LEAD_CLASSIFICATIONS_V, object_name:PA_LEAD_CLASSIFICATIONS_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_LEAD_CLASSIFICATIONS_V ,
-
VIEW: APPS.AS_SITE_CLASSIFICATION_V
12.2.2
-
VIEW: APPS.AS_INTEREST_CODES_MC_V
12.2.2
-
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: APPS.AST_CONTACT_CLASSIFICATION_V
12.1.1
-
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: APPS.AS_PRIMARY_INTERESTS_ACTIVE_V
12.2.2
-
View: ASF_PRODUCT_INTERESTS_V
12.1.1
product: ASF - Sales Online , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.AS_PRIMARY_INTERESTS_ACTIVE_V
12.1.1
-
View: ASF_PRODUCT_INTERESTS_V
12.2.2
product: ASF - Sales Online , implementation_dba_data: Not implemented in this database ,
-
View: EDW_ITEM_PROD_GRP_LCV
12.2.2
product: ENG - Engineering , description: This view holds product group information , implementation_dba_data: Not implemented in this database ,
-
View: EDW_ITEM_PROD_GRP_LCV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ENG.EDW_ITEM_PROD_GRP_LCV, object_name:EDW_ITEM_PROD_GRP_LCV, status:VALID, product: ENG - Engineering , description: This view holds product group information , implementation_dba_data: APPS.EDW_ITEM_PROD_GRP_LCV ,
-
View: AS_CURRENT_ENVIRONMENT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AS.AS_CURRENT_ENVIRONMENT_V, object_name:AS_CURRENT_ENVIRONMENT_V, status:VALID, product: AS - Sales Foundation , description: Current Environment , implementation_dba_data: APPS.AS_CURRENT_ENVIRONMENT_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: 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_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_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_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: APPS.EDW_ITEM_PROD_CATG_LCV
12.1.1
-
View: AS_CURRENT_ENVIRONMENT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AS.AS_CURRENT_ENVIRONMENT_V, object_name:AS_CURRENT_ENVIRONMENT_V, status:VALID, product: AS - Sales Foundation , description: Current Environment , implementation_dba_data: APPS.AS_CURRENT_ENVIRONMENT_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_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 ,
-
SYNONYM: APPS.AS_INTEREST_CODES_TL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:AS_INTEREST_CODES_TL, status:VALID,
-
PACKAGE BODY: APPS.EDW_ITEMS_M_SIZE
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:EDW_ITEMS_M_SIZE, 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_PUB
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:AS_INTEREST_PUB, status:VALID,
-
PACKAGE BODY: APPS.AS_INTEREST_PUB
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:AS_INTEREST_PUB, status:VALID,
-
SYNONYM: APPS.AS_INTEREST_CODES_TL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:AS_INTEREST_CODES_TL, status:VALID,
-
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 ,
-
SYNONYM: APPS.AS_INTEREST_CODES_B
12.1.1
owner:APPS, object_type:SYNONYM, object_name:AS_INTEREST_CODES_B, status:VALID,
-
SYNONYM: APPS.AS_INTEREST_CODES_B
12.2.2
owner:APPS, object_type:SYNONYM, object_name:AS_INTEREST_CODES_B, status:VALID,
-
View: EDW_ITEM_PROD_CATG_LCV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ENG.EDW_ITEM_PROD_CATG_LCV, object_name:EDW_ITEM_PROD_CATG_LCV, status:VALID, product: ENG - Engineering , description: This view holds product category information , implementation_dba_data: APPS.EDW_ITEM_PROD_CATG_LCV ,