Insert new Contact record using trigger
Insert new Contact record using trigger
Trigger Class:
trigger createContact on Contact (after insert,before insert) { for (Contact con : Trigger.new) { con.FirstName = 'Suj';
con.LastName = 'Max';
con.Email = 'sfdctest845@gmail.com';
con.Phone = '+178976';
try{
insert con;
}Catch(Exception e){
system.debug('e');
}
} }
*** Trigger Most Common Interview Questions and Answers for MNCs and Small-Mid Companies ***
Visualforce Most Common Interview Questions and Answers for MNCs and Small-Mid Companies ⇒ *** Comming Soon ***
Apex Most Common Interview Questions and Answers for MNCs and Small-Mid Companies ⇒ *** Comming Soon ***
Lightning Component Most Common Interview Questions and Answers for MNCs and Small-Mid Companies ⇒ *** Comming Soon ***
Lightning Design System Most Common Interview Questions and Answers for MNCs and Small-Mid Companies ⇒ *** Comming Soon ***
Freelancing Services At Salesforce: Freelancing Services
How to Create Object at Salesforce Classic:- https://sujay-salesforce.blogspot.com/2019/04/how-to-create-object-at-salesforce.htmlWhat is Workflow Rule At Salesforce:- https://sujay-salesforce.blogspot.com/2019/04/what-is-workflow-rule-at-salesforce.htmlHow to Create Field at Salesforce Classic:- https://sujay-salesforce.blogspot.com/2019/04/how-to-create-field-at-salesforce.htmlWhat is a Trigger:- https://sujay-salesforce.blogspot.com/2019/08/what-is-trigger.html
Comments
Post a Comment