Search Results ast_cont_classification_int_v
Overview
The AST_CONT_CLASSIFICATION_INT_V view is a TeleSales (AST) reporting and integration object owned by the APPS schema in Oracle EBS 12.1.1 and 12.2.2. It exposes a denormalized, presentation-ready projection of contact-level interest records held in AS_INTERESTS_ALL, restricted to interests whose INTEREST_USE_CODE equals 'CONTACT_INTEREST'. In other words, the view pre-filters the interests table down to the classification-type rows used to associate product categories with contacts, and joins in the descriptive attributes (status meaning, location, territory, and category hierarchy parentage) needed by TeleSales screens, concurrent programs, and downstream integrations. Because it is a view rather than a table, it contains no independent data — every column is derived at query time from the underlying base objects, which keeps classification data consistent with its transactional source without duplication.
Underlying Base Objects
The view is defined over six documented objects:
- AS_INTERESTS_ALL (synonym) — the driving table, holding interest/classification rows keyed by
INTEREST_ID. - AS_LOOKUPS (view) — supplies the
MEANINGofSTATUS_CODEvia an outer join onLOOKUP_TYPE = 'INTEREST_STATUS'. - ENI_PROD_DEN_HRCHY_PARENTS_V (view) — provides
CONCAT_CAT_PARENTAGE, the concatenated category hierarchy path, outer-joined on category and category set. - HZ_PARTY_SITES (synonym) — links
ADDRESS_IDto a party site and itsLOCATION_ID. - HZ_LOCATIONS (synonym) — supplies address and geographic attributes (city, state, province, county, country, postal code, address lines).
- FND_TERRITORIES_VL (view) — resolves the territory short name from the location country via an outer join.
All joins to lookups, locations, sites, categories, and territories are outer joins, ensuring an interest row is never suppressed solely because a descriptive attribute is missing.
Key Columns
- INTEREST_ID — primary identifier of the interest/classification record.
- INTEREST_USE_CODE — always
'CONTACT_INTEREST'in this view; it is the defining filter that distinguishes contact classifications from other interest usages. - PRODUCT_CATEGORY_ID / PRODUCT_CAT_SET_ID — the category being associated with the contact and the set it belongs to.
- CONTACT_ID / CUSTOMER_ID / ADDRESS_ID — the contact, customer, and address context of the classification.
- STATUS_CODE and the derived lookup
MEANING— the interest status code and its translatable display meaning. - NVL(CONCAT_CAT_PARENTAGE, PRODUCT_CATEGORY_ID) — the category hierarchy path, falling back to the category ID when no parentage exists.
- CITY, STATE, PROVINCE, COUNTY, COUNTRY, POSTAL_CODE, ADDRESS1–4, TERRITORY_SHORT_NAME — address and territory descriptors sourced from HZ and FND objects.
- ATTRIBUTE_CATEGORY and ATTRIBUTE1–15 — the standard EBS descriptive flexfield columns.
- Audit columns (CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY, REQUEST_ID, PROGRAM_ID, etc.) — standard WHO columns for traceability.
Common Use Cases and Queries
Typical uses include TeleSales classification reporting, denormalized extracts for analytics, and troubleshooting of contact/category associations. A common requirement is to search by INTEREST_USE_CODE — the term that led here — though note the view already restricts that column to 'CONTACT_INTEREST':
- List classifications for a contact, with hierarchy path and status meaning:
SELECT interest_id, contact_id, product_category_id, status_code, meaning, territory_short_name FROM apps.ast_cont_classification_int_v WHERE contact_id = :p_contact_id;
- Filter explicitly on the use code (redundant but harmless, and useful when the query is later adapted to
AS_INTERESTS_ALL):
SELECT interest_id, product_category_id, city, state FROM apps.ast_cont_classification_int_v WHERE interest_use_code = 'CONTACT_INTEREST' AND status_code = 'ACTIVE';
- Join to
AS_INTERESTS_ALLor other AST views usingINTEREST_IDwhen non-classification interest types are also needed, since this view provides only theCONTACT_INTERESTsubset.
-
View: AST_CONT_CLASSIFICATION_INT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_CONT_CLASSIFICATION_INT_V, object_name:AST_CONT_CLASSIFICATION_INT_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_CONT_CLASSIFICATION_INT_V ,
-
View: AST_CONT_CLASSIFICATION_INT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_CONT_CLASSIFICATION_INT_V, object_name:AST_CONT_CLASSIFICATION_INT_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_CONT_CLASSIFICATION_INT_V ,
-
SYNONYM: APPS.AS_INTERESTS_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:AS_INTERESTS_ALL, status:VALID,
-
SYNONYM: APPS.AS_INTERESTS_ALL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:AS_INTERESTS_ALL, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
VIEW: APPS.ENI_PROD_DEN_HRCHY_PARENTS_V
12.2.2
owner:APPS, object_type:VIEW, object_name:ENI_PROD_DEN_HRCHY_PARENTS_V, status:VALID,
-
VIEW: APPS.ENI_PROD_DEN_HRCHY_PARENTS_V
12.1.1
owner:APPS, object_type:VIEW, object_name:ENI_PROD_DEN_HRCHY_PARENTS_V, status:VALID,
-
VIEW: APPS.AST_CONT_CLASSIFICATION_INT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_CONT_CLASSIFICATION_INT_V, object_name:AST_CONT_CLASSIFICATION_INT_V, status:VALID,
-
VIEW: APPS.AST_CONT_CLASSIFICATION_INT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_CONT_CLASSIFICATION_INT_V, object_name:AST_CONT_CLASSIFICATION_INT_V, status:VALID,
-
VIEW: APPS.AS_LOOKUPS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AS.AS_LOOKUPS, object_name:AS_LOOKUPS, status:VALID,
-
VIEW: APPS.AS_LOOKUPS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AS.AS_LOOKUPS, object_name:AS_LOOKUPS, status:VALID,
-
VIEW: APPS.FND_TERRITORIES_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:FND.FND_TERRITORIES_VL, object_name:FND_TERRITORIES_VL, status:VALID,
-
VIEW: APPS.FND_TERRITORIES_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FND.FND_TERRITORIES_VL, object_name:FND_TERRITORIES_VL, status:VALID,
-
SYNONYM: APPS.HZ_LOCATIONS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:HZ_LOCATIONS, status:VALID,
-
SYNONYM: APPS.HZ_LOCATIONS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:HZ_LOCATIONS, status:VALID,
-
SYNONYM: APPS.HZ_PARTY_SITES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:HZ_PARTY_SITES, status:VALID,
-
SYNONYM: APPS.HZ_PARTY_SITES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:HZ_PARTY_SITES, status:VALID,
-
eTRM - AST Tables and Views
12.2.2
description: All available web searches ,
-
eTRM - AST Tables and Views
12.1.1
description: All available web searches ,
-
eTRM - AS Tables and Views
12.2.2
description: - Retrofitted ,
-
eTRM - AS Tables and Views
12.1.1
description: - Retrofitted ,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
eTRM - AST Tables and Views
12.1.1
description: All available web searches ,
-
eTRM - AST Tables and Views
12.2.2
description: All available web searches ,
-
eTRM - FND Tables and Views
12.1.1
description: No longer used ,
-
eTRM - AS Tables and Views
12.2.2
description: - Retrofitted ,
-
eTRM - AS Tables and Views
12.1.1
description: - Retrofitted ,
-
eTRM - FND Tables and Views
12.1.1
description: No longer used ,