Message in SOW
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā04-07-2026 11:40 PM
What is the way to show message in service operation workspace . if i use onload client script then the message comes and goes off in 4 seconds i need the message to stay for sometime until the user clicks on cross. i do not want to use addwarning message.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā04-07-2026 11:57 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā04-08-2026 03:27 AM
even this is not suported in SOW.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā04-08-2026 03:54 AM
Hello @ServiceNow10sun ,
I tested this in the Australia release. It is working as expected in both the Native UI and SOW.
Could you please confirm if the same behavior is observed on your end?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā04-08-2026 04:34 AM
function onLoad() {
//Type appropriate comment here, and begin script below
var state = g_form.getValue("state");
if (state === "-5" || g_form.isNewRecord()) {
g_form.addFormMessage('hello','info');
}
}my script which i tested, my PDI version is Zurich patch 5
