Modiboyina Hareesha

Questions

0 Answers9

Here's a solution outline based on your requirements for automating the change request process in ServiceNow: Solution Outline for Change Request Management in ServiceNow 1. Condition Check: Create a scheduled...

View Question
1 Vote 1.90K views Asked question ServiceNow
1 Answer8

var ga = new GlideAggregate('incident'); ga.addAggregate('COUNT'); ga.groupBy('state'); // Group by the state field ga.query(); while (ga.next()) { var state = ga.getDisplayValue('state'); var count = ga.getAggregate('COUNT'); gs.info('State: ' + state +...

View Question
1 Vote 2.24K views Answered question ServiceNow
Scroll to top