SimulScan Input

DataWedge 7.0

Overview

The Zebra SimulScan app permits simultaneous capture of barcodes, images, text, signatures, phone numbers and other data from a scan target in a single pass. A SimulScan Input option adds this capability to DataWedge. When form data is captured according to a designated SimulScan template, data can be processed or formatted as required using Process Plug-ins. For more information, refer to the SimulScan User Guide.

This feature can be used only on devices that support SimulScan.

SimulScan Input options

SimulScan standard templates (not all shown)

Device Selection - permits selection between the device camera and the default scanning device set by the system (recommended).

Template selection - sets a SimulScan template for the Profile being configured. Templates included with DataWedge:

  • Default - BankCheck.xml - captures the account number and routing number from the machine-readable zone (MRZ) of a check.
  • Default - Barcode1.xml - decodes a single barcode of any symbology.
  • Default - Barcode10.xml - decodes 10 barcodes of the same or differing symbologies.
  • Default - Barcode2.xml - decodes two barcodes of the same or differing symbologies.
  • Default - Barcode4.xml - decodes four barcodes of the same or differing symbologies. This is the default template if none is selected.
  • Default - Barcode5.xml - decodes five barcodes of the same or differing symbologies.
  • Default - BookNumber.xml - decodes 10- or 13-digit ISBN codes.
  • Default - DocCap+Optional-Barcode.xml - captures the form as an image and optionally decodes a barcode, if present.
  • Default - DocCap+Required-Barcode.xml - captures the form and decodes any available barcode.
  • Default - TravelDoc.xml - captures information from the machine-readable zone (MRZ) of a travel document such as a passport.
  • Default - Unstructured Multi-Line.xml - uses OCR to acquire multiple lines of alpha/numeric text.
  • Default - Unstructured Single Line.xml - uses OCR to acquire a single line of alpha/numeric text.

The names of all Templates included with SimulScan are preceded by the word "Default" plus a hyphen.

To add custom templates to the list above, copy the template XML files to the /enterprise/device/settings/datawedge/templates directory.

Note: Files and folders in the /enterprise directory are invisible to the Android File Browser; they can be made visible in File Browser by manually inputting the path.

Zebra partners and other authorized users can create custom templates online using Zebra's SimulScan Template Builder.

Dynamic Template Params – permits the configuration of parameters when using Dynamic Templates. This offers the flexiblity of accepting input parameters based on varying usage scenarios without requiring a different template for each. If the selected template contains Dynamic-Template parameters, DataWedge prompts the user to configure the parameters. Currently supports Dynamic Quantity, which sets the number of barcodes (from 1-99; default=5) to be decoded on a form. Dynamic Templates are created using Template Builder.

Region separator - used to configure a separator character for SimulScan text-region data (see Notes, below). When multiple text regions exist, the region separator is inserted between the data strings from each region on the acquisition form. Region separators can be used with the Keystroke Output Action key character settings to dispatch SimulScan region data to separate text fields.

Possible values:

  • None (default)
  • Tab
  • Line feed
  • Carriage return

Log directory – used to change the default folder path (/storage/emulated/0/simulscan/logs) for storing the SimulScan logs on the device. Note: SimulScan logging is enabled/disabled by the SimulScan template in use; logging is not controlled by DataWedge.

Timestamp – Enable/disable automatic insertion of a timestamp (yyyy-MM-dd HH:mm:ss) along with acquired data.

SimulScan Notes

  • DataWedge concatenates all text captured through SimulScan into a single string and performs processing on that string.
  • Barcode, OCR and OMR regions are considered text regions. When using keystroke output and/or IP output, only text-region data are dispatched to the foreground application or to a remote server.
  • Picture-region data (images) are retrieved only through Intent Output.
  • Text captured through SimulScan is concatenated into a single string and processing is performed on that string.
  • If Barcode Input is enabled in a Profile, enabling SimulScan in that Profile causes the Barcode Input Plug-in to be disabled.

SimulScan-related Data

The SimulScan-related data added to an Intent bundle is retrieved using the following calls:

  • Intent.getStringtExtra()
  • Intent. getParcelableArrayListExtra()
  • Bundle.getInt()
  • Bundle.getString()
  • Bundle.getByteArray()

The calls above can use the following String tags:

  • String SIMULSCAN_TEMPLATE_NAME_TAG = "com.symbol.datawedge.simulscan_template_name"; The name of the template used by SimulScan to capture the form.

  • String SIMULSCAN_REGIONS_BUNDLE_TAG= "com.symbol.datawedge.simulscan_region_data"; Return an array of Bundles where each bundle contains data and information about a region and the form.

  • String SIMULSCAN_REGION_NAME_TAG = "com.symbol.datawedge.simulscan_region_name"; Returns the region name of the bundle object for reach region. Call Bundle.getString() to get the region name.

  • String SIMULSCAN_REGION_ID_TAG = "com.symbol.datawedge.simulscan_region_id"; Returns the region ID of the bundle object for reach region. Region ID is an integer and is retrieved by calling Bundle.getInt ().

  • String SIMULSCAN_REGION_STRING_DATA= "com.symbol.datawedge.simulscan_region_string_data"; Returns the string data of the region. String data comes with barcode, OCR and OMR data.

  • String SIMULSCAN_REGION_BINARY_DATA= "com.symbol.datawedge.simulscan_region_binary_data"; Returns the data of the region in the form of byte array. Binary data comes only for picture regions and the form image. Both picture and form data are loaded in to a bitmap and display in the application.

  • String SIMULSCAN_REGION_TYPE_TAG = "com.symbol.datawedge.simulscan_region_type"; Returns the region type of the bundle object for reach region. Region type is a string and is retrieved by calling Bundle.getString ().

Possible return values for the region type:

  • Barcode - Region is a barcode.
  • OCR - Region is an Optical Character Recognition (OCR) region (i.e name or address).
  • OMR - Region is an Optical Mark Recognition (OMR) region (i.e checkbox, radio button).
  • Picture - Region is a picture; data is in JPEG format.
  • Form - Form type to specify that the bundle contains a picture of the captured form. Form image is in the JPEG format.

Important: For some scanning applications, it might be preferable for decoded data to be sent directly to the current activity and not necessarily displayed. For such instances, the activity must be designated as "singleTop" in its AndroidManifest.xml file. Failure to designate an activity in this way will cause an instance of the activity to be launched on every decode, and the data sent to each newly spawned copy.

For more information about Android Intents, please refer to the Android Developer site.


Related guides: