Technology Blogs by Members
Explore a vibrant mix of technical expertise, industry insights, and tech buzz in member blogs covering SAP products, technology, and events. Get in the mix!
cancel
Showing results for 
Search instead for 
Did you mean: 
Former Member

In our company we have a Zebra R110Xi4 RFID Printer. So I wanted to share how to write RFID from Smartforms. We have SAP ECC6.0

In SPAD I created a new printer with Device Type LZEB2: Zebra label printer 203dpi

The reference for RFID-Printing can be found here: ZEBRA RFID Programming Guide 2

http://www.zebra.com/id/zebra/na/en/documentlibrary/manuals/en/rfid_programming_guide_P1026148-001.F...

We use a Tag from Avery Dennision EPC Class 1 Gen 2 with Inlay AD-223 http://rfid.averydennison.com/products/ad-223/ - it can story 96 bits = 12 charaters.

The general code for writing RFID in ASCII mode is this:

^XA

^RS8

^RFW,A

^FDyour data

^FS

^XZ

According a mail from Zebra support you don't need the ^XA und ^XZ in smartforms, those are the commandos for start and end of a label.

RS8 is for the tagtype, RFW,A is RFID-Writing in ASCII, FD starts a field, FS ends a field.

So in Smartforms you have to concatenate this:

CONCATENATE '^RS8^RFW,A^FD' gv_your_data '^FS' INTO GV_RFID_COMMANDO.

GV_RFID_COMMANDO is a string.

Then create a commando node and insert this:

attribute name: Z_LZPL_SETUP

attribute value: GV_RFID_COMMANDO

3 Comments
Labels in this area