How to hide or disable Quantity dropdown selector present on catalog form (Service Portal or Catalog UI)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; } .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; } --> Description For many (not all) catalog items, we see quantity selector dropdown when requesting an item. On Service Portal, we see like: Or on normal Service Catalog UI, we see like: This article focuses on the case where you don't want the quantity selector dropdown to show up. Procedure We have a checkbox called No quantity that decides whether a certain catalog item is quantifiable or not.In order to give power to the above checkbox's value (true or false) to control the display of quantity dropdown, we have a system property called "glide.sc.use_cart_layouts"This system property that uses the sc_layout driven cart macros.By default we have set that to true. Setting this to false, will make the above checkbox handle/control the dropdown display.Now pull this field via Configure > Form Layout on the catalog item form. Setting to true => Will indicate that the catalog item is not quantifiable and will hide the dropdown.Setting to false => Will indicate that the catalog item is quantifiable and will not hide the dropdown. Applicable Versions Kingston and London. Additional Information We have an onLoad client script called Cover when layouts field not on form that hides No quantity checkbox field based on the above system property's value (glide.sc.use_cart_layouts). If the system property's value is true, it will hide the checkbox field (even pulled via Form Layout) => Otherwise, it will show on the form. Enable cart layouts: https://docs.servicenow.com/csh?topicname=t_MoveCustomizationsToCartLayouts.html&version=latest