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
KyriacosKyriacos 

Transfer attachment from the Case object to the Account object

Hi trying to figure out what is the best way to either copy/move attachments from the case object to the account object?

Can this be achived either by a trigger or using the process builder or visual flow?
Best Answer chosen by Kyriacos
SFDC Prime SquadSFDC Prime Squad
If you are trying to do this for your existing cases : write a batch class and run it one time. It will add all attachments on cases to accounts

If you want to do this for new cases - you can try writing an Apex Trigger or Visual Flow with PRocess Builder.

There is not standard way to achieve this.