Summary
With the SC Catalog Item widget, the Delivery Time & Quantity fields are visible on the catalog item page.
Release
Orlando, Paris
Instructions
Please check the video attached.
Related Links
To perform this update on multiple catalog items at the same time, you can run the below background script.
var gr = new GlideRecord("sc_cat_item");
gr.addEncodedQuery("type!=bundle^sys_class_name!=sc_cat_item_guide^type!=package^sys_class_name!=sc_cat_item_content^no_quantity_v2=false^no_delivery_time_v2=false");
gr.query();
gr.no_quantity_v2 = 'true';
gr.no_delivery_time_v2 = 'true';
gr.updateMultiple();