Incident Resolution notes should be copied to problem worknotes once the incident is resolved
(function executeRule(current, previous /*null when async*/ ) { // Add your code here var probGr = new GlideRecord('problem'); probGr.addQuery('first_reported_by_task', current.sys_id); probGr.query(); if (probGr.next()) { prob...