barcode scanning

Sejal04

Active Member
Hello! We are on E8.11. I'm working on an interactive application where a user scans wo number, op seq in a scan field. After each scan, enter is pressed and the cursor advances to the next line. The scanners can't be modified because they're used for other purposes so can't configure them to send a Postamble character.

Anyway, I need to update Work order # and Op Seq values on the same row after each scan. What is the best and cleanest way to accomplish this?

Thanks for all your help!!

Sejal
 
Hi Sejal,

don't know if you figured this out by now..

You could try to have the grid reviewed in the code after the user sends it out.
So the user scans all the WO's and should press an OK button or something like a Save button. This will give you the opportunity to review every line in the grid before the rest of the process.

There are standard system functions available in JDE to accomplish this. You can find them in the tool under the f(s) button, fold open Grid and there you'll find the functions to ged max grid rows and get next grid row.
Every time you get a next grid row, update the counter untill it's reached the max grid rows.
For every fetched line, you can set the values the way you want.

Good luck.
 
Back
Top