Get Started with Redwood for Oracle Cloud HCM Begin Now
To ensure that questions get required attention from community members and are NOT left unanswered, it’s important for the author to indicate (by selecting “Yes” or “No” when prompted) whether the question was answered. (newly added) Please note that it is also important to respond to EACH comment your question receives. Your Yes or No response ensures an accurate status for your question.
For more information, please refer to this announcement explaining best practices for getting answers to questions.
For more information, please refer to this announcement explaining best practices for getting answers to questions.
Restrict New Hire Life event for part time employees.
Summary:
We have a requirement, where in we do not need the 'New Hire' life event to trigger for part timer. We tried using the below formula, attached it to data change under 'Per change causes life event'. However, it does not seem to be working.
Any suggestions to achieve the requirement would be helpful.
/***********************************************************
DESCRIPTION: FORMULA TO TRIGGER NEW HIRE ONLY FOR FULL TIME EMPLOYEES
***********************************************************/
DEFAULT FOR PER_ASG_FULL_PART_TIME is ' '
l_return = 'N'
IF (PER_ASG_FULL_PART_TIME = 'FULL_TIME') THEN
(l_return = 'Y')
return l_return
0