Search Results phone_line_type_meaning
Overview
CS_SR_HZ_CONT_PTS_P_PHONES_V is a Service (CS) module view owned by the APPS schema in Oracle E-Business Suite 12.1.1 and 12.2.2. Its documented purpose is to list all active primary telephone numbers recorded against party contact points. The view is a reporting and integration convenience object: rather than requiring callers to join HZ_CONTACT_POINTS to the AR_LOOKUPS lookup tables and manually decode phone formatting and lookup meanings, the view presents a denormalized, presentation-ready result set.
The view restricts its output to rows where CONTACT_POINT_TYPE equals 'PHONE' and OWNER_TABLE_NAME equals 'HZ_PARTIES', so it is scoped to phone contact points belonging to parties rather than to other owner entities such as organizations, locations, or contacts held on other tables. It is commonly consumed by Service Request (SR) and TeleService style functionality that needs to display or dial a party's primary phone number.
Underlying Base Objects
The documented ETRM metadata identifies two referenced base objects: AR_LOOKUPS (a view) and HZ_CONTACT_POINTS (referenced via a synonym). AR_LOOKUPS is referenced twice, using aliases AR and AR1, to resolve two distinct lookup types:
- AR with LOOKUP_TYPE = 'COMMUNICATION_TYPE' supplies the meaning for CONTACT_POINT_TYPE.
- AR1 with LOOKUP_TYPE = 'PHONE_LINE_TYPE' supplies the meaning for PHONE_LINE_TYPE, exposed as PHONE_LINE_TYPE_MEANING.
Both lookup joins are outer joins (indicated by the (+) syntax), so a phone contact point is still returned even when no matching lookup row exists. The driving table is HZ_CONTACT_POINTS, filtered to phone contact points owned by HZ_PARTIES.
Key Columns
- PHONE — A concatenated display string built from PHONE_COUNTRY_CODE, PHONE_AREA_CODE, and PHONE_NUMBER, with hyphen separators inserted only where the component values are non-null.
- PHONE_COUNTRY_CODE, PHONE_AREA_CODE, PHONE_NUMBER, PHONE_EXTENSION — The raw phone components, retained individually for formatting, validation, or dialing logic.
- CONT_POINT_TYPE_MEANING — The decoded meaning of CONTACT_POINT_TYPE from AR_LOOKUPS (COMMUNICATION_TYPE).
- PHONE_LINE_TYPE_MEANING — The decoded meaning of the underlying PHONE_LINE_TYPE lookup code from AR_LOOKUPS (PHONE_LINE_TYPE), such as values describing whether the line is a home, work, mobile, fax, or similar line category. This is the column most relevant to searches for "phone_line_type_meaning".
- OWNER_TABLE_ID — The identifier of the owning record, in this view the party identifier within HZ_PARTIES.
- CONTACT_POINT_ID — The unique key of the contact point row in HZ_CONTACT_POINTS.
- TIMEZONE_ID — The time zone associated with the contact point, useful for scheduling and outbound contact.
- CONTACT_POINT_TYPE, PRIMARY_FLAG, STATUS — The raw type, primary indicator, and status values carried from the base table.
- TRANSPOSED_PHONE_NUMBER — A reversed-order representation of the phone number, typically used for efficient suffix searching and "ends with" style queries.
Although the view name and description emphasize primary phones, the SELECT clause itself does not impose a PRIMARY_FLAG or STATUS filter in the documented view text; callers should apply those predicates explicitly when only active primary numbers are required.
Common Use Cases and Queries
Typical uses include resolving a party's primary phone for Service Request display, populating contact detail blocks, and validating that phone line type lookups are configured. A basic query by party is:
SELECT phone, phone_line_type_meaning, phone_extension FROM cs_sr_hz_cont_pts_p_phones_v WHERE owner_table_id = :party_id;SELECT contact_point_id, phone, cont_point_type_meaning FROM cs_sr_hz_cont_pts_p_phones_v WHERE contact_point_id = :contact_point_id;SELECT phone_line_type_meaning, COUNT(*) FROM cs_sr_hz_cont_pts_p_phones_v GROUP BY phone_line_type_meaning;
To honor the view's stated intent of returning only active primary phones, add predicates such as AND primary_flag = 'Y' AND status = 'A'. Because CONT_POINT_TYPE_MEANING and PHONE_LINE_TYPE_MEANING derive from outer joins, a null meaning indicates a missing or inactive AR_LOOKUPS entry rather than an absent phone record, which is a frequent diagnostic point when lookup-driven values fail to display.
-
View: CS_SR_HZ_CONT_PTS_P_PHONES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SR_HZ_CONT_PTS_P_PHONES_V, object_name:CS_SR_HZ_CONT_PTS_P_PHONES_V, status:VALID, product: CS - Service , description: This view lists all the active primary phones from HZ_CONTACT_POINTS. , implementation_dba_data: APPS.CS_SR_HZ_CONT_PTS_P_PHONES_V ,
-
View: CS_SR_HZ_CONT_PTS_P_PHONES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SR_HZ_CONT_PTS_P_PHONES_V, object_name:CS_SR_HZ_CONT_PTS_P_PHONES_V, status:VALID, product: CS - Service , description: This view lists all the active primary phones from HZ_CONTACT_POINTS. , implementation_dba_data: APPS.CS_SR_HZ_CONT_PTS_P_PHONES_V ,
-
VIEW: APPS.CS_SR_HZ_CONT_PTS_P_PHONES_V
12.2.2
-
VIEW: APPS.CS_SR_HZ_CONT_PTS_P_PHONES_V
12.1.1
-
VIEW: APPS.CS_SR_HZ_CONT_PTS_P_PHONES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SR_HZ_CONT_PTS_P_PHONES_V, object_name:CS_SR_HZ_CONT_PTS_P_PHONES_V, status:VALID,
-
View: IGS_PE_CONTACTS_DETAILS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PE_CONTACTS_DETAILS_V, object_name:IGS_PE_CONTACTS_DETAILS_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_PE_CONTACTS_DETAILS_V ,
-
View: IGS_PE_CONTACTS_DETAILS_V
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.CS_SR_HZ_CONT_PTS_P_PHONES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SR_HZ_CONT_PTS_P_PHONES_V, object_name:CS_SR_HZ_CONT_PTS_P_PHONES_V, status:VALID,
-
View: IGS_PE_CONTACTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PE_CONTACTS_V, object_name:IGS_PE_CONTACTS_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_PE_CONTACTS_V ,
-
View: IGS_PE_CONTACTS_V
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_PE_CONTACTS_DETAILS_V
12.1.1
-
VIEW: APPS.IGS_PE_CONTACTS_DETAILS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PE_CONTACTS_DETAILS_V, object_name:IGS_PE_CONTACTS_DETAILS_V, status:VALID,
-
VIEW: APPS.IGS_PE_CONTACTS_V
12.1.1
-
VIEW: APPS.IEX_CONTACT_POINTS_V
12.2.2
owner:APPS, object_type:VIEW, object_name:IEX_CONTACT_POINTS_V, status:VALID,
-
VIEW: APPS.IEX_CONTACT_POINTS_V
12.2.2
-
VIEW: APPS.IEX_CONTACT_POINTS_V
12.1.1
owner:APPS, object_type:VIEW, object_name:IEX_CONTACT_POINTS_V, status:VALID,
-
View: ASF_PHONE_CONTACT_POINTS_V
12.2.2
product: ASF - Sales Online , implementation_dba_data: Not implemented in this database ,
-
View: ASF_CONTACT_POINTS_V
12.1.1
product: ASF - Sales Online , implementation_dba_data: Not implemented in this database ,
-
View: ASF_CONTACT_POINTS_V
12.2.2
product: ASF - Sales Online , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_PE_CONTACTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PE_CONTACTS_V, object_name:IGS_PE_CONTACTS_V, status:VALID,
-
VIEW: APPS.IEX_CONTACT_POINTS_V
12.1.1
-
View: ASF_PHONE_CONTACT_POINTS_V
12.1.1
product: ASF - Sales Online , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.CSC_CC_CONTACT_POINTS_V
12.1.1
owner:APPS, object_type:VIEW, object_name:CSC_CC_CONTACT_POINTS_V, status:VALID,
-
VIEW: APPS.CSC_CC_CONTACT_POINTS_V
12.2.2
owner:APPS, object_type:VIEW, object_name:CSC_CC_CONTACT_POINTS_V, status:VALID,
-
VIEW: APPS.AST_CONTACT_POINTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_CONTACT_POINTS_V, object_name:AST_CONTACT_POINTS_V, status:VALID,
-
View: AST_CONTACT_POINTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_CONTACT_POINTS_V, object_name:AST_CONTACT_POINTS_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_CONTACT_POINTS_V ,
-
VIEW: APPS.AST_CONTACT_POINTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_CONTACT_POINTS_V, object_name:AST_CONTACT_POINTS_V, status:VALID,
-
View: AST_CONTACT_POINTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_CONTACT_POINTS_V, object_name:AST_CONTACT_POINTS_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_CONTACT_POINTS_V ,
-
PACKAGE: APPS.IEX_CUST_OVERVIEW_PVT
12.1.1
-
PACKAGE: APPS.IEX_CUST_OVERVIEW_PVT
12.2.2
-
APPS.IEX_CUST_OVERVIEW_PVT dependencies on ARPT_SQL_FUNC_UTIL
12.1.1
-
APPS.IEX_CUST_OVERVIEW_PVT dependencies on ARPT_SQL_FUNC_UTIL
12.2.2
-
APPS.IEX_CUST_OVERVIEW_PVT dependencies on HZ_CONTACT_POINTS
12.1.1
-
APPS.IEX_CUST_OVERVIEW_PVT SQL Statements
12.1.1
-
APPS.IEX_CUST_OVERVIEW_PVT dependencies on HZ_CONTACT_POINTS
12.2.2
-
APPS.IEX_CUST_OVERVIEW_PVT SQL Statements
12.2.2
-
APPS.IEX_CUST_OVERVIEW_PVT dependencies on HZ_PARTIES
12.1.1
-
APPS.IEX_CUST_OVERVIEW_PVT dependencies on HZ_PARTIES
12.2.2
-
PACKAGE BODY: APPS.IEX_CUST_OVERVIEW_PVT
12.1.1
-
PACKAGE BODY: APPS.IEX_CUST_OVERVIEW_PVT
12.2.2
-
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 - CS Tables and Views
12.1.1
description: Table to store web conference details for an SR. ,
-
eTRM - CS Tables and Views
12.2.2
-
eTRM - IGS Tables and Views
12.1.1
description: Holds applicant whose records are wrongly available . It is recommended that such applicant records are deleted from the system . It synchronizes with UCAS view 'ivStarW'. ,