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.
我必须在用户在 Salesforce 中输入值后才将字段设为只读,这样即使该特定用户在输入后也无法更改该值。我怎么能做到这一点。提前致谢。
据我所知,Salesforce 没有“仅允许此字段设置一次”设置。最简单的方法可能是一个验证规则,它只在字段更改并且字段的先前值不为空白时引发错误,例如:
AND( ISCHANGED(SomeField__c), NOT(ISBLANK(PRIORVALUE(SomeField__c))) )
或选择列表:
AND( ISCHANGED(SomeField__c), NOT(ISPICKVAL(PRIORVALUE(SomeField__c), '')) )