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.
我有一个对象,它有一个字段选项列表,它包含值open和close,我想要实现的目标:当插入带有选项列表值close的记录时,我试图在字段更改为 close 时将该字段设置为只读。
我怎样才能做到这一点??????
您可以添加验证规则,例如
AND(ISCHANGED(Field__c),ISPICKVAL(Field__c,"Close"))
如果该字段的值为“关闭”并且有人试图更改它,则会引发错误。
使用两个字段,一个是读写的,另一个是只读的。可以使用触发器或字段更新规则将相同的信息写入两个字段。关闭时显示只读,否则显示读写字段。
当然,这在 Visualforce 中可能更容易做到。