Is there a way to hide a Resource field in the submitted ticket - the ticket the technician will look at?
As part of another script to append text to resource questions, I added the highlighted section to try and hide the VM1_cpus Resource field and only show the plainText_VM1_cpus Resource field:
var selectedOption = $CS.getText("RES_601_QUS_605");
var newLabel = selectedOption + " key:" + "cpus";
if ($CS.isFormSubmit()) {
$CS.setValue("RES_601_QUS_645", newLabel);
$CS.hideField(["RES_601_QUS_605"]);
}