...
Use case
Use scanning to speed - up line selection and reduce errors.You can scan
GS1 data type
Using an Encoded Barcode (GS1) containing one or or more of the following data types:
- Item No.
- Lot No.
- Serial No
...
Custom barcode format & Alternative data types
If you are scanning a custom barcodesbarcode format.
See Select Line by custom barcode (lineSelection)
...
Behavior
Depending on the barcode and configuration the app will either:
...
The app was able to work out the correct line from the barcode
B: Ask the user to select from a reduced list
The user is presented with a list of matching lines when the configuration setting "behaviourbehavior" is = "User"
How to set it up
...
Step 1: Enable "ScanToSelectBehaviourType"
See the example below.
Steps 2: Optionally set the related properties:
- gs1SearchTerm
- orderFilterGs1AI
- behaviourbehavior
See Order Lines Mobile Configuration for details on the properties used
Example
Code Block | ||
---|---|---|
| ||
<page id="ReceiveLines" type="OrderLines" icon="mainmenureceive"> <title defaultValue="@{PageReceiveOrderLinesTitle}"/> <orderLinesConfiguration suggestQuantity="true" verifySingleScanRegistrations="false" actionOnEmptyList="ClosePage"> <service id="Receive"/> <list listId="OrderLines"/> <viewRegistrations title="@{OrderLinesRegistrationMenuItem}" navigateTo="ViewRegistrations" enabled="true"/> <deleteOrderRegistrations title="@{OrderLinesDeleteAllOrderRegistrationsMenuItem}" enabled="true"/> <extraInformationConfiguration stepSorting="ById"/> <onOrderPosted clearOrderLevelRegistrations="true"/> <scanToSelectBehaviour gs1SearchTerm="All" behaviour="Auto"/> <----------------------------- </orderLinesConfiguration> .. |
...