Variable from Catalog Item is showing as read-only and mandatory on the Catalog Task when a request is madeIssue When a request is made, a variable from the Catalog Item is showing as read-only and mandatory on the Catalog Task.CauseIncorrect configuration of client scripts / catalog client scripts.ResolutionUse a catalog client script to force variables to be read only with the following script: function onLoad(){$("variable_map").querySelectorAll("item").forEach(function(item) {var variable = item.getAttribute("qname");g_form.setReadOnly("variables."+ variable, true);});