We've updated the ServiceNow Community Code of Conduct, adding guidelines around AI usage, professionalism, and content violations. Read more

Set default value in Channel as Email in UI Builder Service Operation Workspace

Service_RNow
Mega Sage

Hello,

How Can we set default value in Channel as Email in UI Builder Service Operation Workspace

 

RamSingh_0-1711008253021.png

 Thanks

 

 

2 ACCEPTED SOLUTIONS

Not applicable

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:

SandeepDutta_0-1711011375048.png

Set the default Value as email:

SandeepDutta_1-1711011394829.png

 

You can see in the workspace as well like below:

SandeepDutta_2-1711011438110.png

 

Taddaaa...Done

😊

 

View solution in original post

Manoj89
Giga Sage

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"
                }

 

View solution in original post

5 REPLIES 5

Manoj89
Giga Sage

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"
                }