For more information, please refer to this announcement explaining best practices for getting answers to questions.
Data File Validator Tool : PersonEmail Validate atleast one email address exists if actioncode is Hi
Summary
Is it possible to use line level groovy validation to check atleast one personEmail address existsContent
We are doing employee conversion and auto provision users during employee load. Some of our employees we have email address missing which cause user creation failure.. We would like to use Data File Validator tool for HCM worker.dat file.
Is it possible to use line level groovy validation to check atleast one personEmail address exists. The below condition always fails
<line-validations>
<groovy-validation description="Atleast one email record present ">
<code>
<![CDATA[ if(EmailAddress == null && ActionCode == "HIRE") {
return false;
}
return true; ]]>
</code>
</groovy-validation>