How can we help?

Using Status Code Groups in Expressions

You are here:
< All Topics

Overview

This example will show how to use Equipment Status Groups along with the PCSDB current status code variables to determine if a status is active.

The first step is to ensure that the appropriate equipment statuses have been defined. Secondly the equipment status groups need to be defined and the equipment statuses must be added to the groups.

Create a Planned Downtime group called “Lock”. Add all the planned downtimes that should not automatically end when a cycle starts such as In Setup, First Article, Preventative Maintenance, etc. Note that to exclude Unplanned Downtime statuses, a separate Unplanned Downtime group will need to be created.

The DX Current Planned Downtime Status Code variable will be used which can be selected for the list of PCSDB variables. After selecting the variable the group identifier parameter needs to be added using the format {identifier.group{groupName}}. For our scenario we want to add this variable to our cycle start expression to exclude a cycle start from taking place when the machine is in a downtime within the specified groups.

Append the following to the existing cycle start expressions to prevent cycles from starting when the machine is in a status contained within the “Lock” status group.

For Planned Downtime:

AND ([PCSDB.current_pdt_status_code] {identifier.group{Lock}} = False)

For Unplanned Downtime:

AND ([PCSDB.current_updt_status_code] {identifier.group{Lock}} = False)

See Also

Require Manual Input for Downtime End

Automatically End Downtime When Cycling

Table of Contents