system.mes.getActualSupplementalEquipment

Sepasoft MES Module Suite

system.mes.getActualSupplementalEquipment(operationsResponseUUID)

Get the Supplemental Equipment associated with a particular Operations Response.

Syntax

system.mes.getActualSupplementalEquipment(operationsResponseUUID)

  • Parameters

String operationsResponseUUID - The UUID of the Operation Response to return the associated Supplemental Equipment for.

  • Returns

MESList<MESObjectLink> supEqpLinks - A list of MESObjectLinks that each have a reference to a supplemental equipment object.

  • Scope

All

Code Examples

Python
#This code will print the Supplemental Equipment associated with an Operations Response
supEqpLinks = system.mes.getActualSupplementalEquipment('72b408bf-aaf4-420f-9ec5-4aa7fabbff83')
for responseSupplementalEquipmentLink in supEqpLinks:
        print(responseSupplementalEquipmentLink.getMESObject())

Output

Code
ResponseEquipment (1930d23c-7983-479c-9c13-e543d0ffb266, supEquip_01, 0 parents, 0 children, 0 custom properties, 0 complex properties)



Sepasoft MES Module Suite