- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-01-2023 04:46 AM
I created a couple of knowledge base articles linked to a certain configuration item.
When I now open this CI in the CMDB, I would expect that the linked KB articles are shown somewhere here...but I cannot find them. Does anybody know how to see them?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-01-2023 04:59 AM
Hi @Ulrich Schulte ,
There is no Existing relationship exists as what you are looking at.
However, Knowledge articles are related to configuration items using m2m_kb_ci table
Here is the custom relationship you can define using
System Definition > Relationships
and in query with use the below script
(function refineQuery(current, parent) {
// Add your code here, such as current.addQuery(field, value);
current.addQuery('cmdb_ci', parent.sys_id);
current.addQuery('kb_knowledge.workflow_state', '!=', 'retired');
current.addQuery('kb_knowledge.u_approval', '!=', 'Rejected');
})(current, parent);
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
3 weeks ago
Thx - unfortunately customization is not welcome in our company...the policy is to do things with OOTB functionality only. Hope ServiceNow might enhance this in some future release then.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
3 weeks ago
I know a lot of people are going OOTB way but some large key things are missing in ServiceNow for Knowledge Management. I also added a tab with list of CI associated to the Support Group in the Support Group form. These two things drastically reduced the time needed for the Knowledge Management team to help Support Group Managers and CI Owners find their articles. Our company does have a Demand team to make sure there is value in an enhancement before hand. Otherwise, agree in that regard you don't want duplicate enhancements or things that are not worth the lift.
