-
Trigger
trigger trigger_1 on Contact (before insert) {
List<Contact>contacts= trigger.new;
for(Contact c:contacts){
c.name=’naresh’;
}
}As i am trying to to execute this code but it is not executing show Field is not writeable :contact.Name
-
This discussion was modified 6 years, 7 months ago by
Naresh kumar.
-
This discussion was modified 6 years, 7 months ago by
Naresh kumar.
-
This discussion was modified 6 years, 7 months ago by
Log In to reply.