Eligibility Fast Formula
Content
Hello experts,
I should create a Fast Formula which make people ineligible to a compensation plan when HRT_PROFILE_ITEM_ATTRIBUTE7 is set to Y.
HRT_PROFILE_ITEM_ATTRIBUTE7 is a custom flag created in person profile page
Below the Fast Formula I'm using that the system cannot validate it.
DEFAULT_DATA_VALUE FOR HRT_PROFILE_ITEM_ATTRIBUTE7 IS 'NA'
ELIGIBLE = 'N'
IF (HRT_PROFILE_ITEM_ATTRIBUTE7 = 'Y')
THEN
(ELIGIBLE = 'Y')
RETURN ELIGIBLE
What's wrong with it?
Thanks in advance for your time!
Kind Regards,
Valerio
1