- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-14-2015 06:09 AM
When I request publication or retirement of a knowledge article and the workflow creates an approval (in the sysapproval_approver table), the "Approval for" field (sysapproval) in that table is blank. According to the manual, Email Notifications - ServiceNow Wiki section 8.2 Linking to Related Records, it is linked to the related Task record (incident, change, problem, etc). In the case of knowledge article approval, there is no task.
Is there any way to link to the knowledge article so that an e-mail notification can pick out things like the short description of the article?
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-14-2015 07:25 AM
If the approval is not for a task it uses the document_id field. In that case you could look that up through a mail script and pull attributes.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-17-2016 09:04 AM
as a side note to this.. i found that an event is fired kb_knowledge.approval.inserted when an approval is requested. But in our instance I cound't see this event registered in event registry. So I added this in the event registry and used that to trigger notification for this.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-12-2016 08:52 AM
This works great thank you. I am setting this same notification up but for a rejection notification back to the submitter. What is the correct available user to select for "who will receive". I am having issues with this one. Thank you
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-25-2016 09:24 PM
Hi John,
I am also working on similar requirement.
I am using below to links in my email template,
Click here to view Approval Request: ${URI_REF}
Click here to view Knowledge Article: ${document_id.URI_REF}
But it is not displaying the links.
Can you please help me on this, how you have configured.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-27-2016 04:18 AM
Have you tried putting the email subject and body directly in the notification rather than using a template (just as a test)? I've noticed that templates don't work when the notification responds to an event and there might be other cases as well.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-21-2017 08:45 PM
Hi madanm,
Today I faced the similar issue.
Click here to view Approval Request: ${URI_REF} for knowledge is not working.
It's showing 'LINK' which is also redirecting to the Approval table correctly, but I need to display a number.
Did you get any solution on this?