<?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: Zebra Printer : Hand Held Barcode Reader Issue in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/zebra-printer-hand-held-barcode-reader-issue/m-p/1351438#M176092</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok,  not sure that your problem is with the barcode.  To be sure, you can see the value under the barcode as A204554, right?   If so, I think your problem may be with the scanner.  I would check the config and make sure that there isn't something that is forcing this behavior.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What kind of scanner is it?  Brand, Model.&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, 01 Jun 2006 15:15:12 GMT</pubDate>
    <dc:creator>RichHeilman</dc:creator>
    <dc:date>2006-06-01T15:15:12Z</dc:date>
    <item>
      <title>Zebra Printer : Hand Held Barcode Reader Issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/zebra-printer-hand-held-barcode-reader-issue/m-p/1351437#M176091</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am using ZPL II commands to print label through Zebra Printer. The problem is when the end user scans the barcode by using a Hand held barcode reader device, the field value case changes from upper to lower. For example if the barcode prints "A204554" , The barcode reader reads as "a204554". This is contradictory. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sample code :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SUP&gt;FO18,1710&lt;/SUP&gt;B3R,N,90,N,N&lt;SUP&gt;FD&amp;amp;VBKD-BSTKD&amp;amp;&lt;/SUP&gt;FS&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What is needed is that the bar code scan should come back with exactly the same case for alpha characters as it has been stored in SAP database.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can anyone help in this regard?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Regards,&lt;/P&gt;&lt;P&gt;Ramasamy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Jun 2006 15:05:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/zebra-printer-hand-held-barcode-reader-issue/m-p/1351437#M176091</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-01T15:05:21Z</dc:date>
    </item>
    <item>
      <title>Re: Zebra Printer : Hand Held Barcode Reader Issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/zebra-printer-hand-held-barcode-reader-issue/m-p/1351438#M176092</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok,  not sure that your problem is with the barcode.  To be sure, you can see the value under the barcode as A204554, right?   If so, I think your problem may be with the scanner.  I would check the config and make sure that there isn't something that is forcing this behavior.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What kind of scanner is it?  Brand, Model.&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, 01 Jun 2006 15:15:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/zebra-printer-hand-held-barcode-reader-issue/m-p/1351438#M176092</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-06-01T15:15:12Z</dc:date>
    </item>
    <item>
      <title>Re: Zebra Printer : Hand Held Barcode Reader Issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/zebra-printer-hand-held-barcode-reader-issue/m-p/1351439#M176093</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you don't see the interpretation of the barcode directly underneath, please change the code as you see here.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SUP&gt;FO18,1710&lt;/SUP&gt;B3R,N,90,&amp;lt;b&amp;gt;Y&amp;lt;/b&amp;gt;,N&lt;SUP&gt;FD&amp;amp;VBKD-BSTKD&amp;amp;&lt;/SUP&gt;FS&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now make sure that the value has the capital letter. If it does not, then this is how it is stored in the DB.  You can force it to be upper case, by using the TRANSLATE statement in your print program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;translate VBKD-BSTKD to upper case.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&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, 01 Jun 2006 15:22:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/zebra-printer-hand-held-barcode-reader-issue/m-p/1351439#M176093</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-06-01T15:22:03Z</dc:date>
    </item>
    <item>
      <title>Re: Zebra Printer : Hand Held Barcode Reader Issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/zebra-printer-hand-held-barcode-reader-issue/m-p/1351440#M176094</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Rich Heilman,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The test feedback was given by the end user. I will check with them about the Scanner Details and get back to you asap.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Ramasamy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Jun 2006 15:26:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/zebra-printer-hand-held-barcode-reader-issue/m-p/1351440#M176094</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-01T15:26:28Z</dc:date>
    </item>
    <item>
      <title>Re: Zebra Printer : Hand Held Barcode Reader Issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/zebra-printer-hand-held-barcode-reader-issue/m-p/1351441#M176095</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The barcode output is correct. Actually i need not have to print the number below the barcode. Just need to print the barcode alone. When i read the barcode, the scanner should give the correct data which is printer in barcode format. Currently it changes the uppercase to lower case. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My output may vary. It may have uppercase data as well as lowercase data. The scanner has to read as itis.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Jun 2006 15:33:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/zebra-printer-hand-held-barcode-reader-issue/m-p/1351441#M176095</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-01T15:33:34Z</dc:date>
    </item>
    <item>
      <title>Re: Zebra Printer : Hand Held Barcode Reader Issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/zebra-printer-hand-held-barcode-reader-issue/m-p/1351442#M176096</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How can you tell what the barcode's value is without having the interpretation underneath it.  How do you know that the barcode has the Capital "A" instead of the lowercase "a".  &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, 01 Jun 2006 15:44:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/zebra-printer-hand-held-barcode-reader-issue/m-p/1351442#M176096</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-06-01T15:44:46Z</dc:date>
    </item>
    <item>
      <title>Re: Zebra Printer : Hand Held Barcode Reader Issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/zebra-printer-hand-held-barcode-reader-issue/m-p/1351443#M176097</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am printing the same field with text just above the barcode.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SUP&gt;FO138,1710&lt;/SUP&gt;A0R,40,35&lt;SUP&gt;FDCustomer PO# &amp;amp;VBKD-BSTKD&amp;amp;&lt;/SUP&gt;FS&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This will tell me that the value is capital A.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Ramasamy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Jun 2006 15:54:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/zebra-printer-hand-held-barcode-reader-issue/m-p/1351443#M176097</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-01T15:54:41Z</dc:date>
    </item>
    <item>
      <title>Re: Zebra Printer : Hand Held Barcode Reader Issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/zebra-printer-hand-held-barcode-reader-issue/m-p/1351444#M176098</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ramasamy,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We are having the same problem - the data is in upper case and we can see it in the SAPscript output as upper case, our barcode scanner reads it in upper case, but when the end user scans it they get lower case.  Did you ever find a definitive answer to this problem?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;P&gt;Susanna&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 May 2007 18:52:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/zebra-printer-hand-held-barcode-reader-issue/m-p/1351444#M176098</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-11T18:52:51Z</dc:date>
    </item>
  </channel>
</rss>

