[SalesForce] how do i create trigger on attachment

I want to create trigger on the Attachment object, but am not able to find it in setup. Can anybody suggest how to do it?

I am assuming it can be done from Developer console, but I am not sure of the correct steps to take.

Best Answer

You can not create trigger on attachment from salesforce standard setup

But you can create trigger on attachment from developer console or eclipse. Go to developer console -> File -> New -> Apex trigger. Then select Attachment sObject

For more details please refer following link:

http://www.sfdcpoint.com/salesforce/trigger-on-attachment-in-salesforce/

Related Topic