
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-21-2024 01:05 AM - edited 03-21-2024 01:36 AM
Hello,
How Can we set default value in Channel as Email in UI Builder Service Operation Workspace
Thanks
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-21-2024 01:57 AM
Hi @Service_RNow ,
Sir you have to go to the Classic view of the "Incident" record, Go to the "Channel" field , right click > configure Dictionary > Choice List Specification, add the below:
Set the default Value as email:
You can see in the workspace as well like below:
Taddaaa...Done
😊
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-21-2024 02:21 AM
Hi Ram,
That's pretty simple, in the payload of chrome_tab, add additional parameter to the incident related object
{
"label": {
"translatable": true,
"message": "New Incident"
},
"routeInfo": {
"route": "record",
"fields": {
"table": "incident",
"sysId": "-1"
},
"params": {
"query": "contact_type=email"
},
"multiInstField": "sysId"
}
Here you are adding additional parameter to the routeinfo as below
"params": {
"query": "contact_type=email"
}

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-21-2024 01:09 AM
Hi @Service_RNow the usual way of setting default value will work in workspace as well
Harish

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-21-2024 01:34 AM
Yes, @Harish KM
When Create New incident from here.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-21-2024 02:13 AM
Hi @Service_RNow Sandeep has already shared the steps to do.
Harish
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-21-2024 01:57 AM
Hi @Service_RNow ,
Sir you have to go to the Classic view of the "Incident" record, Go to the "Channel" field , right click > configure Dictionary > Choice List Specification, add the below:
Set the default Value as email:
You can see in the workspace as well like below:
Taddaaa...Done
😊