VaranAwesomenow
Mega Sage
Options
- Subscribe to RSS Feed
- Mark as New
- Mark as Read
- Bookmark
- Subscribe
- Printer Friendly Page
- Report Inappropriate Content
09-06-2021
08:27 AM
var count = new GlideAggregate('customer_account');
count.addAggregate('COUNT');
count.query();
var accounts = 0;
if (count.next())
accounts = count.getAggregate('COUNT');
gs.info(accounts);
Labels:
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.