Sepasoft MES Module Suite
system.mes.getActualPersonnel(operationsResponseUUID)
Get the Personnel associated with a particular Operations Response.
Syntax
system.mes.getActualPersonnel(operationsResponseUUID)
Parameters
String operationsResponseUUID - The UUID of the Operation Response to return the associated Personnel for.
Returns
MESList<MESObjectLink> personnelLinks - A list of MESObjectLinks that each have a reference to a person object.
- Scope
All
Code Example
Python |
#This code will print the Personnel associated with an Operations Response personnelLinks = system.mes.getActualPersonnel('72b408bf-aaf4-420f-9ec5-4aa7fabbff83') for responsePersonLink in personnelLinks: print(responsePersonLink.getMESObject()) |
Output
Code |
ResponsePerson (95b4db27-6b52-44c0-8215-36b407e1c558, Ting, Tess, 2 parents, 0 children, 0 custom properties, 0 complex properties) |
Sepasoft MES Module Suite