<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Barcodes in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/barcodes/m-p/915293#M57958</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Francesco,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try to send the itf file that you generated from the barone software to the zebra printer directly from the OS level and see if the printer prints.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If it does not then there is either a problem with the printer of with the ZPL code and not with the SAP interface or sapscript.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try this and let me know.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pravin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 24 Mar 2005 17:40:24 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2005-03-24T17:40:24Z</dc:date>
    <item>
      <title>Barcodes</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/barcodes/m-p/915292#M57957</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;They are literally killing me!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We've just bought the new Zebra portable printer - RW 420. It's ZPL compatible but, unfortunately, it doesn't print jack!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've tried everything: from creating the label from BAR-ONE and then uploading it into a SAPscript (NADA!) - installing a third-party middleware for printing barcode (NADA!) - cursing the ZEBRA people (NADA! but it gave my some sort of relief) - asked my boss to fire me (NADA! yet).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Bottom line: do you guys have any tip/hint? I'm open to suggestions. Plus: do you guys know if there is any software other than BAR-ONE to create labels?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;F.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Mar 2005 16:56:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/barcodes/m-p/915292#M57957</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-03-24T16:56:40Z</dc:date>
    </item>
    <item>
      <title>Re: Barcodes</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/barcodes/m-p/915293#M57958</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Francesco,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try to send the itf file that you generated from the barone software to the zebra printer directly from the OS level and see if the printer prints.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If it does not then there is either a problem with the printer of with the ZPL code and not with the SAP interface or sapscript.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try this and let me know.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pravin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Mar 2005 17:40:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/barcodes/m-p/915293#M57958</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-03-24T17:40:24Z</dc:date>
    </item>
    <item>
      <title>Re: Barcodes</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/barcodes/m-p/915294#M57959</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Not literally, I hope!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try the simplest print test first, to see if the problem is with the printer or the SAP printing setup.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Send a simple ZPL label description to the label printer:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;^XA
^LH30,30
^FO20,10^AD^FDHello World!^FS
^FO20,60^B3^FDHello World^FS
^XZ&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;I've never worked with a RW 420 before, but the online specs say it should have ethernet &amp;amp; RS-232 connectors, so you have a couple of options:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Print a label from ABAP by sending each line as a WRITE statement through an SAP print queue with device type ASCIIPRI.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Print printing a test file with these lines through a windows print queue to the RW 420 printer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can also plug the printer into your PC's COM port and direct a text file with these lines to the COM port from the command line using MODE and TYPE commands. That should work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This will tell you if the printer is working. Once you've proved this you can work backward to making it print something useful. My group didn't like the Bar-One learning curve and ended up using the ABAP WRITE approach for label graphics and layout. Works perfectly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Good luck.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Mar 2005 18:08:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/barcodes/m-p/915294#M57959</guid>
      <dc:creator>juan_suros</dc:creator>
      <dc:date>2005-03-24T18:08:07Z</dc:date>
    </item>
    <item>
      <title>Re: Barcodes</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/barcodes/m-p/915295#M57960</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;We hand wrote(no 3rd party software) the ZPLII code directly in the main window of the sapscript form.  Works great!  Could there be a problem with the device type setup in SPAD?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Mar 2005 18:22:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/barcodes/m-p/915295#M57960</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2005-03-24T18:22:06Z</dc:date>
    </item>
  </channel>
</rss>

