Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是 oracle 应用程序的新手,需要一些帮助来限制在字段中输入的字母数字。如果输入任何内容,应显示警告消息,例如“此字段中不允许使用字母数字字符”。
甲骨文应用程序 11i。
谢谢和问候, Sainadh Vennapusa
如果只需要 numbers () 表单个性化,触发事件:WHEN-VALIDATE-RECORDS,条件:
(select nvl( (select 1 from dual where regexp_like(column, '^[^a-zA-Z0-9]*$')) , '0') as t from dual) = '1'
在操作中,类型:“消息”,消息类型:错误,消息文本:“提供错误消息”