Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-15-2021 06:47 AM
unable to get the Value of short description using GlideAggregate
var agg = new GlideAggregate('incident');
agg.addAggregate('COUNT', 'category');
agg.orderBy('assigned_to');
agg.orderBy('state');
agg.addQuery('sys_created_on', '>=', 'javascript:gs.beginningOfLast12Months()');
agg.query();
while (agg.next()) {
gs.print(agg.getValue("short_description"));
}
Note: i doesnt want to use GlideRecord .
Is it possible to get the value of a field using GlideAggregate
Solved! Go to Solution.
Labels:
- Labels:
-
Scripting and Coding
1 ACCEPTED SOLUTION
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-15-2021 08:41 AM
Hi
Try out this
var agg = new GlideAggregate('incident');
agg.addAggregate('MAX', 'reopen_count');
agg.orderByDesc('short_description');
agg.orderBy('state');
agg.addQuery('sys_created_on', '>=', 'javascript:gs.beginningOfLast12Months()'); agg.query();
if(agg.next()) {
gs.print(agg.getValue("short_description"));
}
Regards,
Harika
10 REPLIES 10
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-15-2021 08:41 AM
Hi
Try out this
var agg = new GlideAggregate('incident');
agg.addAggregate('MAX', 'reopen_count');
agg.orderByDesc('short_description');
agg.orderBy('state');
agg.addQuery('sys_created_on', '>=', 'javascript:gs.beginningOfLast12Months()'); agg.query();
if(agg.next()) {
gs.print(agg.getValue("short_description"));
}
Regards,
Harika