Search Results subject_party_number
Overview
APPS.JTF_TASK_PARTY_CONTACTS_V is a reporting and integration view in the Oracle E-Business Suite Trading Community Architecture (TCA) data model. It presents party-to-party contact relationship information, resolving a subject party (the party being contacted) together with the related party (the contact or object of the relationship) into a single, denormalized row. The view is owned by APPS and is defined over the HZ_PARTIES, HZ_RELATIONSHIPS, HZ_RELATIONSHIP_TYPES, HZ_CONTACT_POINTS, HZ_ORG_CONTACTS, and HZ_CODE_ASSIGNMENTS tables.
The name of the view suggests it originally served the JTF (Sales/TeleSales foundation) task and activity model, where a task or interaction is associated with parties and their designated contacts. In Oracle EBS 12.1.1 and 12.2.2, the view remains a convenient object for retrieving contact details tied to a party relationship without writing the full multi-table join manually. Reports, custom concurrent programs, and outbound integrations that require a flattened party contact list typically query this view rather than the base TCA tables directly.
Underlying Base Objects
The view is defined over the following documented base objects, joined as follows:
- HZ_RELATIONSHIPS (REL) — the driving table, restricted to rows where DIRECTIONAL_FLAG = 'F', SUBJECT_TABLE_NAME = 'HZ_PARTIES', and OBJECT_TABLE_NAME = 'HZ_PARTIES'. It supplies relationship identifiers, dates, status, and the subject/object party keys.
- HZ_PARTIES (PARTY_SUBJECT) — aliased as the subject party; joined via REL.SUBJECT_ID = PARTY_SUBJECT.PARTY_ID. Returns party number, party name, and person name attributes.
- HZ_PARTIES (PARTY_REL) — aliased as the related party; joined via REL.PARTY_ID = PARTY_REL.PARTY_ID. Supplies email and postal address attributes.
- HZ_RELATIONSHIP_TYPES and HZ_CODE_ASSIGNMENTS — an EXISTS subquery restricts results to relationship types assigned to the relationship type group
PARTY_REL_GRP_CONTACTS. - HZ_CONTACT_POINTS (HCP) — outer-joined to the related party for the primary phone contact point (CONTACT_POINT_TYPE = 'PHONE', PRIMARY_FLAG = 'Y').
- HZ_ORG_CONTACTS — supplies job title for organizational contacts.
Key Columns
- SUBJECT_PARTY_ID, SUBJECT_PARTY_NUMBER, SUBJECT_PARTY_NAME — identifiers and name of the party that is the subject of the relationship.
- PERSON_FIRST_NAME, PERSON_LAST_NAME, PERSON_NAME_SUFFIX, PERSON_TITLE, KNOWN_AS — person-level name attributes for the subject party.
- START_DATE, END_DATE, STATUS — effective dating and status of the relationship row.
- SUBJECT_ID, OBJECT_ID, PARTY_ID, RELATIONSHIP_ID, RELATIONSHIP_TYPE — relationship keys enabling joins back to HZ_RELATIONSHIPS or further TCA entities.
- EMAIL_ADDRESS, ADDRESS1–ADDRESS4, CITY, STATE, POSTAL_CODE, COUNTRY — contact details of the related party.
- PHONE_COUNTRY_CODE, PHONE_AREA_CODE, PHONE_NUMBER, PHONE_EXTENSION — primary phone of the related party.
- JOB_TITLE — organizational contact job title.
Common Use Cases and Queries
Typical scenarios include retrieving all contact relationships for a given subject party, populating an outbound contact list, and driving customer-facing reports where the contact phone, email, and address are needed in one row.
- List all contacts for a specific subject party:
SELECT subject_party_name, person_first_name, person_last_name, email_address, phone_number, job_title FROM apps.jtf_task_party_contacts_v WHERE subject_party_id = :p_party_id; - Retrieve contact details by relationship type:
SELECT subject_party_number, relationship_type, party_id, phone_number, email_address FROM apps.jtf_task_party_contacts_v WHERE relationship_type = :p_rel_type; - Report active contacts as of a date:
SELECT subject_party_name, person_last_name, city, country FROM apps.jtf_task_party_contacts_v WHERE TRUNC(SYSDATE) BETWEEN start_date AND NVL(end_date, SYSDATE);
Because the view exposes the PARTY_SUBJECT alias columns and the underlying HZ_PARTIES columns, consumers should be aware that the primary phone and address columns originate from the related party (PARTY_REL) through outer joins, and may therefore be null when no primary phone or related party record exists.
-
VIEW: APPS.JTF_TASK_PARTY_CONTACTS_V
12.1.1
-
View: JTF_PARTY_ALL_CONTACTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_PARTY_ALL_CONTACTS_V, object_name:JTF_PARTY_ALL_CONTACTS_V, status:VALID, product: JTF - CRM Foundation , description: View all contacts, using hz_relationship table as the driving table. The view expose data for subject and object party. Please note that the view does not join with hz_org_contacts. , implementation_dba_data: APPS.JTF_PARTY_ALL_CONTACTS_V ,
-
VIEW: APPS.JTF_PARTY_ALL_CONTACTS_V
12.1.1
-
View: JTF_PARTY_ALL_CONTACTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_PARTY_ALL_CONTACTS_V, object_name:JTF_PARTY_ALL_CONTACTS_V, status:VALID, product: JTF - CRM Foundation , description: View all contacts, using hz_relationship table as the driving table. The view expose data for subject and object party. Please note that the view does not join with hz_org_contacts. , implementation_dba_data: APPS.JTF_PARTY_ALL_CONTACTS_V ,
-
View: JTF_TASK_PARTY_CONTACTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_TASK_PARTY_CONTACTS_V, object_name:JTF_TASK_PARTY_CONTACTS_V, status:VALID, product: JTF - CRM Foundation , description: View all contacts, using hz_relationship table as the driving table. The view expose data for subject and object party. Please note that the view does not join with hz_org_contacts , implementation_dba_data: APPS.JTF_TASK_PARTY_CONTACTS_V ,
-
VIEW: APPS.JTF_PARTY_ALL_CONTACTS_V
12.2.2
-
TYPE: APPS.RRS_SITE_PERSON_REC
12.2.2
owner:APPS, object_type:TYPE, object_name:RRS_SITE_PERSON_REC, status:VALID,
-
VIEW: APPS.JTF_TASK_PARTY_CONTACTS_V
12.2.2
-
View: JTF_TASK_PARTY_CONTACTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_TASK_PARTY_CONTACTS_V, object_name:JTF_TASK_PARTY_CONTACTS_V, status:VALID, product: JTF - CRM Foundation , description: View all contacts, using hz_relationship table as the driving table. The view expose data for subject and object party. Please note that the view does not join with hz_org_contacts , implementation_dba_data: APPS.JTF_TASK_PARTY_CONTACTS_V ,
-
TYPE: APPS.RRS_SITE_PERSON_REC
12.1.1
owner:APPS, object_type:TYPE, object_name:RRS_SITE_PERSON_REC, status:VALID,
-
VIEW: APPS.JTF_PARTY_ALL_CONTACTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_PARTY_ALL_CONTACTS_V, object_name:JTF_PARTY_ALL_CONTACTS_V, status:VALID,
-
VIEW: APPS.JTF_TASK_PARTY_CONTACTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_TASK_PARTY_CONTACTS_V, object_name:JTF_TASK_PARTY_CONTACTS_V, status:VALID,
-
VIEW: APPS.JTF_TASK_PARTY_CONTACTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_TASK_PARTY_CONTACTS_V, object_name:JTF_TASK_PARTY_CONTACTS_V, status:VALID,
-
VIEW: APPS.JTF_PARTY_ALL_CONTACTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_PARTY_ALL_CONTACTS_V, object_name:JTF_PARTY_ALL_CONTACTS_V, status:VALID,
-
View: HZ_PARTY_RELATIONSHIP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.HZ_PARTY_RELATIONSHIP_V, object_name:HZ_PARTY_RELATIONSHIP_V, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.HZ_PARTY_RELATIONSHIP_V ,
-
View: HZ_PARTY_RELATIONSHIP_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.HZ_PARTY_RELATIONSHIP_V, object_name:HZ_PARTY_RELATIONSHIP_V, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.HZ_PARTY_RELATIONSHIP_V ,
-
VIEW: APPS.HZ_PARTY_RELATIONSHIP_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.HZ_PARTY_RELATIONSHIP_V, object_name:HZ_PARTY_RELATIONSHIP_V, status:VALID,
-
VIEW: APPS.HZ_PARTY_RELATIONSHIP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.HZ_PARTY_RELATIONSHIP_V, object_name:HZ_PARTY_RELATIONSHIP_V, status:VALID,
-
APPS.RRS_SITE_INFO SQL Statements
12.2.2
-
APPS.RRS_SITE_INFO SQL Statements
12.1.1
-
PACKAGE BODY: APPS.RRS_SITE_INFO
12.2.2
-
PACKAGE BODY: APPS.RRS_SITE_INFO
12.1.1
-
APPS.RRS_SITE_INFO dependencies on HZ_PARTIES
12.1.1
-
APPS.RRS_SITE_INFO dependencies on HZ_PARTIES
12.2.2
-
APPS.RRS_SITE_INFO dependencies on HZ_RELATIONSHIPS
12.2.2
-
APPS.RRS_SITE_INFO dependencies on HZ_RELATIONSHIPS
12.1.1
-
eTRM - JTF Tables and Views
12.1.1
description: Interface table to store data that needs to be displayed in Excel ,
-
eTRM - JTF Tables and Views
12.2.2
description: Interface table to store data that needs to be displayed in Excel ,
-
eTRM - AR Tables and Views
12.2.2
description: Territory information ,
-
eTRM - AR Tables and Views
12.1.1
description: Territory information ,