function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
CRMfusion - GWCRMfusion - GW 

When are delete triggers not fired?

I know that a delete trigger is not fired for a merge.  What are the other cases where delete triggers are not fired?

My question relates to having our application sit beside other APEX applications.  I want to ensure that a clean database is maintained regardless of other applications.

GlennW
benjasikbenjasik
if you delete a parent, then the triggers for the children will not fire.
mtbclimbermtbclimber
Actually, delete triggers are fired as a result of merge operations.  Right now, however, the MasterRecordId value is only available in after delete triggers.
MigMig
And in a E-mail-to-case ?
I've got a trigger on Case and it does not fire when a case is created from an email ....

Thank for you answer.