So for context I’m setting up Mobile/Kinetic Warehouse on some Zebra TC21 devices with Epicor 10.2.700 to replace our old system with an Intermec scanner scanning a barcoded Job Pick List displayed on a Surface Pro tablet. Simply going through “Issue Material” in Mobile Warehouse seems like a good way of stepping our current process forward, but the material sequence is not the best way to sort the list. We have assigned BinSeq numbers to most of the bins in our main warehouse and I have previously modified the JobPickL report data definition to bring in WhseBin based on the JobMtl calculated bin field, and then the RDL itself to sort the materials within an assembly by the WhseBin.BinSeq then by BinNum.
Now, I know that the Mobile Warehouse app is not as user-customizable as we’re used to with Epicor. Costs some $225+/hr to hire Biscit to customize it? Idk. However, the debug log in the app has been fairly useful, and I was able to at least add a pre-processing directive to JobMtlSearch.GetList to add "by IssuedComplete, PartNum ascending"
to the method’s whereClause
parameter to at least sort the materials list for an assembly by part number, with completely issued materials at the bottom.
So, with that context out of the way, I would like to know if there’s a good way of modifying the dataset in a BPM before it’s returned to the client, joining/searching another table and either adding a new field to the dataset or modifying/co-opting an existing unused field (like StagingBinNum? That’s a string, though, and I’d like to sort by the integer WhseBin.BinSeq). I’m not sure if “Fill Table by Query” or “Update Table by Query” widgets would be useful, or how to set them up, or if custom code will be required. If custom code is required, I may be able to figure it out on my own (change it to a post-processing directive and modify the tt
result dataset? And then how would I go about sorting that tt
object?) but any help/examples would be greatly appreciated.