Oracle Recruiting Cloud Tables and Views
Oracle Recruiting Cloud Tables and Views
Oracle Recruiting Cloud, part of the Oracle Cloud HCM suite, provides various tables and views for integration, reporting, and data analysis. Accessing these database objects is typically done through Oracle’s provided APIs or direct database access, depending on your permissions and setup.
Common Tables
ORC_JOB_POSTINGS– Contains details about job postingsORC_CANDIDATES– Stores candidate informationORC_APPLICATIONS– Manages applications submitted by candidatesORC_INTERVIEWS– Tracks interviews scheduled, conducted, etc.ORC_OFFERS– Contains information about offers made to candidatesORC_USERS– User details who have access to the recruiting module
Common Views
VW_JOB_POSTINGS– A view combining multiple tables to provide a comprehensive look at job postingsVW_CANDIDATE_PROFILE– A view summarizing candidate profilesVW_APPLICATION_STATUS– Provides the status of various applicationsVW_INTERVIEW_DETAILS– Detailed interview information, often joining interviewer and candidate dataVW_OFFER_DETAILS– Details about offers, including status, candidate, etc.
Access Methods
- REST APIs: Oracle provides RESTful APIs to access these tables and views for integration.
- SQL Queries: If you have direct database access, you can query these tables and views using SQL queries.
- BI Tools: Business Intelligence tools like Oracle BI can also access these tables for creating reports.