Sales list force change of column in lines

113 Views Asked by At

I'm using the page below a POS sales list. Here the user can use the barcode pistol and pass the article and the code is translated into the item no. The problem is when they use the pistol and end to pick a item and want to pass to next one the line go automatically to the first column (Item type) and my goal was to force to go into the second column (Item no), because the Item type is by default the type "product".

Only change the order of columns of Item no to Item product is not enough in this case. enter image description here

1

There are 1 best solutions below

2
On

Since ACTIVATE is not supported for controls in RTC. Not many good options here.

  • Try using QuickEntry Property. Set it to false for all controls on subpage except No..
  • Create custom page with as less fields as possible, use it as buffer to scan all items and create sales lines upon closing of this new page. You can implement desired behavior on this page and keep original page almost unmodified
  • Create add-in that will intercept scanner output somehow.