GetAllLaborData(Object,Object,Object,Object,Object) Method
- Last UpdatedNov 06, 2025
- 1 minute read
The GetAllLaborData() method retrieves all labor usage records that match the filter parameters. This overload of the method includes an entity ID, user ID, labor start time, shift start time, and last edit date/time as filter parameters.
'Declaration
Public Overloads Shared Function GetAllLaborData( _
ByVal EntId As Object, _
ByVal UserId As Object, _
ByVal LaborStart As Object, _
ByVal ShiftStart As Object, _
ByVal LastEditAt As Object _
) As DataSet
public static DataSet GetAllLaborData(
object EntId,
object UserId,
object LaborStart,
object ShiftStart,
object LastEditAt
)
Parameters
- EntId
- Optional. Holds the ID of the entity whose labor usage records are being retrieved.
- UserId
- Optional. Holds the ID of the user whose labor usage records are being retrieved.
- LaborStart
- Optional. Holds the labor start time for the labor usage records that are being retrieved.
- ShiftStart
- Optional. Holds the shift start time for the labor usage records that are being retrieved.
- LastEditAt
- DateTime string. Used to filter labor records that are modified on or after the specified last edit time.
Return Value
Returns a DataSet of all labor usage records that satisfy the specified
filter.