- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-13-2024 07:50 AM
Hi Team,
I want to update author of KB article person who publish the Article.
Please suggest
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-13-2024 08:33 AM
Take a look at this KB. It should help you with your question.
Here is a screenshot of the relevant info
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-14-2024 04:14 AM
Hi @Ash41,
Happy to help find a solution. Happy Friday and coding.
To help others (or for me to help you more directly), please mark this response correct by clicking on Accept as Solution and/or Kudos.
Thanks, Robbie
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-13-2024 08:32 AM - edited 06-13-2024 08:36 AM
Hi @Ash41,
Is this a one off task/activity or something that will be required moving forward. Typically the Knowledge Base (KB) process would dictate that any update to a Published article would require the article to be Checked Out, updated and the re Published.
However, it is not uncommon to require meta data or specifics to be updated whilst leaving the article within a Published state. (Please consider any changes and any potential impact when updating)
Below is a Background Script that can be ran for a one off update for you use case.
To help others (or for me to help you more directly), please mark this response correct by clicking on Accept as Solution and/or Kudos.
Thanks, Robbie
var article = 'b8a41f8997b2ce1032ea7a200153afd6'; //The sys_id of the specific KB article to update
var kbGR = new GlideRecord('kb_knowledge');
if(kbGR.get(article)){
gs.print('Check article number is as expected - ' + kbGR.number);
kbGR.author = '62826bf03710200044e0bfc8bcbe5df1'; //The sys_id of the new/updated author
kbGR.setWorkflow(false);
//kbGR.update(); //Uncomment this line to run the update
}
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-14-2024 03:22 AM
Thank you, Robbie! 🙂
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-14-2024 04:14 AM
Hi @Ash41,
Happy to help find a solution. Happy Friday and coding.
To help others (or for me to help you more directly), please mark this response correct by clicking on Accept as Solution and/or Kudos.
Thanks, Robbie

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-13-2024 08:33 AM
Take a look at this KB. It should help you with your question.
Here is a screenshot of the relevant info