How to attribute a journal entry to a different user?Issue Usually, when a Business Rule modifies the activity stream, the user who is currently logged in will be assigned to the entry. However, this article outlines the steps to assign the journal entry to a different user.ResolutionIn the Before insert/update business rule, use setJournalEntry(Object value, String userName) API to set the value of the user in the activity. For example: current.comments.setJournalEntry('Test comment', 'able.tutor');The above line will add 'Test comment' as an additional comment in the activity stream and set the user as 'Abel tutor' to the comment.Related LinksDeveloper documentation