MESUserIDFilter Object

Sepasoft MES Module Suite

MESUserIDFilter

This object is a collection of userIDs of Operations that have been already been recorded in the system.

Note Available in 3.81.10 SP2 and later.

Object Creation

The following object methods can be used to return this type of object. 

Code Snippet

Python
#Define required information like operation name and equipment path.
eqPath = 'New Enterprise\\New Site\\New Area\\New Line'
operationName = 'Oper 7-26-ID2'

# Create filter object
UserIDFilter = system.mes.trace.createUserIDFilter()

# Set filter properties
UserIDFilter.setEquipmentPath(eqPath)
UserIDFilter.setOperationName(operationName)

#Get the userIDList based on the operation name and equipment path by filter
userIDList = system.mes.trace.getUserIDListByFilter(UserIDFilter)

 Object Methods


.setOperationName(String OperationName)

Sets the operationName.

    .getOperationName()

    Returns the operationName as a String

    .setEquipmentPath()

    Sets the equipmentPath to filter on.

    .getEquipmentUUID()

    Returns the UUID of the equipment set String.

    .setEquipmentPath()

    Sets the equipmentPath to filter on.

    .setBeginDate(Date beginDate)

    Sets the beginDate parameter.

    .setEquipmentPath()

    Sets the equipmentPath to filter on.

    .getBeginDate()

    Returns the currently set beginDate.

    .setEquipmentPath()

    Sets the equipmentPath to filter on.

    .setEndDate(Date endDate)

    Sets the endDate parameter.

    .isExclusiveTimeRange()

    Returns a Boolean for the parameter value.

    .setExclusiveTimeRange(Boolean exclusiveTimeRange)

    Sets the exclusiveTimeRange paramater.

    .setUserIDPattern(String userIDPattern)

    Sets the userIDPattern parameter.

    .getUserIDPattern()

    Returns the currently set userIDPattern as a String.

    .setIncludeDisabled(Boolean includeDisabled)

    Sets the includeDisabled parameter value.

    .isIncludeDisabled() 

    Returns a Boolean for the includeDisabled value.

    Sepasoft MES Module Suite