Barcode scanners typically store scanned data in a SINT array.
In general, the data length can varies, a direct COPY without knowing its exact length is not feasible.
To transfer the barcode data from the SINT array to a STRING and set its length correctly:
After scanning, the FSC is used to locate the position of the last char in the SINT array.
If .FD is true, the position corresponds to STRING.LEN.
If it's not found & .DN is true [ie. Full string LEN], then Position + 1 determines STRING.LEN.

Next, Extract the content of BarcodeString to SerialNumber, PartNumber, ProductCode, PartCode using a delimiter such as 'Space'.
Noted that FIND can not find a NUL character.
