Who Picked an order?

Hello all,
We are migrating to Kinetic/cloud soon and will be using EKW.

Our Shipping Manager just asked if there is a way to track who picked orders. He wants to track how many orders each picker handles daily.

Any thoughts?

Because the user has to log into the device using their EmployeeID you can track it by something like this in a BAQ (SQL listed below). You may have a different shipping bin…

SELECT	EmpID, PartNum, TranQty, OrderNum, OrderLine, OrderRelNum, SysDate
FROM	Erp.PartTran
WHERE	TranType='STK-STK' AND	EmpID<>'' AND	TranReference LIKE 'SO:%' AND	BinNum='SHIP'

I would just omit the shipping bin in some cases. In my company people pick to various carts or workstations with unique bins. That is pretty much what we do as well. You can also check if Sales Order is <> 0 would also be appropriate.