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.
追加したいトリガーを使用して2つのフィールド(FirstName、LastName)があります
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; } }