- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-14-2024 10:38 PM
Hi Service Now community I activate this functionality for incident table just by activation email_reply ui macro and then I created and activated the a property ....But now it's visible on every other table ,How could I made it visible just for the incident table ..Thank you for the support
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-15-2024 07:10 AM - edited 08-15-2024 07:11 AM
Follow the instructions in this Support article, it is the only way this can be achieved:
https://noderegister.service-now.com/kb?id=kb_article_view&sysparm_article=KB1220006
There 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();
}
This approach is also discussed here: https://www.servicenow.com/community/developer-forum/need-to-hide-quot-reply-all-quot-and-quot-forwa...
Regards
Paul
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-15-2024 07:10 AM - edited 08-15-2024 07:11 AM
Follow the instructions in this Support article, it is the only way this can be achieved:
https://noderegister.service-now.com/kb?id=kb_article_view&sysparm_article=KB1220006
There 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();
}
This approach is also discussed here: https://www.servicenow.com/community/developer-forum/need-to-hide-quot-reply-all-quot-and-quot-forwa...
Regards
Paul
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
3 weeks ago
Hi @Paul Curwen
How to disable this 'Reply' button from ticket activity log in email body? i don't find any UI macro and anything in email script. do you know where else it can be configured and how to disable it
Thanks,
Sravan Krishna