How to remove "New Change Requests" from the Interaction record in Service Operations workspace

Ken61
Giga Guru

Hello All,

I am looking for how to remove "New Change Requests" from the Interaction record in Service Operations workspace.

I need to get this removed to reduce the number of change requests created in error. Screenshot attached.Screenshot 2024-04-18 224210.png

 

1 ACCEPTED SOLUTION

Astik Thombare
Tera Sage

Hi @Ken61 ,

 

Follow the below steps
 
  1. Navigate to All > Now Experience Framework > Experiences.
  2. From the list of UX applications, select Service Operations Workspace.
  3. On the UX Application form, from the UX Page Properties related list, select the chrome_tab property.
  4. On the UX Page Property page, when the Type field is set to json, edit the Value field, for example, to add or delete routes or tables.
  5. Click Update.

As you have to remove Change request . remove the change request content of json .so finally it will look like below 

 

 

{
	"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
				}
			}
		}
	],
	"maxMainTabLimit": 10,
	"maxTotalSubTabLimit": 30
}

 

 

Now the change request option will not visible in service operation workspace 

 

AstikThombare_0-1713503434805.png

 

Reference -https://www.servicenow.com/community/developer-blog/servicenow-things-to-know-54-hide-interaction-in....

 

   If my reply helped with your issue please mark helpful 👍 and correct ✔️ if your issue is resolved.

 

                         By doing so you help other community members find resolved questions which may relate to an issue they're having

 

 

Thanks,

Astik

View solution in original post

3 REPLIES 3

Astik Thombare
Tera Sage

Hi @Ken61 ,

 

Follow the below steps
 
  1. Navigate to All > Now Experience Framework > Experiences.
  2. From the list of UX applications, select Service Operations Workspace.
  3. On the UX Application form, from the UX Page Properties related list, select the chrome_tab property.
  4. On the UX Page Property page, when the Type field is set to json, edit the Value field, for example, to add or delete routes or tables.
  5. Click Update.

As you have to remove Change request . remove the change request content of json .so finally it will look like below 

 

 

{
	"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
				}
			}
		}
	],
	"maxMainTabLimit": 10,
	"maxTotalSubTabLimit": 30
}

 

 

Now the change request option will not visible in service operation workspace 

 

AstikThombare_0-1713503434805.png

 

Reference -https://www.servicenow.com/community/developer-blog/servicenow-things-to-know-54-hide-interaction-in....

 

   If my reply helped with your issue please mark helpful 👍 and correct ✔️ if your issue is resolved.

 

                         By doing so you help other community members find resolved questions which may relate to an issue they're having

 

 

Thanks,

Astik

Perfect @Astik Thombare 

*************************************************************************************************************
If my response proves useful, please indicate its helpfulness by selecting " Accept as Solution" and " Helpful." This action benefits both the community and me.

Regards
Dr. Atul G. - Learn N Grow Together
ServiceNow Techno - Functional Trainer
LinkedIn: https://www.linkedin.com/in/dratulgrover
YouTube: https://www.youtube.com/@LearnNGrowTogetherwithAtulG
Topmate: https://topmate.io/atul_grover_lng [ Connect for 1-1 Session]

****************************************************************************************************************

Ken61
Giga Guru

hank You @Astik Thombare