Search Results work_phone_number
Overview
CS_JTF_RESOURCES_V is a Service (CS) module view owned by the APPS schema and documented in ETRM as "Resource Details." It consolidates the identity, contact, and address information of service resources into a single denormalized record per resource, joining the resource extension table to the underlying person or party records that describe the individual or organization. Because the view spans both employee resources stored in Oracle HRMS (PER_PEOPLE_F, PER_ADDRESSES, PER_PHONES) and non-employee resources stored in Oracle Trading Community Architecture (HZ_PARTIES, HZ_LOCATIONS), it provides a unified roster of resources without requiring the caller to know which repository holds a given resource type.
Within Oracle EBS 12.1.1 and 12.2.2, the view supports Service resource lookups, dispatch and scheduling screens, field service reporting, and integration extracts where resource contactability — including telephone, e-mail, and fax — is required. Notably, the query term "fax_number" maps directly to an exposed column of this view, making CS_JTF_RESOURCES_V the canonical source for resource fax numbers.
Underlying Base Objects
ETRM documents the following base objects for the 12.2.2 definition:
- JTF_RS_RESOURCE_EXTNS (synonym) — the resource master, supplying RESOURCE_ID, RESOURCE_NUMBER, CATEGORY, and SOURCE_ID.
- PER_PEOPLE_F (view) and PER_ADDRESSES, PER_PHONES (synonyms) — employee name, address, and phone records.
- HZ_PARTIES and HZ_LOCATIONS (synonyms) — party name and address data for person and organization resources.
- HR_GENERAL, HR_PERSON_NAME, HR_SECURITY, CS_PARTIES_PKG, and FND_PROFILE (packages) — business logic and security functions invoked in the view text.
The definition is a UNION of two branches. The employee branch joins PER_PEOPLE_F to PER_ADDRESSES (primary address) and to three aliases of PER_PHONES — WPHONE (type 'WF', work phone), PPHONE (type 'P', pager), and MPHONE (type 'M', mobile) — with effective-date predicates bounded by DATE_FROM and DATE_TO. The second branch resolves non-employee resources through HZ_PARTIES and HZ_LOCATIONS, composing the party name from the person name attributes or PARTY_NAME for organizations.
Key Columns
- RESOURCE_ID, RESOURCE_NUMBER, CATEGORY — resource identity and classification (for example, EMPLOYEE).
- FULL_NAME / RESOURCE_NAME — employee full name, or the party-derived name for external resources.
- ADDRESS, COUNTRY, POSTAL_CODE — concatenated address lines with country and postal code.
- WORK_PHONE_NUMBER, HOME_PHONE_NUMBER, CELL_PHONE_NUMBER, PAGER_PHONE_NUMBER — phone contacts sourced from PER_PHONES by phone type.
- FAX_NUMBER — the resource fax number, derived from the WPHONE alias of PER_PHONES in the documented text.
- EMAIL_ADDRESS — the resource e-mail address from PER_PEOPLE_F.
Common Use Cases and Queries
Typical uses include resolving a resource's fax or phone contacts for notifications and document delivery, building Service resource directories, and validating contact data during integration loads.
Query a resource by ID:
SELECT resource_id, resource_number, full_name, fax_number, email_address FROM apps.cs_jtf_resources_v WHERE resource_id = :p_resource_id;
Locate resources by fax number:
SELECT resource_id, full_name, fax_number FROM apps.cs_jtf_resources_v WHERE fax_number IS NOT NULL;
Restrict by category and country for reporting:
SELECT resource_number, full_name, work_phone_number, cell_phone_number, fax_number FROM apps.cs_jtf_resources_v WHERE category = 'EMPLOYEE' AND country = 'US';
Because the view enforces HR security and effective-dated phone joins, results reflect only currently valid contact records visible to the querying responsibility.
-
View: CS_JTF_RESOURCES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_JTF_RESOURCES_V, object_name:CS_JTF_RESOURCES_V, status:VALID, product: CS - Service , description: Resource Details , implementation_dba_data: APPS.CS_JTF_RESOURCES_V ,
-
View: CS_CONTACTS_V
12.2.2
product: CS - Service , description: Information regarding the Resources and their type of contacts in Installedbase , implementation_dba_data: Not implemented in this database ,
-
View: CS_JTF_RESOURCES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_JTF_RESOURCES_V, object_name:CS_JTF_RESOURCES_V, status:VALID, product: CS - Service , description: Resource Details , implementation_dba_data: APPS.CS_JTF_RESOURCES_V ,
-
View: CS_CONTACTS_V
12.1.1
product: CS - Service , description: Information regarding the Resources and their type of contacts in Installedbase , implementation_dba_data: Not implemented in this database ,
-
View: CS_CONT_CONTACTS_RG_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_CONT_CONTACTS_RG_V, object_name:CS_CONT_CONTACTS_RG_V, status:VALID, product: CS - Service , description: Contact Information , implementation_dba_data: APPS.CS_CONT_CONTACTS_RG_V ,
-
View: CS_CONT_CONTACTS_RG_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_CONT_CONTACTS_RG_V, object_name:CS_CONT_CONTACTS_RG_V, status:VALID, product: CS - Service , description: Contact Information , implementation_dba_data: APPS.CS_CONT_CONTACTS_RG_V ,