Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-07-2023 09:47 PM
var gr = new GlideRecord('sys_user');
gr.addEncodedQuery('locationISEMPTY()');
gr.query();
while (gr.next())
{
gs.print(gr.user_name);
}