How to add more action on this "+" in CSM workspace
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-29-2025 02:10 PM
Hi All,
Currently when I click on + sign it takes me to the add new interaction page in CSM/FSM configurable workspace. refer screenshot
and my requirement is to add create case, create change and create incident along with create interaction record as shown in the image.
I have trying to find the path to configure this however, I cant, your immediate help will be appreciated.
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-29-2025 10:21 PM
Hi,
Navigate to sys_ux_page_property.LIST
Open the chrome_tab property
Update the value
{
"contextual": [
"record",
"kb_view"
],
"newTabMenu": [{
"label": {
"translatable": true,
"message": "New Interaction"
},
"routeInfo": {
"route": "record",
"fields": {
"table": "interaction",
"sysId": "-1"
},
"multiInstField": "sysId"
},
"condition": {
"tableDescription": {
"table": "interaction",
"canCreate": true
}
}
},
{
"label": {
"translatable": true,
"message": "New Incident"
},
"routeInfo": {
"route": "record",
"fields": {
"table": "incident",
"sysId": "-1"
},
"multiInstField": "sysId"
},
"condition": {
"tableDescription": {
"table": "incident",
"canCreate": true
},
"roles": [
"sn_incident_write",
"itil"
]
}
},
{
"label": {
"translatable": true,
"message": "New Change Request"
},
"routeInfo": {
"route": "record",
"fields": {
"table": "change_request",
"sysId": "-1"
},
"multiInstField": ""
},
"condition": {
"tableDescription": {
"table": "change_request",
"canCreate": true
}
}
},
{
"label": {
"translatable": true,
"message": "New Case"
},
"routeInfo": {
"route": "record",
"fields": {
"table": "sn_customerservice_case",
"sysId": "-1"
},
"multiInstField": ""
},
"condition": {
"tableDescription": {
"table": "sn_customerservice_case",
"canCreate": true
}
}
}
],
"maxMainTabLimit": 10,
"maxTotalSubTabLimit": 30
}
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-30-2025 11:43 AM
Hi, The script worked. However the agent can't see the new case from his profile but I can.
Below is the script I have added ( it already had interaction, but I have added new case)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-30-2025 06:39 PM
@Priyanka Rai agent should have create access to x_tmus2_csm_tfb_oper table. Check create ACL on case table. If there is no ACL then create a new ACL (create operation) and add agent role to it
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-29-2025 10:38 PM
you can configure the chrome tab property
check this link
Chrome tab availability for specific role user in service operations workspace
If my response helped please mark it correct and close the thread so that it benefits future readers.
Ankur
✨ Certified Technical Architect || ✨ 9x ServiceNow MVP || ✨ ServiceNow Community Leader