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
Ray VeralloRay Verallo 

How to automatically add account records to notes when creating a new note from a custom object?

Thanks in advance. I know that the notes object is not in process builder, what other options can I use to listen for new note events?
SATHISH REDDY.SATHISH REDDY.

What do you mean by "Account records to Notes"?

if you are planning to work on Note events like on insert or on update of a Note, then i would say to create an apex Trigger and workout the logic.

Ray VeralloRay Verallo
Hi Sathis, thank you for the response it is the "Add to records" button in the note object.

Is apex Trigger the only way to listen for this event?
Raj VakatiRaj Vakati
Yes .. you need to write the after insert trigger and that is the only way 

https://help.salesforce.com/articleView?id=000181538&type=1 
SATHISH REDDY.SATHISH REDDY.
Yes Ray!
Ray VeralloRay Verallo
Damn and thank you. I'm not familiar with triggers, can triggers run and pass parameters to a flow?