system.mes.getScheduleOperations

Sepasoft MES Module Suite

system.mes.getScheduleOperations(operationsScheduleUUID)

Get a list of MES object links for each operations request for the operations schedule specified by the operationsScheduleUUID parameter.

Syntax

system.mes.getScheduleOperations(operationsScheduleUUID)

  • Parameters

String operationsScheduleUUID - The UUID of the operations schedule to return the associated operations requests for.

  • Returns

A list containing links for each operations request. The list is returned as a MESList object that is a collection holding MESObjectLinks for each operations request object.

  • Scope

All

Code Examples

Python
#This code will print the name of the operationsRequest object with the specified ScheduleRefUUID.
operationsSchedule = system.mes.getScheduleOperations('72b408bf-aaf4-420f-9ec5-4aa7fabbff83')
for request in operationsSchedule :
    print request

Output

Code
Receive Turkeys

Sepasoft MES Module Suite