How to view the Resolution Notes in Service Portal Incident
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-02-2018 03:59 AM
Hi All,
I have one doubt in Service Portal. When an end user creates and Incident it is submitted and agent starts working on that ticket.
Additional comments added by the agent gets captured on the ticket form. But once the agent marks the Incident as resolved how will it get captured on the Ticket form in Service Portal.
Because end user must want to view the resolution notes/close notes.
Can anyone let me know on the same.
Thanks,
SNOW@Das
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-02-2018 05:16 AM
Hi,
its very simple just
open a Ticket Field Widget(if u want to changes u should clone and on page "ticket")
just change server side code like
if (gr.getValue('state') == 6)
{
fields.push($sp.getField(gr, 'close_notes'));
fields.push($sp.getField(gr, 'close_code'));
}
simply u can add above code at just after this line
var fields = $sp.getFields(gr, 'number,state,priority,sys_created_on');
it will show you close code and resolution info ...u can use this for other fields also whichever u want to display.
if any question reply same
Regards,
Varsha
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-02-2018 05:25 AM
Hi Varsha,
Can you post some screenshots like where do I need to paste the script and make the changes?
It will be helpful for me ..
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-02-2018 06:19 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-02-2018 06:35 AM