- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
3 weeks ago
In Service Operations Workspace (SOW), for the Interaction record, the Work Notes field is displayed both in the form layout (left side) and in the Activity Stream section (right side).
My requirement is to hide the Work Notes field from the form layout only, while still keeping the Work Notes composer available in the Activity Stream.
I noticed that when I remove the work_notes field from the form layout/view, it also disappears from the Activity Stream.
Has anyone implemented this requirement? What is the recommended approach in SOW? Should this be handled through UI Builder, Workspace Form Views, Client Scripts, or another configuration?
Any guidance would be appreciated.
Thanks.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
3 weeks ago
Hi @AkurathiPrK ,
You can place the Work Notes field within a section, such as Notes, and hide the entire section using an onLoad Client Script specifically for the SOW view. This will hide the section and, consequently, the Work Notes field as well.
This is the same approach used OOB on the Incident record.
function onLoad() {
g_form.setSectionDisplay('notes', false);
}
If you find this information useful, please mark it as Helpful and Accept the Solution.
Regards,
Harish
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
3 weeks ago
Hi @AkurathiPrK ,
You can place the Work Notes field within a section, such as Notes, and hide the entire section using an onLoad Client Script specifically for the SOW view. This will hide the section and, consequently, the Work Notes field as well.
This is the same approach used OOB on the Incident record.
function onLoad() {
g_form.setSectionDisplay('notes', false);
}
If you find this information useful, please mark it as Helpful and Accept the Solution.
Regards,
Harish
