Trying to get a business rule to compare date/time field to current date/time and set a variable
I have the following script: (function executeRule(current, previous /*null when async*/) {var gr = new GlideRecord('x_uno15_nrapp_push_notification');gr .addEncodedQuery('scheduled_onISNOTEMPTY');gr .query();var scheduled = new GlideDateTime(getValu...
