Is there a setting on a DS4308 that will separate the AI's in a GS1 barcode? All I get when I scan is a very long string of numbers with no delimiters.
Breaking down a GS1 Barcode// Expert user has replied. |
Breaking down a GS1 Barcode// Expert user has replied.Is there a setting on a DS4308 that will separate the AI's in a GS1 barcode? All I get when I scan is a very long string of numbers with no delimiters. |
Subscribe to email updates
Monthly updates from our Zebra development team, straight to your inbox.
1 Replies
When the scanner is in USB HID mode, it ignores and skips the non-printable characters when it sends the text, including the delimiter of (ascii 1D) that can be in a barcode. The is present, just not transferred to the waiting text box. You need to create a rule 123Scan rule that swaps out the with %1D to make it URL friendly that you can pass to a RESTful endpoint, or in a POSTMAN url. I cannot attach the file or the programming qrcode. So using 123Scan, create a rule to follow this:
Begin New Rule
1. Move To All Patterns and Replace with %1D
2. Skip To Start
3. Move To All Patterns and Replace / with %2F (since a forward slash will break a URL)
4. Skip To Start
5. Send All that remains
Save Rule