Name changes is not showing after change the name format

Once you have done the changes in name format after that we need to run the scheduling process to see the changes in name format. Schedule Process: Apply Name Formats to Peron Names


List of EL Expression for different scenarios

#{securityContext.userInRole['role1,role2,roleN']} When the user has any of the roles, the expression returns True. When the user does not have any of the roles, the expression returns False


Not able to schedule the custom notification based on the daily basis

Built a custom notification in Alert Composer and scheduled it, setting the frequency to Daily and specifying the start and finish dates and times. I scheduled it on a daily basis, but it is not firing the notification. I specified the start and end times in the notification's scheduling procedure....


Some Sample use cases for Core HR

Use Case - 1 In the event that a line manager completes a "Change Manager" transaction on one of their direct reports, the approval must be processed according to the steps outlined below.


Not able to access the list of document types

Either you don't have access to any document type, or your roles do not include the following aggregate privilege - "Use REST Service - HR Document Types List of Values", check the document security profile and see if the required document type is added or not.


SQL Query to get the profile code, content type name, content type id, content section id and much more

SELECT HPB.PROFILE_CODE,papf.person_number,HRT_CONT_TYPE.CONTENT_TYPE_NAME, HRT_PROF_ITEMS.* FROM


Content Type IDs

Performance Rating - Content Type id - 125 Licenses and Certifications - Content Type id - 103 Languages - Content Type id - 109


What is mean by Test Environment in oracle fusion hcm?

Test Environment: is defined as a single test environment provided to You as part of the Cloud Services. A test environment is used for testing and validating changes prior to promotion to the


If a reviewer save the content in talent review meeting not to submit the content then what we will happen?

If a reviewer only saves the review content not to submit then below are the situation that can happen. Saving: When a reviewer saves the review content, it means that they are temporarily storing the information, they have entered without finalizing their feedback.


How to create the Descriptive Flexfield (DFF) in Document Record (DOR)

Navigate to "Setup and Maintenance." In the "Setup and Maintenance" page, search "Document Types" task and search the required document type where you want to create the dff and then get the System Document Type id. That will help you to map your DFF with the document type.


Query to get the List of Job name and job codes

SELECT PJFT.NAME, PJF.JOB_CODE FROM PER_JOBS_F_TL PJFT , PER_JOBS_F PJF  WHERE PJFT.LANGUAGE = 'US'


Overview of system person types

Pending Worker - A person who will be hired or start a as contingent worker, for whom you have created a person record that will future start date.


Enterprise Structure Terminologies and Definition

Enterprise - Enterprise is the highest level of Organization, and it is required because it acts as an umbrella for the entire implementation. Everything originates from this.


Autocomplete Rules Overview

What is Autocomplete Rule? Autocomplete Rules, which is also a part of the HCM Experience Design Studio takes the user experience to the next level by allowing customers to define very specific criteria for defaulting and validation across its suite of products.  Example: Autocomplete = Auto populate (Default) + Auto correct (Validate)


How to delete a learning assignment

METADATA|LearningRecord|LearningRecordId|LearningRecordEffectiveStartDate| LearningRecordEffectiveEndDate|LearningRecordNumber|AssignmentNumber| LearningItemType|LearningItemNumber|AssignmentType|AssignmentSubType|


How to delete job family

METADATA|JobFamily|EffectiveStartDate|EffectiveEndDate|JobFamilyName DELETE|JobFamily|2012/10/01|4712/12/31|Sales01


How can I get the attachment details of the files uploaded for a Document Record?

SELECT papf.person_number      ,ppnf.full_name      ,fdv.file_name      ,fdv.dm_document_id      ,hdpr.date_from      ,hdpr.date_to  FROM per_periods_of_service ppos


Overview of Learning Community

A learning community is a place where learning can be grouped around a certain topic or area of interest and shared with or given to a specific group of people, who are called community members. The goal of a community can range from a


Get the List of username, person no, role name, role code, department

select distinct papf.person_number,pu.username,prdt.role_name Role_Name,prd.role_common_name ,dept.name Department from  per_All_people_F papf, PER_USER_ROLES pur, per_users pu,


Get the count of person records those who don't have work email id

select  COUNT(1)  FROM PER_ALL_PEOPLE_F papf where papf.person_id in ( SELECT ppos.person_id FROM per_periods_of_service ppos  )