Make SOW page read-only
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-30-2025 09:41 PM
Hi Team,
I want sow page for HRC to be read-only. How we can make form on workspace read only and UI Actions to be freeze? Like entire page must be read-only.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-30-2025 10:16 PM
why not use table.None WRITE ACL and make the fields readonly?
Also ensure proper conditions are given in UI action so that they are shown only when they are meant to be shown.
If my response helped please mark it correct and close the thread so that it benefits future readers.
Ankur
✨ Certified Technical Architect || ✨ 9x ServiceNow MVP || ✨ ServiceNow Community Leader
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-02-2025 05:37 AM
Hope you are doing good.
Did my reply answer your question?
If my response helped please mark it correct and close the thread so that it benefits future readers.
Ankur
✨ Certified Technical Architect || ✨ 9x ServiceNow MVP || ✨ ServiceNow Community Leader
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-03-2025 12:47 AM
This is affecting from users to add comment from portal side.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-30-2025 10:27 PM
Hi @preethigovi ,
Can you try with following client script:
(function() {
var uiActions = g_form.getActions();
uiActions.forEach(function(action) {
g_form.setActionVisible(action, false);
g_form.setActionEnabled(action, false);
});
var fields = g_form.getFields();
fields.forEach(function(field) {
g_form.setDisabled(field, true);
});
}
})();