Contents
Strategic Partner Links
Sepasoft - MES Modules
Cirrus Link - MQTT Modules
Resources
Knowledge Base Articles
Inductive University
Forum
IA Support
SDK Documentation
SDK Examples
Returns a list of users that are scheduled on. If no users are scheduled, it will return an empty list.
This scripting function has no Client Permission restrictions.
system.user.getScheduledUsers(userSource, date)
String userSource - The name of the user source to check for scheduled users.
Date date - The date to check schedules for. May be a Java Date or Unix Time in ms.. If omitted, the current date and time will be used. [optional]
List - List of all Users scheduled for the given date, taking schedule adjustments into account.
All
# Get all users scheduled for the date specified in a popup calendar and print their names. date = event.source.parent.getComponent('Popup Calendar').date users = system.user.getScheduledUsers("default", date) if users == None: print "No users scheduled" else: print "Scheduled users:" for user in users: print user.get(user.Username)