Alpha will restrict to lower and uppercase letters only (and space). You will need to put something like the following into a WHEN-VALIDATE-ITEM trigger:
DECLARE
l_test VARCHAR2(255);
BEGIN
l_test := Replace(Translate(Upperblock.field),'ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789 ','aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa'),'a',NULL);
--
IF l_test IS NOT NULL
THEN
Message('Invalid character');
Raise FORM_TRIGGER_FAILURE;
END IF;
END;
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.