You can use regular expression.
The following code snippet will fail the records if the input value has any lower case letter
BEGIN RETURN
match_regex($param, '[^a-z]+', null);
END
You can use regular expression.
The following code snippet will fail the records if the input value has any lower case letter
BEGIN RETURN
match_regex($param, '[^a-z]+', null);
END