Jump to: navigation, search

Make an Object be found by RFID


Loading and identifying objects via RFID on the UBIK® Client implies that the objects and the search mechanisms are configured and used accordingly. This guide describes how to prepare objects using UBIK® Studio.

Please be aware that since Version 4.4.0 we support defining multiple codes for one object. Even if we support (for downward compatibility) both approaches (one code per object and multiple codes per object) we recommend to use the new technique even if there is only one code per object. If you are using an older version please navigate to Make anObject be found by single RFID.


ID Marker

UBIK provides a new Entity called ID Marker since 4.4.0! ID Markers are used to define the scannable Codes on a central location. We differ 3 types of Codes: RFID, BarCode and QR-Code.

The Code must be entered in the property "MARKER", the type is specified using the property "MAKER_TYPE" and the property OWNER refers to the object/ubiqule which is presented by the code. You can specify as many codes for one object as you like.

If later a code is scanned and found in the ID Markers, the referenced object will be added to the result collection.

Preparing an ID Marker Scan-Query

We provide a new MetaClass "RFIDTAGSCANQUERY RFID tag scan queries" deriving from System.Query.QUERY. There is already one instance QRY_RFIDSCANQUERY available in it. As this query is used to support the single Code search we recommend to create a new Query instance.

  1. Create a new instance of RFIDTAGSCANQUERY
  2. Set the property "SUPPORT_MULTI_MARKERS" to true to enable the new technique.
  3. Set the according filter object (FILTEROBJECT) similar as for other queries
  4. Add this new query to the list of Infrastructure objects
  5. Prepare and add a QUERYSCOPE to the ACM
  6. Prepare and add a View Item to the view set in the Context of the ACM



Preparing the object with multiple codes

Ensuring the object can be found by the clients offline search we need to classify the object's MetaClass as SYSCLS OBJECTWITHRFIDTAGS
As this classification is an autonomous classification there is no need to maintain any properties. The properties and the corresponding values (all RFID MARKERS refering to one object) will be managed by the system and sent to the client automatically.
Classify object with multiple codes



Single RFID

Preparing a Scan-Query

  1. Create a new Query classified as SYSCLS RFIDTAGSCANQUERY
  2. Set the according filter object (FILTEROBJECT) similar as for other queries (e.g. Create a new Query)
  3. Add this new query to the list of Infrastructure objects
  4. Prepare and add a QUERYSCOPE to the ACM
  5. Prepare and add a View Item to the view set in the Context of the ACM

Preparing the object

  1. Ensuring the object can be found by the clients offline search we need to classify the object's MetaClass as SYSCLS OBJECTWITHRFIDTAG and implement the necessary properties
    Classify object
  2. Enter the value of the RFID in the property RFIDTAG


See also