Search Results per_all_vacancies
Overview
The PER_ALL_VACANCIES table is a core data object within the Oracle E-Business Suite Human Resources (PER) module, specifically for Oracle EBS releases 12.1.1 and 12.2.2. It serves as the primary repository for vacancy records, which represent specific, open positions to be filled within an organization. Each vacancy is intrinsically linked to a specific requisition, as indicated by its description, "Vacancies within a specific requisition." This table is central to the recruitment lifecycle, enabling the tracking of open positions, their associated details, and their integration with other HR processes such as assignments and offers.
Key Information Stored
The table stores comprehensive details for each vacancy. Its primary key is VACANCY_ID, ensuring each record is uniquely identifiable. A unique key constraint (PER_VACANCIES_UK2) also exists on the combination of REQUISITION_ID and NAME, enforcing uniqueness of vacancy names within a requisition. Key foreign key columns define the vacancy's context within the HR organizational structure and job framework. These include BUSINESS_GROUP_ID, ORGANIZATION_ID, POSITION_ID, JOB_ID, and GRADE_ID. Additional critical columns link the vacancy to a specific LOCATION_ID and PEOPLE_GROUP_ID. The REQUISITION_ID column is mandatory, establishing the foundational link to the PER_REQUISITIONS table from which the vacancy is created.
Common Use Cases and Queries
This table is pivotal for recruitment reporting and operational processes. Common use cases include generating open vacancy reports, tracking recruitment pipeline metrics, and providing data for integration with Oracle iRecruitment. A typical query might join PER_ALL_VACANCIES with related tables to list all active vacancies with their organizational and job details:
- SELECT pv.NAME, pv.VACANCY_ID, pr.REQUISITION_CODE, hou.NAME ORG_NAME, pj.NAME JOB_NAME FROM HR.PER_ALL_VACANCIES pv JOIN HR.PER_REQUISITIONS pr ON pv.REQUISITION_ID = pr.REQUISITION_ID JOIN HR.HR_ALL_ORGANIZATION_UNITS hou ON pv.ORGANIZATION_ID = hou.ORGANIZATION_ID JOIN HR.PER_JOBS pj ON pv.JOB_ID = pj.JOB_ID WHERE pv.DATE_TO IS NULL;
Another critical use case is data validation, ensuring vacancies are correctly linked to valid positions, jobs, and organizations before mass assignment or recruitment activities proceed.
Related Objects
PER_ALL_VACANCIES has extensive relationships with other HR and iRecruitment objects, as shown in its foreign key constraints. It is a parent table to several recruitment-specific entities: IRC_AGENCY_VACANCIES, IRC_OFFERS, IRC_REC_TEAM_MEMBERS, and IRC_VACANCY_CONSIDERATIONS. Crucially, it is referenced by the core HR assignment table (PER_ALL_ASSIGNMENTS_F.VACANCY_ID), linking a filled vacancy to an employee's assignment record. It is also referenced by PER_RECRUITMENT_ACTIVITY_FOR for tracking activities. Primary parent tables include PER_REQUISITIONS (source), PER_ALL_POSITIONS, PER_JOBS, PER_GRADES, HR_ALL_ORGANIZATION_UNITS (twice, for business group and organization), HR_LOCATIONS_ALL, and PAY_PEOPLE_GROUPS.
-
Table: PER_ALL_VACANCIES
12.1.1
owner:HR, object_type:TABLE, fnd_design_data:PER.PER_ALL_VACANCIES, object_name:PER_ALL_VACANCIES, status:VALID, product: PER - Human Resources , description: Vacancies within a specific requisition. , implementation_dba_data: HR.PER_ALL_VACANCIES ,
-
Table: PER_ALL_VACANCIES
12.2.2
owner:HR, object_type:TABLE, fnd_design_data:PER.PER_ALL_VACANCIES, object_name:PER_ALL_VACANCIES, status:VALID, product: PER - Human Resources , description: Vacancies within a specific requisition. , implementation_dba_data: HR.PER_ALL_VACANCIES ,
-
Table: IRC_VACANCY_CONSIDERATIONS
12.2.2
owner:HR, object_type:TABLE, fnd_design_data:PER.IRC_VACANCY_CONSIDERATIONS, object_name:IRC_VACANCY_CONSIDERATIONS, status:VALID, product: PER - Human Resources , description: This table holds the consideration of a Manager or a Recruiter a candidate in the pool and their Vacancy , implementation_dba_data: HR.IRC_VACANCY_CONSIDERATIONS ,
-
Table: IRC_VACANCY_CONSIDERATIONS
12.1.1
owner:HR, object_type:TABLE, fnd_design_data:PER.IRC_VACANCY_CONSIDERATIONS, object_name:IRC_VACANCY_CONSIDERATIONS, status:VALID, product: PER - Human Resources , description: This table holds the consideration of a Manager or a Recruiter a candidate in the pool and their Vacancy , implementation_dba_data: HR.IRC_VACANCY_CONSIDERATIONS ,
-
View: PER_VACANCIES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_VACANCIES, object_name:PER_VACANCIES, status:VALID, product: PER - Human Resources , description: Secure view based on the corresponding _ALL_ table. , implementation_dba_data: APPS.PER_VACANCIES ,
-
View: PER_VACANCIES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_VACANCIES, object_name:PER_VACANCIES, status:VALID, product: PER - Human Resources , description: Secure view based on the corresponding _ALL_ table. , implementation_dba_data: APPS.PER_VACANCIES ,
-
Table: IRC_AGENCY_VACANCIES
12.1.1
owner:HR, object_type:TABLE, fnd_design_data:PER.IRC_AGENCY_VACANCIES, object_name:IRC_AGENCY_VACANCIES, status:VALID, product: PER - Human Resources , implementation_dba_data: HR.IRC_AGENCY_VACANCIES ,
-
Table: IRC_AGENCY_VACANCIES
12.2.2
owner:HR, object_type:TABLE, fnd_design_data:PER.IRC_AGENCY_VACANCIES, object_name:IRC_AGENCY_VACANCIES, status:VALID, product: PER - Human Resources , implementation_dba_data: HR.IRC_AGENCY_VACANCIES ,
-
Table: PER_REQUISITIONS
12.1.1
owner:HR, object_type:TABLE, fnd_design_data:PER.PER_REQUISITIONS, object_name:PER_REQUISITIONS, status:VALID, product: PER - Human Resources , description: Vacancy requisition details. , implementation_dba_data: HR.PER_REQUISITIONS ,
-
Table: IRC_OFFERS
12.1.1
owner:HR, object_type:TABLE, fnd_design_data:PER.IRC_OFFERS, object_name:IRC_OFFERS, status:VALID, product: PER - Human Resources , description: Table to maintain details of iRecruitment Offers , implementation_dba_data: HR.IRC_OFFERS ,
-
Table: PER_RECRUITMENT_ACTIVITY_FOR
12.2.2
owner:HR, object_type:TABLE, fnd_design_data:PER.PER_RECRUITMENT_ACTIVITY_FOR, object_name:PER_RECRUITMENT_ACTIVITY_FOR, status:VALID, product: PER - Human Resources , description: Vacancies associated with a specific recruitment activity. , implementation_dba_data: HR.PER_RECRUITMENT_ACTIVITY_FOR ,
-
Table: PER_RECRUITMENT_ACTIVITY_FOR
12.1.1
owner:HR, object_type:TABLE, fnd_design_data:PER.PER_RECRUITMENT_ACTIVITY_FOR, object_name:PER_RECRUITMENT_ACTIVITY_FOR, status:VALID, product: PER - Human Resources , description: Vacancies associated with a specific recruitment activity. , implementation_dba_data: HR.PER_RECRUITMENT_ACTIVITY_FOR ,
-
Table: IRC_REC_TEAM_MEMBERS
12.1.1
owner:HR, object_type:TABLE, fnd_design_data:PER.IRC_REC_TEAM_MEMBERS, object_name:IRC_REC_TEAM_MEMBERS, status:VALID, product: PER - Human Resources , description: Stores the list of people who are working on a particular vacancy , implementation_dba_data: HR.IRC_REC_TEAM_MEMBERS ,
-
Table: IRC_REC_TEAM_MEMBERS
12.2.2
owner:HR, object_type:TABLE, fnd_design_data:PER.IRC_REC_TEAM_MEMBERS, object_name:IRC_REC_TEAM_MEMBERS, status:VALID, product: PER - Human Resources , description: Stores the list of people who are working on a particular vacancy , implementation_dba_data: HR.IRC_REC_TEAM_MEMBERS ,
-
Table: PER_REQUISITIONS
12.2.2
owner:HR, object_type:TABLE, fnd_design_data:PER.PER_REQUISITIONS, object_name:PER_REQUISITIONS, status:VALID, product: PER - Human Resources , description: Vacancy requisition details. , implementation_dba_data: HR.PER_REQUISITIONS ,
-
Table: IRC_OFFERS
12.2.2
owner:HR, object_type:TABLE, fnd_design_data:PER.IRC_OFFERS, object_name:IRC_OFFERS, status:VALID, product: PER - Human Resources , description: Table to maintain details of iRecruitment Offers , implementation_dba_data: HR.IRC_OFFERS ,
-
View: PER_RECRUITMENT_ACTIVITY_FOR_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_RECRUITMENT_ACTIVITY_FOR_V, object_name:PER_RECRUITMENT_ACTIVITY_FOR_V, status:VALID, product: PER - Human Resources , description: Used to support user interface , implementation_dba_data: APPS.PER_RECRUITMENT_ACTIVITY_FOR_V ,
-
View: PER_RECRUITMENT_ACTIVITY_FOR_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_RECRUITMENT_ACTIVITY_FOR_V, object_name:PER_RECRUITMENT_ACTIVITY_FOR_V, status:VALID, product: PER - Human Resources , description: Used to support user interface , implementation_dba_data: APPS.PER_RECRUITMENT_ACTIVITY_FOR_V ,
-
Table: PER_GRADES
12.1.1
owner:HR, object_type:TABLE, fnd_design_data:PER.PER_GRADES, object_name:PER_GRADES, status:VALID, product: PER - Human Resources , description: Grade definitions for a business group. , implementation_dba_data: HR.PER_GRADES ,
-
Table: PER_GRADES
12.2.2
owner:HR, object_type:TABLE, fnd_design_data:PER.PER_GRADES, object_name:PER_GRADES, status:VALID, product: PER - Human Resources , description: Grade definitions for a business group. , implementation_dba_data: HR.PER_GRADES ,
-
Table: PER_ALL_ASSIGNMENTS_F
12.2.2
owner:HR, object_type:TABLE, fnd_design_data:PER.PER_ALL_ASSIGNMENTS_F, object_name:PER_ALL_ASSIGNMENTS_F, status:VALID, product: PER - Human Resources , description: Employee and applicant assignment details. , implementation_dba_data: HR.PER_ALL_ASSIGNMENTS_F ,
-
Table: PER_ALL_ASSIGNMENTS_F
12.1.1
owner:HR, object_type:TABLE, fnd_design_data:PER.PER_ALL_ASSIGNMENTS_F, object_name:PER_ALL_ASSIGNMENTS_F, status:VALID, product: PER - Human Resources , description: Employee and applicant assignment details. , implementation_dba_data: HR.PER_ALL_ASSIGNMENTS_F ,
-
Table: PER_ALL_POSITIONS
12.2.2
owner:HR, object_type:TABLE, fnd_design_data:PER.PER_ALL_POSITIONS, object_name:PER_ALL_POSITIONS, status:VALID, product: PER - Human Resources , description: Dual-maintained position definition information. , implementation_dba_data: HR.PER_ALL_POSITIONS ,
-
Table: PER_ALL_POSITIONS
12.1.1
owner:HR, object_type:TABLE, fnd_design_data:PER.PER_ALL_POSITIONS, object_name:PER_ALL_POSITIONS, status:VALID, product: PER - Human Resources , description: Dual-maintained position definition information. , implementation_dba_data: HR.PER_ALL_POSITIONS ,
-
Table: PER_JOBS
12.1.1
owner:HR, object_type:TABLE, fnd_design_data:PER.PER_JOBS, object_name:PER_JOBS, status:VALID, product: PER - Human Resources , description: Jobs defined for a Business Group. , implementation_dba_data: HR.PER_JOBS ,
-
Table: PER_JOBS
12.2.2
owner:HR, object_type:TABLE, fnd_design_data:PER.PER_JOBS, object_name:PER_JOBS, status:VALID, product: PER - Human Resources , description: Jobs defined for a Business Group. , implementation_dba_data: HR.PER_JOBS ,
-
View: PER_ALL_ASSIGNMENTS_D
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_ALL_ASSIGNMENTS_D, object_name:PER_ALL_ASSIGNMENTS_D, status:VALID, product: PER - Human Resources , description: Used by Datetrack History , implementation_dba_data: APPS.PER_ALL_ASSIGNMENTS_D ,
-
View: PER_ALL_ASSIGNMENTS_D
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_ALL_ASSIGNMENTS_D, object_name:PER_ALL_ASSIGNMENTS_D, status:VALID, product: PER - Human Resources , description: Used by Datetrack History , implementation_dba_data: APPS.PER_ALL_ASSIGNMENTS_D ,
-
Table: HR_LOCATIONS_ALL
12.2.2
owner:HR, object_type:TABLE, fnd_design_data:PER.HR_LOCATIONS_ALL, object_name:HR_LOCATIONS_ALL, status:VALID, product: PER - Human Resources , description: Work location definitions. , implementation_dba_data: HR.HR_LOCATIONS_ALL ,
-
Table: HR_LOCATIONS_ALL
12.1.1
owner:HR, object_type:TABLE, fnd_design_data:PER.HR_LOCATIONS_ALL, object_name:HR_LOCATIONS_ALL, status:VALID, product: PER - Human Resources , description: Work location definitions. , implementation_dba_data: HR.HR_LOCATIONS_ALL ,
-
View: HRFV_EMPLOYEE_ASSIGNMENTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_EMPLOYEE_ASSIGNMENTS, object_name:HRFV_EMPLOYEE_ASSIGNMENTS, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_EMPLOYEE_ASSIGNMENTS ,
-
View: HRFV_EMPLOYEE_ASSIGNMENTS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_EMPLOYEE_ASSIGNMENTS, object_name:HRFV_EMPLOYEE_ASSIGNMENTS, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_EMPLOYEE_ASSIGNMENTS ,
-
View: HRFV_JOB_APPLICATIONS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_JOB_APPLICATIONS, object_name:HRFV_JOB_APPLICATIONS, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_JOB_APPLICATIONS ,
-
View: PER_ASSIGNMENTS_V5
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_ASSIGNMENTS_V5, object_name:PER_ASSIGNMENTS_V5, status:VALID, product: PER - Human Resources , description: Used to support user interface , implementation_dba_data: APPS.PER_ASSIGNMENTS_V5 ,
-
Table: HR_ALL_ORGANIZATION_UNITS
12.1.1
owner:HR, object_type:TABLE, fnd_design_data:AS.HR_ALL_ORGANIZATION_UNITS PER.HR_ALL_ORGANIZATION_UNITS, object_name:HR_ALL_ORGANIZATION_UNITS, status:VALID, product: PER - Human Resources , description: Organization unit definitions. , implementation_dba_data: HR.HR_ALL_ORGANIZATION_UNITS ,
-
View: PER_ASSIGNMENTS_V5
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_ASSIGNMENTS_V5, object_name:PER_ASSIGNMENTS_V5, status:VALID, product: PER - Human Resources , description: Used to support user interface , implementation_dba_data: APPS.PER_ASSIGNMENTS_V5 ,
-
View: HRFV_JOB_APPLICATIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_JOB_APPLICATIONS, object_name:HRFV_JOB_APPLICATIONS, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_JOB_APPLICATIONS ,
-
View: HRFV_PERSON_ASSIGNMENT_HISTORY
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_PERSON_ASSIGNMENT_HISTORY, object_name:HRFV_PERSON_ASSIGNMENT_HISTORY, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_PERSON_ASSIGNMENT_HISTORY ,
-
Table: HR_ALL_ORGANIZATION_UNITS
12.2.2
owner:HR, object_type:TABLE, fnd_design_data:AS.HR_ALL_ORGANIZATION_UNITS PER.HR_ALL_ORGANIZATION_UNITS, object_name:HR_ALL_ORGANIZATION_UNITS, status:VALID, product: PER - Human Resources , description: Organization unit definitions. , implementation_dba_data: HR.HR_ALL_ORGANIZATION_UNITS ,
-
View: HRFV_PERSON_ASSIGNMENT_HISTORY
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_PERSON_ASSIGNMENT_HISTORY, object_name:HRFV_PERSON_ASSIGNMENT_HISTORY, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_PERSON_ASSIGNMENT_HISTORY ,
-
View: PER_PEOPLE_V3
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_PEOPLE_V3, object_name:PER_PEOPLE_V3, status:VALID, product: PER - Human Resources , description: Used to support user interface , implementation_dba_data: APPS.PER_PEOPLE_V3 ,
-
View: PER_PEOPLE_V3
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_PEOPLE_V3, object_name:PER_PEOPLE_V3, status:VALID, product: PER - Human Resources , description: Used to support user interface , implementation_dba_data: APPS.PER_PEOPLE_V3 ,