Contents
Strategic Partner Links
Sepasoft - MES Modules
Cirrus Link - MQTT Modules
Resources
Knowledge Base Articles
Inductive University
Forum
IA Support
SDK Documentation
SDK Examples
Allows a holiday to be deleted.
Permission Type: User Management
Client access to this scripting function is blocked to users that do not meet the role/zone requirements for the above permission type. This function is unaffected when run in the Gateway scope.
system.user.removeHoliday(holidayName)
String holidayName - The name of the holiday to delete. Name is case-sensitive.
UIResponse - An object with lists of warnings, errors, and info about the success or failure of the deletion
All
def printResponse(responseList): if len(responseList) > 0: for response in responseList: print "", response else: print " None" holidayName = "Labor Day" response = system.user.removeHoliday(holidayName) warnings = response.getWarns() print "Warnings are:" printResponse(warnings) errors = response.getErrors() print "Errors are:" printResponse(errors) infos = response.getInfos() print "Infos are:" printResponse(infos)
Warnings are: None Errors are: None Infos are: Holiday "Labor Day" deleted.