- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
5 hours ago - last edited 5 hours ago
It is 'Additional comments(Customer Visible)' in UI16/Native view but it is just 'Additional comments' in SOW.
We need to have the same field name in SOW view as per U116/Native view
We're not able to find the common dictionary record which contains the same name.
also we're not able to see the dictionary field record (related to UI16 view), that have the name 'Additional comments(Customer Visible)' .
PFB attached screenshots of both view. Please advise.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
4 hours ago
another fix is create your own onload client script on INC which runs on new record and checks if it's SOW
It worked for me on new record in SOW
function onLoad() {
// Check if it's a new record
if (g_form.isNewRecord() && top.location.href.indexOf('/now/sow/record/incident/-1') > -1) {
g_form.setLabelOf('comments', 'Additional comments (Customer visible)');
}
}
output
💡 If my response helped, please mark it as correct ✅ and close the thread 🔒— this helps future readers find the solution faster! 🙏
Ankur
✨ Certified Technical Architect || ✨ 10x ServiceNow MVP || ✨ ServiceNow Community Leader
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
4 hours ago
@Ankur Bawiskar I need to have that same label when I'm creating a new Incident record in SOW view and also after the Incident record is created in SOW view as well. Please let me know, Thanks!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
4 hours ago
the script I shared worked for new record, there you can enhance so that it shows for new and existing record both
function onLoad() {
// Check if it's a new record
if (top.location.href.indexOf('/now/sow/record/incident/') > -1) {
g_form.setLabelOf('comments', 'Additional comments (Customer visible)');
}
}
💡 If my response helped, please mark it as correct ✅ and close the thread 🔒— this helps future readers find the solution faster! 🙏
Ankur
✨ Certified Technical Architect || ✨ 10x ServiceNow MVP || ✨ ServiceNow Community Leader
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
3 hours ago
@Ankur Bawiskar Thanks, It worked for Me
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
3 hours ago
Hi @sharsha,
Check for the UI builder; that is the way you can achieve it.
Let me check this as well!!
If you find my answer useful, please mark it as helpful and correct. 😊
Regards,
Soham Tipnis
ServiceNow Developer || Technical Consultant
LinkedIn: www.linkedin.com/in/sohamtipnis10