8.3 MachineModuleConfigurationType ObjectType

8.3.1 Overview

The MachineModuleConfigurationType provides descriptions for settings, stop reasons and root causes as well as affordances to make modifications.

The MachineModuleConfigurationType is formally defined in the following table.

Table 15 – MachineModuleConfigurationType Definition
Attribute Value
BrowseNameMachineModuleConfigurationType
IsAbstractFalse
References Node Class BrowseName DataType TypeDefinition Other
Subtype of the BaseObjectType defined in OPC 10000-5 - Part 5: Information Model, i.e. inheriting the Instance Declarations of that Node.
0:HasPropertyVariableDataSetListDataSetDefinitionType0:PropertyTypeO, RO
0:HasComponentMethodGetDataSetListSee below.O
0:HasComponentMethodGetRootCauseGroupListSee below.M
0:HasComponentMethodGetRootCauseListSee below.M
0:HasComponentMethodGetStopReasonListSee below.M
0:HasPropertyVariableLastChangeDate0:UtcTime0:PropertyTypeM, RO
0:HasPropertyVariableLongestMicroStopDuration0:Double0:PropertyTypeM, RW
0:HasPropertyVariableRootCauseGroupListRootCauseGroupType[]0:PropertyTypeM, RW
0:HasPropertyVariableRootCauseListRootCauseMessageType[]0:PropertyTypeM, RW
0:HasPropertyVariableRootCauseListInputIsMandatory0:Boolean0:PropertyTypeM, RW
0:HasComponentMethodSetDataSetListMESIDSee below.M
0:HasComponentMethodSetRootCauseListsSee below.M
0:HasPropertyVariableStopReasonListMessageType[]0:PropertyTypeM, RO
0:GeneratesEventObjectTypeRootCauseGroupListChangeLogType
0:GeneratesEventObjectTypeRootCauseListChangeLogType
0:GeneratesEventObjectTypeStopReasonListChangeLogType
Conformance Units
TMC Data Collection
TMC Single PO Production
TMC Multi PO Production
BrowseName Description
DataSetListThe Property DataSetList of type DataSetDefinition contains the descriptors for all the parameters used to set up the machine.
LastChangeDate

The Property LastChangeDate is the date and time of the last change applied to the machine

module configuration and the effective date of the modification.

LongestMicroStopDurationThe Property LongestMicroStopDuration is the maximum duration of a micro-stop in seconds, longer stops are not micro-stops. Operators are not required to enter a root cause for micro-stops.
RootCauseGroupList

The Property RootCauseGroupList is the list of groups that root causes can be grouped in.

They are defined by the end user. Same as the RootCauseList property. The RootCauseGroupList is user defined.

RootCauseListThe Property RootCauseList is the complete list of the root causes that the end user has defined to classify and organize the downtime due to the machine module stops. The RootCauseList is user defined.
RootCauseGroupListIsMandatoryThe Property RootCauseListInputIsMandatory is true when the operator is mandatorily required to select the root cause that best describes the current stop situation. For micro- stops such requirement does not apply.
StopReasonListThe Property StopReasonList is a list containing the descriptors for all the possible machine module messages, including alarms and warnings. Messages include their localization. The list is defined, created and maintained by the OEM.

8.3.2 GetDataSetList Method

The GetDatasetList Method returns the list of descriptions for parameters of the dataset filtered by the dependency and subset created by the user.

The GetDatasetList Method is typically used for clients to visualize the parameters’ descriptions and related metadata.

The signature of this Method is specified below. Table 16 specifies the Arguments representation.

Signature

	GetDataSetList (
	  [in]  ParameterDependencyEnumeration			Dependency,
	  [in]  0:Boolean								UserSubset,
	  [in]  0:Boolean       						CompleteSet,
	  [out] DataSetDefinitionType						DataSetList,
	  [out] MethodExecutionFeedbackType				ExecutionFeedback
			);
