- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-02-2017 08:33 AM
Hello
I would like to count distinct on the Number column in this table. Unfortunately it's not an option when I go to review the list of Aggregates. I saw another post about creating a new Indicator and Source for this to work. This seems like a lot of work for something this simple, but I did this anyways. When I'm in my report it's not an option to select.
I want to make sure that I'm not making more work for something. Can someone confirm how you can make a new field as an option to Aggregate?
Thanks
Instanbul is the version I'm running. We do have PA also.
Solved! Go to Solution.
- Labels:
-
Dashboard
-
Performance Analytics
-
Reporting
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-19-2017 12:54 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-19-2017 12:46 PM
Okay, I'm back at it. I want to confirm, I still take out the MI to make a field value. Such as:
- var sysID = 'd0871acedb004780fd9930cf9d96191b';
- var gr = new GlideRecord('sys_ui_hp_reference');
- if (gr.get(sysID)) {
- gr.reference_field = 'field_value';
- gr.setWorkflow(false);
- gr.update(); }
(ignore the numbers, that's copy\paste)
I get this when I put the code in:
but when I open it up, it's not associated to the field value:
I can tell it's not working because it's not filter on the field value in the dashboard.
Is it possible you have 10 minutes for a call? I'm sure I'm missing something small here.
Thanks!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-19-2017 12:54 PM
gr.reference_field = 'mi_field_value';
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-19-2017 12:56 PM
Got it. Changed it to MI_field_value
I think it's working. I'm going to continue testing....... THANK YOU! I'll let you know tomorrow.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-20-2017 06:01 AM
It looks like all is working. Thanks very much for your help.
Just curious, what does "Cancel after 4 hrs mean"?. Cancel the script if it's still running? Do you leave this checked on?
Is there any way to edit a script that's been submitted? I don't see that as an option in my window.
Thanks!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-20-2017 06:05 AM
Good!
Thats if you have a long running script, scripts like this should complete in less then a second.
After a script has run, you need to create another script to if you want to undo
Can you mark this answered.