- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-16-2018 04:52 AM
Howdy Community,
I can open a Knowledge Article in a new window via ServiceNow URL field (Link button).
https://XXXXX.service-now.com/kb_view.do?sysparm_article=KB0511177 #ph
Permalink Anchor
But the knowledge article opens outside of the portal.
Does anyone know how to open the article at an anchor; staying inside of a branded portal?
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-16-2018 05:52 AM
"/pgdg?id=kb_article&sys_id=sys_id of article"
//here you can get the sys_id of record by opening the knowledge table. In the search enter article number in the number field and press enter. Now right click on the article and click on copy sys_id. Recplace the"sys_id of article" with this value.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-16-2018 05:08 AM
Hello Lon Landry
Pass the url as "/sp?id=kb_article&sys_id=sys_id of article"
if you want to use an anchor tag. Use this:
<a href="/sp?id=kb_article&sys_id=sys_id of article" target="_blank">Knowledge Article</a>
Thanks
Abhijeet Upadhyay
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-16-2018 05:39 AM
If my Service Portal is pgdg.
would this be the correct syntax?
/sp?pgdg=kb_view.do%3Fsysparm_article%3DKB0511177%20#ph
Thanks for your time,
Lon

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-16-2018 05:52 AM
"/pgdg?id=kb_article&sys_id=sys_id of article"
//here you can get the sys_id of record by opening the knowledge table. In the search enter article number in the number field and press enter. Now right click on the article and click on copy sys_id. Recplace the"sys_id of article" with this value.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-16-2018 07:14 AM
I was able to open the article in the portal using the syntax you suggested.
But I cannot get the page to open at the anchor.
Anchor example: <a name="us"></a>
Link: #us
Do I need an anchor that contains the KB article & system ID?