i try this with Integer type using this constraints:
(len (account_no > 6)) AND (len (account_no < 10)) AND NOT (account_no = 0)
but the INTEGER field come in the form with Default Value 0 so i used AND NOT (account_no = 0).
when i test the validation with the Default value 0 and click Next the validation doesn`t work.
but when i remove the Default value 0 and re type 0 again the validation work on constraints NOT (account_no = 0) and when i write numbers more than or less than the constraints (len (account_no > 6)) AND (len (account_no < 10)) the validation work.
is this BUG in the Documentum or what?