UpdateOEEExec(Int32,Int32,Int32,Nullable<Double>,Nullable<Double>,Nullable<Double>,Nullable<Double>,Nullable<Int32>) Method
- Last UpdatedNov 06, 2025
- 1 minute read
The UpdateOEEExec() method updates the OEE Exec record for the specified entity.
'Declaration
Public Overloads Shared Sub UpdateOEEExec( _
ByVal EntID As Integer, _
ByVal JobEntID As Integer, _
ByVal UtilEntID As Integer, _
ByVal TargetOEEPercent As Nullable(Of Double), _
ByVal TargetPerformancePercent As Nullable(Of Double), _
ByVal TargetQualityPercent As Nullable(Of Double), _
ByVal DefProdRate As Nullable(Of Double), _
ByVal DefProdUofM As Nullable(Of Integer) _
)
public static void UpdateOEEExec(
int EntID,
int JobEntID,
int UtilEntID,
Nullable<double> TargetOEEPercent,
Nullable<double> TargetPerformancePercent,
Nullable<double> TargetQualityPercent,
Nullable<double> DefProdRate,
Nullable<int> DefProdUofM
)
Parameters
- EntID
- Required. Holds the entity whose OEE_Exec record is to be updated.
- JobEntID
- Required. Holds the ID of the entity from which to get the production data.
- UtilEntID
- Required. The ID of the entity from which to get the utilization data.
- TargetOEEPercent
- Optional. Holds the percentage that specifies the target OEE.
- TargetPerformancePercent
- Optional. Holds the percentage that specifies the target performance.
- TargetQualityPercent
- Optional. Holds the percentage that specifies the target quality.
- DefProdRate
- Optional. Holds the the default production rate so OEE can be calculated if the item is unknown (e.g., a straight monitoring application).
- DefProdUofM
- Optional. Holds the unit of measure of the default production rate.