Table 16 – GetDataSetList Method Arguments
Argument Description
DependencyDependency specifies how to select (filter) a subset of the dataset based on dependency.
UserSubsetUserSubset specifies how to select (filter) a subset of the dataset based on the user-defined UserSubset.
CompleteSetIf CompleteSet is True, then the method returns the complete dataset without considering the input parameters Dependency and UserSubset.
DataSetListThe list of parameters filtered as per the input arguments Dependency and UserSubset.
ExecutionFeedbackThe extended feedback returning a detailed message in case of execution failure.

8.3.3 GetRootCauseGroupList Method

The GetRootCauseGroupList Method returns the complete list of root cause groups as persisted by the server.

The signature of this Method is specified below. Table 17 specifies the Arguments representation.

Signature

	GetRootCauseGroupList(
	  [out] RootCauseGroupType[]			RootCauseGroupList,
	  [out] MethodExecutionFeedbackType		ExecutionFeedback);
Table 17 – GetRootCauseGroupList Method Arguments
Argument Description
RootCauseGroupListThe complete list of root cause groups.
ExecutionFeedbackThe extended feedback returning a detailed message in case of execution failure.

8.3.4 GetRootCauseList Method

The GetRootCauseList Method returns the complete list of root causes as persisted by the server.

The signature of this Method is specified below. Table 18 specifies the Arguments representation.

Signature

	GetRootCauseList(
	  [out] RootCauseMessageType[]			RootCauseList,
	  [out] MethodExecutionFeedbackType		ExecutionFeedback);
Table 18 – GetRootCauseList Method Arguments
Argument Description
RootCauseListThe complete list of root cause messages.
ExecutionFeedbackThe extended feedback returning a detailed message in case of execution failure.

8.3.5 GetStopReasonList Method

The GetStopReasonList Method returns the complete list of stop reasons as persisted by the server.

The signature of this Method is specified below. Table 19 specifies the Arguments representation.

Signature

	GetStopReasonList(
	  [out] MessageType[]					StopReasonList,
	  [out] MethodExecutionFeedbackType		ExecutionFeedback);
Table 19 – GetStopReasonList Method Arguments
Argument Description
StopReasonListThe complete list of stop reason messages.
ExecutionFeedbackThe extended feedback returning a detailed message in case of execution failure.

8.3.6 SetDataSetListMESID Method

The SetDataSetListMESID Method sets the MES_ID of one or more items of the array Definitions contained in the DataSetList.

For clarity, the DataSetList is a Variable of type DataSetDefinitionType which contains Definitions, an array of structures of type DataDefinitionType. In turn DataDefinitionType is a subtype of DataDescriptionType, meaning it inherits MES_ID. The latter is set by SetDataSetListMESID.

Each item of Definitions is identified by its ID.

The signature of this Method is specified below. Table 20 specifies the Arguments representation.

Signature

	SetDataSetListMESID (
	  [in]  0:String[]						IDs,
	  [in]  0:String[]						MESIDs,
	  [out] MethodExecutionFeedbackType		ExecutionFeedback);
Table 20 – SetDataSetListMESID Method Arguments
Argument Description
IDsThe IDs of the elements of the Definitions array whose MES_ID shall be changed if the method executes successfully.
MESIDsThe values of the MES_IDs to be set.
ExecutionFeedbackThe extended feedback returning a detailed message in case of execution failure.

8.3.7 SetRootCauseLists Method

The SetRootCauseLists Method sets both the RootCauseList and RootCauseGroupList according to the input arguments. The RootCauseList and RootCauseGroupList properties are set together to ensure consistency of root causes with the relevant groups.

The signature of this Method is specified below. Table 21 specifies the Arguments representation.

Signature

	SetRootCauseLists (
	  [in]  RootCauseMessageType[]			RootCauseList,
	  [in]  RootCauseGroupType[]			RootCauseGroupList,
	  [out] MethodExecutionFeedbackType		ExecutionFeedback);
Table 21 – SetRootCauseLists Method Arguments
Argument Description
RootCauseListThe list of root causes to be transferred to and used by the server.
RootCauseGroupListThe list of root cause groups to be transferred to and used by the server.
ExecutionFeedbackThe extended feedback returning a detailed message in case of execution failure.