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.
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>
Tagged:
0