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
Mj12Mj12 

Weeky Chatter Post

hi,

 

my client wants to have a weekly email that displays the list of records being updated(only) to keep track of what record is being updated.

 

my initial plan is to do it in workflow rule but i learned that there are some limitations(time-dependent functionality is only used when record is created only ONCE)

 

im thinking of using a chatter. is it possible?

 

 

thanks in advance,

 

markpogi

Best Answer chosen by Admin (Salesforce Developers) 
ngabraningabrani

Hi,

You can write an Apex batch script. This batch script will find all the objects of type FeedItem that meet the criteria using an appropriate SOQL statement. We can then send an email with all the FeedItems.

All Answers

ngabraningabrani

Hi,

You can write an Apex batch script. This batch script will find all the objects of type FeedItem that meet the criteria using an appropriate SOQL statement. We can then send an email with all the FeedItems.

This was selected as the best answer
Mj12Mj12

Hi ngabrani,

 

Thanks! though i have yet to research on using Apex batch and time is pushing against me bec of the deadline.

thank you for that great idea ngabrani :)

 

Thanks,

Markpogi