Search Results web_type
Overview
APPS.OE_PRINT_CONT_POINTS_V is a reporting and integration view in Oracle E-Business Suite that exposes active contact point records associated specifically with parties. Positioned within the Oracle Order Management (OE) schema naming convention, the view is designed to support printing, correspondence, and outbound communication processes that require phone, web, and telex contact information. Because the view restricts its output to contact points whose owner is a party and whose status is active, consumers of the view receive a pre-filtered, ready-to-use result set without needing to apply the same predicates themselves. This makes it particularly useful in reporting contexts, interface programs, and concurrent requests where contact details must be retrieved reliably and consistently.
Underlying Base Objects
The view is defined over a single referenced base object, HZ_CONTACT_POINTS, which is exposed to the APPS schema through a synonym. HZ_CONTACT_POINTS is the central TCA (Trading Community Architecture) table that stores all contact point records across parties, locations, and organizations. OE_PRINT_CONT_POINTS_V narrows that broad population by applying three documented predicates in its defining query:
- OWNER_TABLE_NAME = 'HZ_PARTIES' — restricts the result set to contact points owned by party records, excluding those owned by other entities such as locations or organizations.
- STATUS = 'A' — restricts to active contact points only, filtering out inactive or logically deleted records.
- CONTACT_POINT_TYPE IN ('PHONE', 'WEB', 'TLX') — limits the result set to telephone, web, and telex contact point types, excluding other classifications such as email or fax where separately modeled.
Because it is a simple, non-aggregated view over a synonym, it inherits the columns and data types of HZ_CONTACT_POINTS directly and introduces no additional joins or derivations.
Key Columns
The view projects a defined column list from HZ_CONTACT_POINTS. The principal columns include:
- CONTACT_POINT_ID — the unique primary key identifier for each contact point record.
- CONTACT_POINT_TYPE — the classification of the contact point; limited by the view to PHONE, WEB, or TLX.
- STATUS — the record status; the view exposes only active ('A') records.
- OWNER_TABLE_NAME / OWNER_TABLE_ID — identify the owning entity; the view fixes the owner table to HZ_PARTIES and carries the corresponding party identifier.
- PRIMARY_FLAG — indicates whether the contact point is the primary one for its owner and type.
- PHONE_COUNTRY_CODE, PHONE_AREA_CODE, PHONE_NUMBER, PHONE_EXTENSION, PHONE_LINE_TYPE — the component fields describing telephone contact points.
- TELEX_NUMBER — the telex identifier for telex-type contact points.
- WEB_TYPE, URL — the classification and address for web-type contact points. The WEB_TYPE column, which the user searched for, distinguishes categories of web contact points and is the field most relevant to web-based correspondence and integration scenarios.
Common Use Cases and Queries
Typical uses include retrieving phone or web contact information for a party during order printing, generating outbound correspondence, and populating integration payloads. A representative query retrieves all web contact points for a specific party:
SELECT contact_point_id, web_type, url, primary_flag FROM apps.oe_print_cont_points_v WHERE owner_table_id = :party_id AND contact_point_type = 'WEB';SELECT contact_point_id, phone_number, phone_area_code, primary_flag FROM apps.oe_print_cont_points_v WHERE owner_table_id = :party_id AND contact_point_type = 'PHONE' AND primary_flag = 'Y';
Because the view already enforces the party-owner and active-status filters, queries against it remain concise while returning only operationally valid contact points suitable for printing and communication processes.
-
VIEW: APPS.OE_PRINT_CONT_POINTS_V
12.2.2
-
VIEW: OSM.AS_IMP_CNT_PNT_INTERFACE#
12.2.2
-
VIEW: APPS.OE_PRINT_CONT_POINTS_V
12.1.1
-
View: OE_PRINT_CONT_POINTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_PRINT_CONT_POINTS_V, object_name:OE_PRINT_CONT_POINTS_V, status:VALID, product: ONT - Order Management , description: This view is used to print the details of the various modes of communication for the Customer Contact , implementation_dba_data: APPS.OE_PRINT_CONT_POINTS_V ,
-
View: OE_PRINT_CONT_POINTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_PRINT_CONT_POINTS_V, object_name:OE_PRINT_CONT_POINTS_V, status:VALID, product: ONT - Order Management , description: This view is used to print the details of the various modes of communication for the Customer Contact , implementation_dba_data: APPS.OE_PRINT_CONT_POINTS_V ,
-
Lookup Type: HZ_DQM_CPT_ATTR_TYPE
12.2.2
product: AR - Receivables , meaning: DQM Contact Point types for contact point attributes ,
-
VIEW: AR.HZ_CONTACT_POINTS#
12.2.2
-
VIEW: AR.HZ_IMP_CONTACTPTS_INT#
12.2.2
-
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 ,
-
Lookup Type: HZ_DQM_CPT_ATTR_TYPE
12.1.1
product: AR - Receivables , meaning: DQM Contact Point types for contact point attributes ,
-
VIEW: IMC.IMC_CSV_INTERFACE_FIELDS#
12.2.2
-
VIEW: APPS.ASO_I_CONTACT_POINTS_V
12.1.1
-
VIEW: APPS.ASO_I_CONTACT_POINTS_V
12.2.2
-
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 ,
-
VIEW: APPS.OE_PRINT_CONT_POINTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_PRINT_CONT_POINTS_V, object_name:OE_PRINT_CONT_POINTS_V, status:VALID,
-
VIEW: APPS.OE_PRINT_CONT_POINTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_PRINT_CONT_POINTS_V, object_name:OE_PRINT_CONT_POINTS_V, status:VALID,
-
Lookup Type: COMPL_URL
12.1.1
product: IMC - Customers Online , meaning: Select Attributes for Web , description: Select Attributes for Web ,
-
VIEW: OSM.AS_IMP_CNT_PNT_INTERFACE#
12.2.2
owner:OSM, object_type:VIEW, object_name:AS_IMP_CNT_PNT_INTERFACE#, status:VALID,
-
Lookup Type: COMPL_URL
12.2.2
product: IMC - Customers Online , meaning: Select Attributes for Web , description: Select Attributes for Web ,
-
View: IBE_SH_QUOTE_URL_V
12.1.1
product: IBE - iStore , implementation_dba_data: Not implemented in this database ,
-
View: IBE_SH_QUOTE_URL_V
12.2.2
product: IBE - iStore , implementation_dba_data: Not implemented in this database ,
-
TYPE: APPS.RRS_SITE_URL_REC
12.1.1
owner:APPS, object_type:TYPE, object_name:RRS_SITE_URL_REC, status:VALID,
-
TABLE: AR.HZ_CONTACT_POINT_VAL_GT
12.1.1
owner:AR, object_type:TABLE, object_name:HZ_CONTACT_POINT_VAL_GT, status:VALID,
-
VIEW: APPS.IEX_CONTACT_POINTS_V
12.1.1
owner:APPS, object_type:VIEW, object_name:IEX_CONTACT_POINTS_V, status:VALID,
-
VIEW: APPS.AMS_P_EMAIL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_P_EMAIL_V, object_name:AMS_P_EMAIL_V, status:VALID,
-
TABLE: OSM.AS_IMP_CNT_PNT_INTERFACE
12.2.2
owner:OSM, object_type:TABLE, fnd_design_data:AS.AS_IMP_CNT_PNT_INTERFACE, object_name:AS_IMP_CNT_PNT_INTERFACE, status:VALID,
-
TABLE: AR.HZ_CONTACT_POINT_VAL_GT
12.2.2
owner:AR, object_type:TABLE, fnd_design_data:AR.HZ_CONTACT_POINT_VAL_GT, object_name:HZ_CONTACT_POINT_VAL_GT, status:VALID,
-
TYPE: APPS.RRS_SITE_URL_REC
12.2.2
owner:APPS, object_type:TYPE, object_name:RRS_SITE_URL_REC, status:VALID,
-
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
-
TABLE: OSM.AS_IMP_CNT_PNT_INTERFACE
12.1.1
owner:OSM, object_type:TABLE, fnd_design_data:AS.AS_IMP_CNT_PNT_INTERFACE, object_name:AS_IMP_CNT_PNT_INTERFACE, status:VALID,
-
VIEW: APPS.AMS_P_EMAIL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_P_EMAIL_V, object_name:AMS_P_EMAIL_V, status:VALID,
-
VIEW: APPS.IEX_CONTACT_POINTS_V
12.2.2
owner:APPS, object_type:VIEW, object_name:IEX_CONTACT_POINTS_V, status:VALID,
-
VIEW: APPS.AMS_P_FAX_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_P_FAX_V, object_name:AMS_P_FAX_V, status:VALID,
-
VIEW: APPS.AR_PHONES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_PHONES_V, object_name:AR_PHONES_V, status:VALID,
-
View: IGS_OR_PHONES_V
12.2.2
product: IGS - Student System (Obsolete) , description: Describes Institution Phone Details , implementation_dba_data: Not implemented in this database ,
-
VIEW: AR.HZ_IMP_CONTACTPTS_INT#
12.2.2
owner:AR, object_type:VIEW, object_name:HZ_IMP_CONTACTPTS_INT#, status:VALID,
-
View: IGS_OR_PHONES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_OR_PHONES_V, object_name:IGS_OR_PHONES_V, status:VALID, product: IGS - Student System , description: Describes Institution Phone Details , implementation_dba_data: APPS.IGS_OR_PHONES_V ,
-
View: JTF_PARTY_CONT_POINTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_PARTY_CONT_POINTS_V, object_name:JTF_PARTY_CONT_POINTS_V, status:VALID, product: JTF - CRM Foundation , description: JTF_PARTY_CONT_POINTS_V retrieves all contact points for parties without any restriction. , implementation_dba_data: APPS.JTF_PARTY_CONT_POINTS_V ,
-
VIEW: APPS.AR_PHONES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_PHONES_V, object_name:AR_PHONES_V, status:VALID,
-
VIEW: APPS.IEX_CONTACT_POINTS_V
12.2.2
-
VIEW: APPS.IGS_OR_PHONES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_OR_PHONES_V, object_name:IGS_OR_PHONES_V, status:VALID,
-
VIEW: APPS.AMS_P_PHONE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_P_PHONE_V, object_name:AMS_P_PHONE_V, status:VALID,
-
View: JTF_CONTACT_POINTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_CONTACT_POINTS_V, object_name:JTF_CONTACT_POINTS_V, status:VALID, product: JTF - CRM Foundation , description: Contact details of each party, like Phone and Email , implementation_dba_data: APPS.JTF_CONTACT_POINTS_V ,
-
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: JTF_PARTY_CONT_POINTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_PARTY_CONT_POINTS_V, object_name:JTF_PARTY_CONT_POINTS_V, status:VALID, product: JTF - CRM Foundation , description: JTF_PARTY_CONT_POINTS_V retrieves all contact points for parties without any restriction. , implementation_dba_data: APPS.JTF_PARTY_CONT_POINTS_V ,
-
View: CSC_HZ_CONTACT_POINTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSC.CSC_HZ_CONTACT_POINTS_V, object_name:CSC_HZ_CONTACT_POINTS_V, status:VALID, product: CSC - Customer Care , description: View of HZ_CONTACT_POINTS, HZ_PARTIES. This view is used to get contact details along with customers details , implementation_dba_data: APPS.CSC_HZ_CONTACT_POINTS_V ,
-
VIEW: APPS.AMS_P_PHONE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_P_PHONE_V, object_name:AMS_P_PHONE_V, status:VALID,
-
VIEW: APPS.AMS_P_FAX_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_P_FAX_V, object_name:AMS_P_FAX_V, status:VALID,