want to see applications services having knowledge article and without knowledge articles in report
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-13-2025 04:31 AM
User want to see applications services having knowledge article and without knowledge articles in report.
Kindly suggest how to achieve this ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-14-2025 03:29 AM
Hi @Dr Atul G- LNG , There is no other way to fulfill this requirement ?
Even using database view as well ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-14-2025 03:35 AM
I think you can do this via a DB view. It’s similar to the Incident table and SLA task table. You’ll need to find the exact tables, meaning the AS table and the related Knowledge table, and then build a WHERE clause. Just follow the OOTB setup for incidents and task SLAs and build your DB view along the same lines.
If my response proves useful, please indicate its helpfulness by selecting " Accept as Solution" and " Helpful." This action benefits both the community and me.
Regards
Dr. Atul G. - Learn N Grow Together
ServiceNow Techno - Functional Trainer
LinkedIn: https://www.linkedin.com/in/dratulgrover
YouTube: https://www.youtube.com/@LearnNGrowTogetherwithAtulG
Topmate: https://topmate.io/atul_grover_lng [ Connect for 1-1 Session]
****************************************************************************************************************
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-13-2025 04:39 AM
@AshwiniSawant Create a Database view joining cmdb_ci_service(update your table name here) with kb_knowledge (left join)
in the view services with a matching KA will show the data and services without KA's will show null KA field's.
you can then build a report from this view with filter conditions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-13-2025 08:25 AM
Hello Devi,
Thank you for your prompt response.
Currently I am using Application Services (cmdb_ci_service_auto) and Knowledge related to products (m2m_kb_ci).
I have created database view for this also used left join.
But I'm not getting expected results, I'm only getting all application services which are not having knowledge article attached to them.
regards,
Ashwini