I'm tring to validate whether the name length is met with the required value or not.
I made a code but it works in a bad way I'm trying to see the entered name whether is less then 3 or not and return a Boolean to print the message or not. in some cases the code prevent any entered date and the other is saving the data even if it's less then 3 .
my code is
if length(':P11_first_name') < 3 then
return true;
else
return false;
end if;
what I need to do to solve this problem.
if length(:P11_first_name) < 3 then
without'
– Lukasz Szozda