Articles moved out of retirement do not dispay the 'Checkout' UI action.Description<!-- div.margin{ padding: 10px 40px 40px 30px; } table.tocTable{ border: 1px solid; border-color:#E0E0E0; background-color: rgb(245, 245, 245); padding-top: .6em; padding-bottom: .6em; padding-left: .9em; padding-right: .6em; } table.noteTable{ border:1px solid; border-color:#E0E0E0; background-color: rgb(245, 245, 245); width: 100%; border-spacing:2; } table.internaltable { white-space:nowrap; text-align:left; border-width: 1px; border-collapse: collapse; font-size:14px; width: 85%; } table.internaltable th { border-width: 1px; padding: 5px; border-style: solid; border-color: rgb(245, 245, 245); background-color: rgb(245, 245, 245); } table.internaltable td { border-width: 1px; padding: 5px; border-style: solid; border-color: #E0E0E0; color: #000000; } .title { color: #D1232B; font-weight:normal; font-size:28px; } h1{ color: #D1232B; font-weight:normal; font-size:21px; margin-bottom:-5px } h2{ color: #646464; font-weight:bold; font-size:18px; } h3{ color: #000000; font-weight:BOLD; font-size:16px; text-decoration:underline; } h4{ color: #646464; font-weight:BOLD; font-size:15px; text-decoration:; } h5{ color: #000000; font-weight:BOLD; font-size:13px; text-decoration:; } h6{ color: #000000; font-weight:BOLD; font-size:14px; text-decoration:; } ul{ list-style: disc outside none; margin-left: 0; } li { padding-left: 1em; } --> Symptoms Checkout UI action is missing. Cause Previous version of article is not Published or Outdated. Resolution The Checkout UI action is not appearing for this record as we are failing part of the condition: 'new KBVersioning().canCheckout(current)' From the list view on Knowledge table, we can see the previous version of this article is retired. Looking at the function 'canCheckout' found in script include 'KBVersioningSNC' there is a conditional statement:if(this._getCheckedoutRecord(current))return false;return true; This function is checking if the previous version of this article is set to Published or Outdated. If this is not, this conditional statement is failed and the condition found in the UI action is not passed. Creating a brand new knowledge article is the suggested fix here. If you would like, you can also write a small script to update the previous version to 'outdated'. At this time there is not available OOB functionality to bring an article out of retirement. Instead, you should consider creating a new article and just copy the information over. This is noted in our documentation: Note: Retired knowledge articles cannot be searched for by external users or customers. To reuse a retired article, create a new article with the same content, which is published once approved. Additional Information Retire a knowledge articlehttps://docs.servicenow.com/csh?topicname=c_RetiredKnowledgeArticles.html&version=latest