- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-14-2020 01:02 AM
Hi All, Can you please help me to get the report where I can list down all the incidents opened by my Team members.
Example: I am a lead of 2 groups and I wanted to have the list of incidents which have been raise by/opened by my group members and same must be visible to all members as well.
Solved! Go to Solution.
- Labels:
-
Analytics and Reports
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-14-2020 04:37 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-19-2020 11:02 PM
Hi Kumaril, Your attached screen shots are very blur. Can you please share those scripts directly ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-20-2020 01:30 AM
var getGroup = Class.create();
getGroup.prototype = Object.extendsObject(AbstractAjaxProcessor, {
getGM: function(gsysid) {
var mem = [];
var getMembers = new GlideRecord('sys_user_grmember');
getMembers.addQuery('group', gsysid);
getMembers.query();
while (getMembers.next()) {
mem.push(getMembers.getValue('user'));
}
return mem;
},
type: 'getGroup'
});
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-20-2020 03:05 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-20-2020 03:10 AM
Thanks It's working now 🙂
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-22-2023 03:14 PM
Hi Pankaj,
It return empty for me as well. How did you made it working?