How to Hide Communicate tab in Service Operations Workspace
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-21-2024 06:17 AM
2 REPLIES 2
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-11-2024 11:12 PM
Hi @ThanigaivelS363, I came across this issue as well and was wondering if you found a way to hide or disable the communicate tab in SOW. Any guidance or updates would be greatly appreciated.
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-12-2024 05:49 AM
Hi @Jelly Ann Panan , I modified the UX screen condition of 'Communicate' screen and excluded 'incident' table.
https://<instance_name>/nav_to.do?uri=sys_ux_screen_condition.do?sys_id=4fea442243b43110411a1e0e85b8...
(function showCommunicateTab(params) {
var table = params.data.table;
var sysId = params.data.sysId;
var NEW_RECORD_SYS_ID = -1;
if (gs.nil(table) || !gs.tableExists(table) || gs.nil(sysId) || sysId == NEW_RECORD_SYS_ID || table == 'incident') return false;
return new sn_uib_tcm.CommunicationManagementUXFBaseUtil().canShowCommunicateTab(table, sysId);
})(inputProperties);