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.
我有两个字段(名字,姓氏)使用我想添加的触发器
both in one field Middle Name=(FirstName+LastName).
谢谢库马尔
trigger ObjBeforeInsert on Obj__c (before insert) { for(Obj__c obj:Trigger.new){ obj.Name= obj.FirstName +''+obj.LastName; } }