Search Results aso_i_contact_points_v
Overview
The view ASO_I_CONTACT_POINTS_V is an Oracle E-Business Suite database object owned by the APPS schema and categorized under the ASO - Order Capture product family. It exposes contact point information—telephone numbers, email addresses, URLs, and related communication attributes—used by order capture and fulfillment processes. The view is a thin, denormalized projection defined over the Oracle Trading Community Architecture (TCA) entity HZ_CONTACT_POINTS, providing ASO-specific access to the master contact point records maintained centrally within TCA.
Its role is primarily integration and reporting: rather than duplicating contact point data within ASO-specific tables, the view surfaces the authoritative TCA rows in a form suitable for order capture inquiries, order import interfaces, and downstream reporting. Because it is a view and not a table, it carries no independent storage, and its column set reflects the structure of HZ_CONTACT_POINTS at the version for which it was registered. In Oracle EBS 12.1.1 and 12.2.2, this object is listed as VALID and is available for use in custom reports, BI Publisher data models, and PL/SQL packages executed against the APPS schema.
Underlying Base Objects
The ETRM metadata documents a single referenced base object: HZ_CONTACT_POINTS, accessed through a synonym. The view text is a straightforward SELECT of columns from that table with no joins, aggregations, filters, or functions. Consequently, the relationship between the view and HZ_CONTACT_POINTS is one of direct column passthrough: each row in the view corresponds exactly to one row in the base table, and the ROWID of the base row is exposed as ROWID within the view.
This design means the view inherits the TCA data model's semantics and constraints. Any validation, status transition, or merge behavior applied to contact points through TCA APIs is reflected immediately, since no materialization or copy occurs. From an upgrade and patching perspective, the view is dependent on the continued presence and structure of HZ_CONTACT_POINTS; changes introduced to the base table through TCA patch levels can affect the view's exposed columns.
Key Columns
Because the view mirrors HZ_CONTACT_POINTS, the columns fall into several functional groups:
- Identity and type:
CONTACT_POINT_IDuniquely identifies a contact point;CONTACT_POINT_TYPEdistinguishes the communication channel (for example telephone, email, or web).STATUSandPRIMARY_FLAGindicate the record state and whether it is the preferred contact point. - Ownership:
OWNER_TABLE_NAMEandOWNER_TABLE_IDestablish the TCA entity (such as a party or location) to which the contact point belongs. - Telephone attributes:
TELEPHONE_TYPEclassifies the telephone line (for example business, mobile, or fax), and is the column most relevant to users searching by telephone classification. It is accompanied byPHONE_COUNTRY_CODE,PHONE_AREA_CODE,PHONE_NUMBER,PHONE_EXTENSION,PHONE_LINE_TYPE, andPHONE_TOUCH_TONE_TYPE_FLAG. - Electronic and other channels:
EMAIL_ADDRESS,EMAIL_FORMAT,WEB_TYPE,URL, andTELEX_NUMBERcover non-telephone communication methods. - Usage controls:
DO_NOT_USE_FLAG,DO_NOT_USE_REASON,BEST_TIME_TO_CONTACT_START,BEST_TIME_TO_CONTACT_END, andLAST_CONTACT_DT_TIMEcapture preference and compliance information. - Audit and descriptive flexfield attributes: standard WHO columns (
CREATION_DATE,CREATED_BY,LAST_UPDATE_DATE,LAST_UPDATED_BY,LAST_UPDATE_LOGIN), concurrent program columns, andATTRIBUTE_CATEGORYthroughATTRIBUTE20. - Integration:
ORIG_SYSTEM_REFERENCEsupports cross-system identification of the source record.
Common Use Cases and Queries
Typical scenarios include retrieving contact details for a customer during order entry, validating do-not-use restrictions before outbound communication, and extracting contact data for interfaces. The following query returns telephone contact points of a specific type for a given owner:
SELECT contact_point_id, owner_table_id, telephone_type, phone_country_code, phone_area_code, phone_number, phone_extension, primary_flag, do_not_use_flagFROM aso_i_contact_points_vWHERE contact_point_type = 'PHONE'AND telephone_type = :p_telephone_typeAND owner_table_name = :p_owner_tableAND owner_table_id = :p_owner_id;
To list only active, preferred contact points, a report can filter on STATUS = 'A' and PRIMARY_FLAG = 'Y'. Because the view is a direct projection, no additional joins to HZ_CONTACT_POINTS are required, and ROWID may be retained for row-level identification. When TELEPHONE_TYPE values are reported, they correspond to the TCA lookup values configured for telephone classifications, so reporting queries should account for site-specific lookup customization.
-
View: ASO_I_CONTACT_POINTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ASO.ASO_I_CONTACT_POINTS_V, object_name:ASO_I_CONTACT_POINTS_V, status:VALID, product: ASO - Order Capture , description: view based on hz_contact_points , implementation_dba_data: APPS.ASO_I_CONTACT_POINTS_V ,
-
View: ASO_I_CONTACT_POINTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ASO.ASO_I_CONTACT_POINTS_V, object_name:ASO_I_CONTACT_POINTS_V, status:VALID, product: ASO - Order Capture , description: view based on hz_contact_points , implementation_dba_data: APPS.ASO_I_CONTACT_POINTS_V ,
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
PACKAGE BODY: APPS.ASO_VALIDATE_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:ASO_VALIDATE_PVT, status:VALID,
-
PACKAGE BODY: APPS.ASO_VALIDATE_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:ASO_VALIDATE_PVT, status:VALID,
-
View: ASO_QUOTE_HEADERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ASO.ASO_QUOTE_HEADERS_V, object_name:ASO_QUOTE_HEADERS_V, status:VALID, product: ASO - Order Capture , description: quotations , implementation_dba_data: APPS.ASO_QUOTE_HEADERS_V ,
-
View: ASO_QUOTE_HEADERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ASO.ASO_QUOTE_HEADERS_V, object_name:ASO_QUOTE_HEADERS_V, status:VALID, product: ASO - Order Capture , description: quotations , implementation_dba_data: APPS.ASO_QUOTE_HEADERS_V ,
-
View: XNC_QUOTE_HEADERS_V
12.2.2
product: XNC - Sales for Communications (Obsolete) , description: XNC_QUOTE_HEADERS_V retrieves all quote header detail. , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.ASO_I_CONTACT_POINTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ASO.ASO_I_CONTACT_POINTS_V, object_name:ASO_I_CONTACT_POINTS_V, status:VALID,
-
VIEW: APPS.ASO_I_CONTACT_POINTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ASO.ASO_I_CONTACT_POINTS_V, object_name:ASO_I_CONTACT_POINTS_V, status:VALID,
-
View: XNC_QUOTE_HEADERS_V
12.1.1
product: XNC - Sales for Communications (Obsolete) , description: XNC_QUOTE_HEADERS_V retrieves all quote header detail. , implementation_dba_data: Not implemented in this database ,
-
APPS.ASO_VALIDATE_PVT dependencies on ASO_I_CONTACT_POINTS_V
12.1.1
-
SYNONYM: APPS.HZ_CONTACT_POINTS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:HZ_CONTACT_POINTS, status:VALID,
-
APPS.ASO_VALIDATE_PVT dependencies on ASO_I_CONTACT_POINTS_V
12.2.2
-
SYNONYM: APPS.HZ_CONTACT_POINTS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:HZ_CONTACT_POINTS, status:VALID,
-
APPS.ASO_VALIDATE_PVT SQL Statements
12.2.2
-
APPS.ASO_VALIDATE_PVT SQL Statements
12.1.1
-
eTRM - ASO Tables and Views
12.2.2
description: This tables is used to log messages during the migration in Order Capture. ,
-
eTRM - ASO Tables and Views
12.1.1
description: This tables is used to log messages during the migration in Order Capture. ,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
PACKAGE BODY: APPS.ASO_VALIDATE_PVT
12.1.1
-
eTRM - ASO Tables and Views
12.1.1
description: This tables is used to log messages during the migration in Order Capture. ,
-
PACKAGE BODY: APPS.ASO_VALIDATE_PVT
12.2.2
-
eTRM - ASO Tables and Views
12.2.2
description: This tables is used to log messages during the migration in Order Capture. ,