HOW TO PRINT THE RESULT OF A BUSINESS RULE ON THE CONSOLE?
for example i want to print all the active records i created a business rule by following conditionswhen to run: BEFORE INSERT/UPDATE SCRIPT:var x=new GlideRecord('incident');x.addActiveQuery();x.query();while(x.next()){gs.print('active r...
