Skip to main content

Posts

Showing posts from April, 2020

Do you know how to do bulk deletion of Oracle Cloud HCM absence enrollment

Today we are going to see how to delete the absence enrollment of workers in bulk. Create Fast Formula of Type “Person Selection” Include List of person numbers for which Accrual Enrollment needs to be deleted. Below is the formula text for sample 2 person numbers Formula Text: /******************************************************************* PERSON_SELECTION Person Selection rule used to limit the process ************************************************************************/ /*=========== DATABASE ITEM DEFAULTS BEGIN =====================*/ DEFAULT for PER_ASG_PERSON_NUMBER IS '-1' /*=========== DATABASE ITEM DEFAULTS ENDS======================*/ /*================ FORMULA SECTION BEGIN =======================*/ l_output = 'N' l_per_number = PER_ASG_PERSON_NUMBER if ( l_per_number = '1234' OR l_per_number = '12345' ) then ( l_output = 'Y' ) return l_outp