Articles in Draft stage
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
4 weeks ago
Hi all,
I wanted to know what can be done for the articles which are in draft stage. However, the authors are not available to publish the article
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
4 weeks ago
One method that comes to mind is to create a Flow to automatically change the author of draft knowledge articles and either use a hardcoded fallback user, like the Knowledge Manager or a lookup based on the article category or assignment group. Something like;
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
4 weeks ago
Hi @gopunkutty,
Write a fix Script "Retire Draft Article":
var kbArticle = new GlideRecord('kb_knowledge');
kbArticle.addQuery('workflow_state','draft');
kbArticle.setValue('workflow_state','retired');
kbArticle.setWorkflow(false);
kbArticle.updateMultiple();Thanks & Regards,
Muhammad Iftikhar
If my response helped, please mark it as the accepted solution so others can benefit as well.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
4 weeks ago
Hi @gopunkutty ,
Admin can publish it or Knowledge Manager can publish it. It depends on the associated workflow as well or can be done manually.
Regards,
Nikhil Bajaj
ServiceNow Rising Star-2025
