
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-12-2025 09:29 AM
Hello Everyone,
I would like to know how can i set the Priority from 4-Low to 3-Moderate when someone clicks on "New Incident" option [Highlighted in the attached screenshot].
Where i can find the relevant configuration to do this change?
What are those "New Incident"/"New Change Request"? It's not UI action.
Kindly suggest. Thanks in advance.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-12-2025 11:33 AM
Hi @Arun Kumar D ,
create a onload client script on incident table
with UI type =All
and uncheck the global and populate the view name = sow_new_record
update the impact and urgency values as per your priority lookup rules
function onLoad() {
//Type appropriate comment here, and begin script below
if(g_form.isNewRecord()){
g_form.setValue('urgency','3'); //change values of impact and urgency as per your priority lookup rules
g_form.setValue('impact','3');
g_form.setValue('priority','3');
}
}
Please mark my answer as helpful/correct if it resolves your query.
Regards,
Chaitanya
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-12-2025 11:16 AM
Hi Arun,
Are you specifically looking to set the priority to 3-Moderate when someone clicks on the New Incident button? or is it going to take effect throughout the platform?
You can find the configuration for New Incident/New Change Request in the chrome_tab UX Page Property.
Replace the instance-name with your instance name or follow the steps below: https://instance-name/sys_ux_page_property.do?sys_id=df0c9cb97340301045216238edf6a785&sysparm_record...
- Navigate to All > Now Experience Framework > Experiences.
- From the list of UX applications, select Service Operations Workspace.
- On the UX Application form, from the UX Page Properties related list, select the chrome_tab property.
If my response helped you, please click on "Accept as solution" and mark it as helpful.
- Saloni

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-12-2025 11:24 AM
Hi Saloni,
Thanks for your response.
Yes, i want to set the priority to 3-Moderate when someone clicks on the New Incident button. Don't want this to effect on native UI. This change should only be applicable if someone creates incident on SOW.
The chrome_tab is just giving the details of the tabs but where we can find the place where the field values set.
For Ex. Priority is current set as 4-Low as per OOB. I just wanted to change it to 3-Moderate.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-12-2025 11:33 AM
Hi @Arun Kumar D ,
create a onload client script on incident table
with UI type =All
and uncheck the global and populate the view name = sow_new_record
update the impact and urgency values as per your priority lookup rules
function onLoad() {
//Type appropriate comment here, and begin script below
if(g_form.isNewRecord()){
g_form.setValue('urgency','3'); //change values of impact and urgency as per your priority lookup rules
g_form.setValue('impact','3');
g_form.setValue('priority','3');
}
}
Please mark my answer as helpful/correct if it resolves your query.
Regards,
Chaitanya
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-12-2025 11:41 AM
Hello @Arun Kumar D ,
I was unable to see your screenshot but understood your request. Here is the solution proposed:
- Create a Client script, onLoad to achieve this result
Steps:
Open a 'new' incident form
Use the context menu (hamburger menu) and open Configure>Client Scripts
Select 'new' to open the client script form and enter the below code