Query to Check HDL Data Load Messages Using Content ID

This SQL query retrieves detailed message logs for a specific HDL (HCM Data Loader) upload using the UCM_CONTENT_ID. It joins message lines with related business object and data set tables to provide insight into successes, warnings, and errors during the HDL process. Replace 'UCMFA03221083' with the relevant content ID to check specific load results.


Query to Identify Reversed Termination Cases in Oracle HCM

This SQL query detects employees whose termination has been reversed in Oracle HCM Cloud. It compares versions of PER_PERIODS_OF_SERVICE records, identifying those with earlier entries showing a termination date and later updates removing it. The query returns the person ID, last update date, and person number of affected employees.


Query to Count Persons Without a Work Email ID in Oracle HCM

This SQL query returns the total number of person records in Oracle HCM Cloud who are in PER_PERIODS_OF_SERVICE but do not have a work email ID (EMAIL_TYPE = 'W1'). It uses a NOT EXISTS clause to filter out individuals without an assigned work email, ensuring only active person records are considered.


Query to Retrieve Job Family Details in Oracle HCM

This SQL query fetches active job family details from Oracle HCM Cloud, including job family name, code, status, and effective start date. It ensures only currently effective records are shown by filtering based on the system date and joins the translation and base tables for complete information.


How Guided Journeys Enhance Oracle HCM User Experience

Guided Journeys in Oracle HCM Cloud simplify complex HR transactions by providing real-time assistance, relevant content, and streamlined task flows. From onboarding to recurring reminders, customers are leveraging this feature to boost efficiency, compliance, and user satisfaction.


Query to Retrieve Legal Employers and Their IDs in Oracle HCM

This SQL query retrieves a list of legal employers and their associated IDs using Oracle HCM tables. It filters for active records classified under 'HCM_LEMP', ensuring the data is current based on the system date and language set to 'US'.


Query to Retrieve Business Units and Their IDs in Oracle HCM

This SQL query fetches a list of business units along with their corresponding IDs and classification codes in Oracle HCM. It joins classification, organization unit, and translation tables while filtering for records classified as 'FUN_BUSINESS_UNIT' and active as of the current date.


Not able to hide the delete button from a report

You have the BI administrator duty on this role which gives full access (admin level access) to all reports. If you want the delete option to be removed even from this role, then you have to go to the specific folder or specific report from which you want to remove the delete option. On that select permissions and then update the roles which have full access to custom and remove the delete and other options which you do not want that role to have.


SQL Query to Retrieve List of Departments with Department ID and Name

This query returns a list of active departments in Oracle HCM, including each Department ID and Department Name. It filters by the 'DEPARTMENT' classification code and ensures only currently effective records are shown in the output.


SQL Query to Retrieve Department Tree Hierarchy in Oracle HCM

This query retrieves the department hierarchy structure in Oracle HCM using the Department Tree. It shows both the department name and its parent department, along with tree metadata such as tree code, tree node ID, and hierarchical keys. The query joins department nodes with organizational units and filters only active tree versions.


SQL Queries to Generate HDL Data for WorkTerms and Assignments

These SQL queries generate HDL-formatted lines for loading WorkTerms and Assignments in Oracle HCM via HCM Data Loader (HDL). Each query outputs HDL MERGE action lines, including employee person number, assignment details, and other required fields based on per_all_assignments_m.


SQL Query to Retrieve System Person Types, User Person Types, and Status

This query provides a list of System Person Types and User Person Types along with their Active Flag and Default Flag status in Oracle HCM. It helps identify which person types are active and which are marked as default in the system configuration.


How to Load Talent Profile Content Using HDL (TalentProfile.dat)

Use the TalentProfile.dat HDL file to load Talent Profile content like Performance Rating, Career Potential, Risk of Loss, and Impact of Loss into Oracle HCM. The ProfileCode is derived via SQL, and you must use the appropriate ContentTypeId, SectionId, and unique SourceSystemId for each profile item.


SQL Query to Retrieve Parent Department Tree Information

This query retrieves details of the active department tree structure in Oracle HCM, including tree version ID, structure code, and tree code. It helps identify the current version of the Parent Department Tree being used within the organization.


How to Remove Goal Plan Assignments Using HDL Delete Template

Use the GoalPlanAssignment HDL Delete Template to remove existing goal plan assignments for employees in Oracle HCM. Required fields include GoalPlanAssignmentId, AssignmentId, and GoalPlanId. A supporting SQL query helps extract the necessary data to prepare the HDL file. After deletion, you can update or recreate new goal plans with eligibility criteria.


SQL Query to Generate HDL Data Lines for Assignment Business Object

This SQL query is designed to generate HDL-compliant assignment data lines for Oracle HCM Data Loader. It fetches assignment details for active employees and formats the data in HDL .dat file structure using the MERGE action for the Assignment business object.


SQL Query to Retrieve Department Hierarchy with Project and Expense Codes

This query retrieves department hierarchy information along with project and expense codes by joining Oracle HCM’s organization and tree structures. It displays the department name, parent department name, project code, and expense code, using hierarchical CONNECT BY logic to trace the structure.


SQL Query to Identify Work Email Addresses Flagged as Primary in Oracle HCM

This query retrieves a list of email addresses from Oracle HCM and identifies whether each is marked as the employee's primary email address. It compares the email address ID with the person's primary email ID and flags it accordingly.


SQL Query to Identify Terminated Employees in Oracle HCM

This query retrieves employees from Oracle HCM whose records are associated with termination details by joining PER_ALL_PEOPLE_F and PER_PERIODS_OF_SERVICE tables. It displays the last update date, last updated by, and person number, helping track recently updated termination records.


SQL Query to Identify the Seniority Date Version in Oracle HCM

This query retrieves the Seniority Date Version, Seniority Date Code, and corresponding Meaning from Oracle HCM. It joins the PER_SENIORITY_DATES_SETUP and HCM_LOOKUPS tables to provide active configurations used in determining employee seniority calculations.