Unable to submit a request or move between tabs using Order Guide after San Diego upgradeDescriptionThe issue happens when requesting an item (order guide). When submitting an order guide request (check out button) or move between tabs in the Order Guide form, the page will not navigate away from the current form. Checking the browser console, you could see the error message below: Uncaught ReferenceError: item_id is not defined at e.addInputToForm (js_includes_catalog.jsx?v=06-30-2022_1211&lp=Mon_Sep_19_03_37_27_PDT_2022&c=42_1387:7891:48) at guideSubmit (js_includes_catalog.jsx?v=06-30-2022_1211&lp=Mon_Sep_19_03_37_27_PDT_2022&c=42_1387:449:8) at guideNext (js_includes_catalog.jsx?v=06-30-2022_1211&lp=Mon_Sep_19_03_37_27_PDT_2022&c=42_1387:390:1) at HTMLButtonElement.onclick (com.glideapp.servicecatalog_cat_item_guide_view.do?sysparm_guide=3f6924371bfa0550f1eb10231d4bcb5e&sysparm_active=e587739edbbe89104f5b59e5ca9619be&sysparm_catalog=e0d08b13c3330100c8b837659bba8fb4&sysparm_catalog_view=catalog_default&sysparm_view=text_search:723:491)Release or EnvironmentSan DiegoCauseThe reason for this issue is because of 2 similar files present under 2 different plugins (com.glideapp.servicecatalog" AND "com.glideapp.servicecatalog.platform). And one file is an old one and it gets picked up randomly. The issue happens in the JS layer. Missing item_id in UI page com.glideapp.servicecatalog_cat_item_guide_view which was called from js_includes_catalog.jsx. ResolutionWorkaround: Create a UI script in the affected instance. Global = True script: addLateLoadEvent(function() { if (window.g_cart && typeof(g_cart.addInputToForm) == 'function' && g_cart.addInputToForm.argumentNames().length == 1 && typeof(g_cart.getVariables) == 'function') { g_cart.addInputToForm = function(form, item_id) { // build a post string from options displayed jslog("addInputToForm"); var that = this; var variables = this.getVariables(null, false, item_id); Object.keys(variables).forEach(function(key) { addInput(form, "HIDDEN", key, variables[key].value); }); } } });Additional InformationThis is related to PRB1569424 which is fixed in Tokyo