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))