Came across this useful post. Re-posting.
/* --------------------------------------------------------------------------------------------------------------------------
********************************************************************************************
* NAME : US Legislation
* TYPE : Participation and Rate Eligiblity
* Requirement: Formula to get the eligible employees for US
********************************************************************************************
------------------------------------------------------------------------------------------------------------------------*/
DEFAULT FOR PER_ASG_LEGISLATION_CODE IS 'ABC'
ELIGIBLE = 'N'
IF (PER_ASG_LEGISLATION_CODE = 'US') THEN
(
ELIGIBLE = 'Y'
)
RETURN ELIGIBLE
********************************************************************************************
* NAME : US Legislation
* TYPE : Participation and Rate Eligiblity
* Requirement: Formula to get the eligible employees for US
********************************************************************************************
------------------------------------------------------------------------------------------------------------------------*/
DEFAULT FOR PER_ASG_LEGISLATION_CODE IS 'ABC'
ELIGIBLE = 'N'
IF (PER_ASG_LEGISLATION_CODE = 'US') THEN
(
ELIGIBLE = 'Y'
)
RETURN ELIGIBLE
No comments:
Post a Comment