Sepasoft MES Module Suite
system.mes.saveMESObjects(mesObjectList)
Save one or more MES objects. The MESObjectList parameter object holds a collections of MES objects to save. This will update the active objects in cache on the Ignition server and save the settings to the database.
Syntax
system.mes.saveMESObjects(mesObjectList)
- Parameters
MES Object List mesObjectList - A list that holds the collection of MES objects to save.
- Returns
Nothing
- Scope
All
Code Examples
Python |
#This code will save the list of objects filter = system.mes.object.filter.createFilter() filter.setMESObjectNamePattern('* Turkey') objList = system.mes.loadMESObjects(filter) system.mes.saveMESObjects(objList) |
Sepasoft MES Module Suite