Change management configurationsIssue <!-- 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 1. How to remove Template Management from category field as an option? 2. How to enable/display user criteria on standard change templates? Cause Expected behavior Resolution 1. How to remove Template Management from category field as an option? if you do not wish to deactivate the Template Management category the reference qualifier will need to be updated accordingly. <Instance name>/nav_to.do?uri=item_option_new.do?sys_id=4b027814932002009ca87a75e57ffb47 Below is an example of how the current reference qualifer could be customized to hide this option: javascript:'active=true^title!=Template Management^sc_catalog=' + new StdChangeUtils().getValue('catalog') + '^' + new StdChangeUtils().getCategoriesInHierarchy(new StdChangeUtils().getValue('category'), 5) This is just adding another condition to the beginning of the script that filters out categories with the title 'Template Management'. Again, this is simply an example of how this customization can be created. If this does not suit your business requirements, your team will have to implement/customize the reference qualifier. There is also the option of changing this qualifier to dynamic. 2. How to enable/display user criteria on standard change templates? The user criteria is not displaying for standard change templates due to the following system property: ---- Use "User Criteria" to define access to catalog items and categories ( glide.sc.use_user_criteria) Use user criteria to define access to catalog items and categories. Entitlements are not honored if set to true: Type: true | false Default value: true Service Catalog properties https://docs.servicenow.com/csh?topicname=r_ServiceCatalogProperties.html&version=latest ---- This is currently set to false in dev instance. When this is set to false, user criteria will be ignored. This is why the client script hides the 'Available for' 'Not available for'. Additional Information Reference Qualifiers https://docs.servicenow.com/csh?topicname=c_ReferenceQualifiers.html&version=latest Create a dynamic filter option https://docs.servicenow.com/csh?topicname=t_DynamicFilterOptions.html&version=latest#t_DynamicFilterOptions Service Catalog security https://docs.servicenow.com/csh?topicname=p_ServiceCatalogSecurity.html&version=latest