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.
Custom Unsuspend date rule via Fast Formula
Summary:
Hi,
One of the requirements is to determine the coverage start date one day after the life event date for a specific life event 'Loss of External Coverage'.
Eg: If employee reports Loss of external coverage on Nov14 , then the plan should get unsuspended on Nov15 irrespective of the received date entered in the pending actions.
//Fast formula//
l_eff_dt = get_context(effective_date, '1900/01/01' (date))
l_output = add_days(l_eff_dt, 1)
l_rcd_dt = '1900/01/01' (date)
rLog = add_rlog (125, 125, 'l_eff_dt = '|| to_char(l_eff_dt) || ' | l_output = ' || to_char(l_output))
0