Hello,
how do I get the number of pcs reported by a worker in a production? in x++. (In progress or as Feedback)
I know that for quantity by operation I can go JmgJobTable::QuantityGood()
I appreciate you help
thanks a lot before hand,
Hello,
how do I get the number of pcs reported by a worker in a production? in x++. (In progress or as Feedback)
I know that for quantity by operation I can go JmgJobTable::QuantityGood()
I appreciate you help
thanks a lot before hand,
By the way Sergei,
Why the OprNum and OprId are not recorded in the ProdRouteTrans Table??
thanks a lot
Perfect Sergei,
as always thanks a lot
Just what I needed, I created it as a static method cuz I need to call that from an outside class
Hi CBNestor,
Maybe you can create new method like ProdRoute.qtyGood, but instead of filtering by route information, you can filter by worker. Something like this:
public ProdReportedGood qtyGoodByWorker(RecId _workerRecId) { return (select sum(QtyGood) from prodRouteTrans where prodRouteTrans.TransRefId == this.ProdId && prodRouteTrans.TransRefType == ProdTransRefType::Production && prodRouteTrans.Worker == _workerRecId && prodRouteTrans.TransType == ProdRouteTransType::Qty).QtyGood; }
André Arnaud de Cal... 291,622 Super User 2024 Season 2
Martin Dráb 230,354 Most Valuable Professional
nmaenpaa 101,156