Visual Task Board Check List Templates: Where is it stored and how can we configure sharing those?Issue <!-- 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; } table tr td { padding: 15px; } .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:; } hr{ border-top-width: 1px; border-top-style: solid; border-top-color: #cccccc; } ul { list-style: disc outside none; margin-left: 0; } li { padding-left: 1em; } --> Overview As we know, we provide functionality of creating checklists on Visual Task Boards which can be shared with multiple users. Checklists help you track the progress of tasks on your Visual Task Board. Checklists are available as a tab in the card details. A template saves time by creating checklist items automatically. You can add, edit, or remove checklist items without impacting the template. Where is it stored? The checklist template is stored in checklist_template table. Default functionality On out-of-box, creating checklist templates will not be accessible by anyone but the user who created it.This is handled via read and write ACLs we have defined on checklist_template table that have the following advanced script present: answer = getChecklistTemplateAclAnswer();function getChecklistTemplateAclAnswer() { if (current.sys_created_by.equals(gs.getUserName())) return true; return false;} These ACLs defined the behavior as mentioned above.If this needs to be changed, then new ACLs can be created as per business requirements (like sharing to a certain user group, or roles, or company, etc.) We highly recommend not to modify the out-of-the-box ACLs as they can change in newer version - as we aim in enhancing our security of our product Additional Information Visual Task Board checklists: https://docs.servicenow.com/csh?topicname=c_VisualTaskBoardChecklists.html&version=latest Create checklist template: https://docs.servicenow.com/csh?topicname=create-checklist-template.html&version=latest