How to disable "reply", "reply All" and "forward" option from Activity Log for a specific tableSummaryThe system property glide.ui16.emailStreamResponseActions enables the "reply", "reply All" and "forward" options in the activity stream. ReleaseAll ReleasesInstructionsThere is no OOB way to disable it for a specific table. The only possible way is to create an on-load client script and add this script to the specific table function onLoad() {$j('button[reply-type="replyAll"]').toggle();$j('button[reply-type="reply"]').toggle();$j('button[reply-type="forward"]').toggle();} Related LinksRefer to this community article https://www.servicenow.com/community/developer-forum/need-to-hide-quot-reply-all-quot-and-quot-forward-quot-option/m-p/2222859