Results for “per_first_name”

7 results




AI-generated from documented ETRM metadata — verify critical details on the linked pages.

Overview

The PA_R_PROJECT_RESOURCES_IND_V view is an Oracle Projects (PA) reporting object owned by the APPS schema. It presents a denormalized, filter-ready projection of the resource pool that Oracle Projects can assign to project work — specifically employees and contingent workers. The view consolidates person, assignment, person type, job, and period-of-service information into a single row per qualifying assignment, exposing both human-readable attributes (name, employee number, email, phone, job title) and a fixed literal RESOURCE_TYPE = 'EMPLOYEE'.

Its role is to support resource validation, lookups, and integration logic where a downstream process needs a ready list of currently active project resources. Because the view applies the status, person-type, primary-assignment, and termination filters internally, callers do not have to replicate that business logic. In both EBS 12.1.1 and 12.2.2 it remains a VALID object; no structural divergence is documented between the two releases for this view.

Underlying Base Objects

The view is defined over the following documented base objects:

All PER_ objects are consumed via APPS synonyms, keeping the definition stable across releases.

Key Columns

Common Use Cases and Queries

Typical uses include building resource-selection lists, validating that a person is an eligible project resource, and filtering by person type. For example, retrieving active contingent workers:

SELECT person_id, name, user_type, org_name
FROM apps.pa_r_project_resources_ind_v
WHERE user_type = 'Contingent Worker';

To search by name or view job and contact detail:

SELECT person_id, name, per_emp_number, job_name, per_email
FROM apps.pa_r_project_resources_ind_v
WHERE UPPER(name) LIKE 'SMITH%';

Because the view already restricts to active, primary assignments with valid person-type usage and non-terminated periods of service, queries remain concise and consistent with Oracle Projects' own resource eligibility rules.