Apex -triggers in Salesforce with example
Apex trigger is a piece of code which executes when an event ocurrs. It executes when a record is Inserted,Deleted or updated from the force.com database. Syntax: [sourcecode language=”java”] trigger <NameOfTrigger> on ObjectName (trigger_events) { //what trigger can do } [/sourcecode] These are the events on which trigger get fires: Insert Update Delete Merge upsert […]
Apex -triggers in Salesforce with example Read More »