We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aac769d commit 3da2db5Copy full SHA for 3da2db5
GlideRecord/Get all users whose email is empty/script.js
@@ -0,0 +1,9 @@
1
+var users = [];
2
+var gr = new GlideRecord('sys_user');
3
+gr.addNullQuery('email');
4
+gr.query();
5
+while(gr.next())
6
+{
7
+ users.push(gr.name);
8
+}
9
+gs.info("Users without email are : " +users);
0 commit comments