Users don't see resolution notes. The only see the Additional comments
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-29-2024 04:46 AM
Hi,
Users don't see resolution notes. They only see the Additional comments
Is there any way to achieve this
@Maik Skoddow
@Mark Roethof
@Gaurav Shirsat
@Community Alums
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-01-2024 05:22 AM - edited 03-01-2024 02:07 PM
Hi @sabasiddiqui777 ,
OOTB this will not work instead you can create a Business rule to update comment which will be visible in portal.
Before update BR,
table: Incident
In advanced you can write the below script :
(function executeRule(current, previous /*null when async*/) {
current.comments.setJournalEntry('Resolution Code:\n' + current.close_code);
current.comments.setJournalEntry('Resolution Notes:\n' + current.close_notes);
})(current, previous);
Result:
Please mark this comment as Correct Answer/Helpful if it helped you.
Regards,
Swathi Sarang
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-04-2024 01:53 AM
Hi @swathisarang98
But if the caller is resolving from the portal itself then it is not showing .
Is there any way to achieve this
Please refer below screenshot
Regards,
Saba Siddiqui