I cannot find where in the salesforce.com UI I can add a trigger on a file attachment. I can find triggers on almost everything else, but attachment seems to be missing from the list (even when I view source on the page and search it. Does anyone know WHERE I can put this trigger in?

link|improve this question

76% accept rate
feedback

3 Answers

up vote 1 down vote accepted

There is no way to do it directly as Attachment is one of those "lesser" objects that salesforce really gets "protective" about in a random and biased way. The only "legit" way to do it is to use some external build&deploy tools such as Force.com IDE.

If however you are not a stranger to undocumented 'hacks' do the following. Go to any object's trigger list and click create new. In the URL locate entity query string parameter (e.g. entity=Case) and change it to Attachment (entity=Attachment) and press Enter. Newl loaded screen will accept Attachment trigger.

link|improve this answer
Hardly seems like a longtime solution, using an undocumented API they could close up at any moment. – Mark0978 Mar 24 '11 at 14:37
2  
well, you can always go the Force.com IDE way which is documented and supported. Using small hacks from time to time is unfortunately a necessity for salesforce as their team has a very difficult way of responding to feature requests. It subjects them to vox populi on idea exchange and there only issues that affect majority of people get proper voting and issues that affect minority never see the light of day. If you were to ask for attachment trigger screen there I could bet your idea will wait forever, I have three of those, one over 3 years in waiting. Therefore, hacks. – mmix Mar 24 '11 at 18:47
feedback

Have you tried creating the trigger from, force.com IDE??

In my opinion it should be possible from there.

link|improve this answer
feedback

Using Eclipse (Force.com IDE plug-in), right-click on your project & select "New" > "Apex Trigger". In the dialogue window that pops up, there is an "Object" dropdown / picklist, choose the object you want from this list - "Note" or "Attachment" etc. - then choose the "events" you want to trigger to execute on.

NOTE: a best practice is only one (1) trigger per object since you cannot guarantee the order in which multiple triggers on the same object will execute.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.