GetProdData Method
- Last UpdatedNov 06, 2025
- 1 minute read
The GetProdData() method retrieves the production data for a current job. The production data can be filtered by user and shift.
'Declaration
Public Function GetProdData( _
ByVal filterByUser As Boolean, _
ByVal shiftStart As String _
) As DataSet
public DataSet GetProdData(
bool filterByUser,
string shiftStart
)
Parameters
- filterByUser
- Required. Holds the filter flag that determines whether the production data for the current user (true) or for all users (false) should be retrieved.
- shiftStart
- Optional. Holds the shift start that identifies the shift for which the production data should be retrieved. Set to null to retrieve the production data for all shifts.
Return Value
Returns a DataSet containing all the item production records matching the filter
criteria.