some of the validation formulas are failing after 22D upgrade
Summary:
Content (required):
Hi Experts,
I had written an absence entry validation formula based on probation period. My validation was like the person should not be able to take the absence during the probation period. So I had used the below code snippet.
if((IV_START_DATE < PER_ASG_DATE_PROBATION_END) and (PER_ASG_DATE_PROBATION_END was not defaulted))
THEN
(
Valid = 'N'
Error_message = 'QF_ABS_AL_PROBATION_VALIDATION'
)
This was working as expected before 22D. But suddenly, the code is failing after 22D upgrade. Also please note that the log file is generating the correct value for the PER_ASG_DATE_PROBATION_END DBI.
0