
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-08-2018 04:03 PM
This should be a 10 minute thing but I am trying to figure this out for some time now and I can't resolve it. My Additional Notes are just not updating the case- even as Admin.
I want to make the close notes available on the portal so that the Customer can see them on his case. For this I created a Business Rule that runs after the case changes to Resolvd and when the Close Notes have changed.
And here is my advance tab
This should work, but it doesn't. I am Admin when I resolve this case so it can't be the ACL.
Here is the System Log
Any help is appreciated.
Thanks
Solved! Go to Solution.
- Labels:
-
Customer Service Management

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-08-2018 05:26 PM
Oh sorry didn't realise this was in scope! You won't be able to use that API.
Do you have cross-scope read access to the comments field?
What about this
current.comments = current.getValue('close_notes');
ServiceNow Nerd
ServiceNow Developer MVP 2020-2022
ServiceNow Community MVP 2019-2022

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-08-2018 04:18 PM
I don't find any issue with your script.
Can you try
current.comments.setValue(current.close_notes);
Please mark this response as correct or helpful if it assisted you with your question.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-08-2018 04:29 PM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-08-2018 04:39 PM
You sure, it is not getting logged in the activity?
Are you able to add comments from the task form itself manually?
What happens if you try to hard-code it?
current.comments = 'ABC'
Please mark this response as correct or helpful if it assisted you with your question.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-08-2018 05:19 PM
Hardcoded works!