How to correctly use the "run" method of the API "SNC.ServicePopulatorRunner()"SummaryThe "run" method of the API "SNC.ServicePopulatorRunner()" would expect a glide record as its parameter.ReleaseAll releasesInstructionsPlease check the following sample script which demonstrates how the "run" method of the API "SNC.ServicePopulatorRunner()" should be called in a correct way: var gr = new GlideRecord("cmdb_ci_service_by_tags");gr.query("calculation_status",1); gr.next();var servicePopulatorRunner = new SNC.ServicePopulatorRunner('INTERACTIVE');servicePopulatorRunner.run(gr);