Get Started: AI Resources for Oracle Cloud HCM – Go Here
Progress with Redwood: Redwood Resources for Oracle Cloud HCM - Go Here
Progress with Redwood: Redwood Resources for Oracle Cloud HCM - Go Here
Candidate selection process fast formula: DoB and NID validation
Summary:
In the candidate selection process under 'Request More Information,' we collect both Date of Birth (DOB) and National Identifier (NID). A fast formula is used to verify if the candidate has provided these details at this stage.
Can someone confirm if this logic meets the Date of Birth requirement?
Fast formula type: Recuriting candidate selection process
Fast formula logic:
DEFAULT_DATA_VALUE FOR IRC_CANDIDATE_LEGISLATIVE_INFORMATION_ATTRIBUTE_DATE_2 is '1900/01/01' (date)
if IRC_CANDIDATE_LEGISLATIVE_INFORMATION_ATTRIBUTE_DATE_2[1]!= to_date('1900/01/01','YYYY/MM/DD')
THEN
CONDITION_RESULT = 'Y'
ELSE CONDITION_RESULT = 'N'
RETURN CONDITION_RESULT
0