PartDataTrackingStruct
Short summary
This structure extends a time tracking dataset with information about a specific part.
Access: -
Inherits from: CycleTimeDataStruct
| Name | Type | Comment |
|---|---|---|
| partIdentifier | Tc2_System.T_MaxString | product identifier for that specific part |
| order | Tc2_System.T_MaxString | batch number as string |
| nokReason | DWORD | reason why the part is not good (not OK) - if the reason is 0, the part is counted as OK |
Code
Declaration
TYPE PartDataTrackingStruct EXTENDS CycleTimeDataStruct :
STRUCT
(* product identifier for that specific part *)
partIdentifier :Tc2_System.T_MaxString;
(* batch number as string *)
order :Tc2_System.T_MaxString;
(* reason why the part is not good (not OK) - if the reason is 0, the part is counted as OK *)
nokReason :DWORD;
END_STRUCT
END_TYPE