Sepasoft MES Module Suite
system.mes.deleteSchedule
These script functions are used to delete operation schedule(s).
system.mes.deleteSchedule(fromDate, toDate, category)
Delete the list of operation schedules fall into the specified category.
Syntax
system.mes.deleteSchedule(fromDate, toDate, category)
- Parameters
Date fromDate - The date to begin deleting schedules.
Date toDate - The date to stop deleting schedules.
String category - Deletes all the schedules within a specific category. The system manages two categories: Active and Actual. When scheduling, you can add any string as a category in an input argument.
- Returns
Nothing
- Scope
All
Python |
#Deletes the schedule of the operation system.mes.deleteSchedule('79425a70-4420-4705-a7e4-f25288898732') |
system.mes.deleteSchedule(operationsScheduleUUID)
Delete the operations schedule with the UUID specified by the operationsScheduleUUID.
Syntax
system.mes.deleteSchedule(operationsScheduleUUID)
- Parameters
String operationsScheduleUUID - The UUID of the operations schedule to delete.
- Returns
Nothing
- Scope
All
Python |
#Deletes the schedule of the operation system.mes.deleteSchedule('79425a70-4420-4705-a7e4-f25288898732') |
Sepasoft MES Module Suite