How to make a Multi Row Variable Set Mandatory?Issue This article will explain how you can set an entire Multi Row Variable Set as Mandatory in the Service Catalog.CauseThe Multi Row Variable Set does not have any 'Mandatory' Field on its Form and therefore it may not be clear how the 'Mandatory' setting can be applied.ResolutionPlease use an onLoad Client Script for the Catalog Item that is using the "g_form" API and the "setMandatory" Method. Example: If the Multi Row Variable Set has the Internal Name of "mrvs_needing_mandatory" then you can use the following code in an onLoad Client Script: g_form.setMandatory("mrvs_needing_mandatory", true);