E71 Bar code scanner versus camera quality

So I just updated my E71 from an older firmware to the latest: 501.21.001 and it's a RM-357 (E71-2; 270.07).  I've been playing around with it to see the changes and I noticed that when using the bar code scanner, the quality of the picture is incredibly strong!  I don't remember it being that good. 
Now, when I load the camera, it's the same quality as previous firmware versions, fairly poor.  "Close-up mode" is very blurry with anything closer than a few inches or 20+cm.  This is very different from the bar code scanner.
Why is this so different and how to fix it?  Can anyone else verify this as well?

I use Scandit for barcodes and it works great on my fascinate.  I have no problems.

Similar Messages

  • Is Oracle Form can read bar code scanner ?

    Hi everybody,
    I would like to develop an application for a video club with oracle form. Can anyone tell me how can do or just say if it is possible or not
    Thanks a lot.
    Shafique Mahmood

    I would like to develop an application with
    Oracle form can any one can just tell me
    is it possible or not? Depending what bar code scanner you use. If it has a Java
    interface, you can develop a PJC (Pluggable Java Component) for
    Forms, or even a Java Bean and use a JavaBean area item.
    If it has a COM interface, you can use the JavaBean/COM bridges
    probably get the same result.
    For PJC and JavaBeans, have a look in the Forms 6i/9i docs for
    more info.
    Hope that helps

  • Interface with SAP / Bar code scanner.

    Hello,
    we are going  to integrate bar code reader to SAP directly
    Our thought are , Scanning  the bar code and then using IDOC or directly connected to SAP - ZTables for converting the data into the SAP system..
    is it possible to convert the bar code information ( such us material / batch etc..) in to SAP with an interface.
    Any Input will be appreciated
    Thanks for your help
    JJ

    Hi JJ,
    I may be just re-iterating what has already been said, but for clarity I will put down the points again, since I was also faced with the same confusion regarding how barcode and sap will work.
    1. Barcode Scanner has nothing to do with SAP or any software.
       In simple terms, it is just like a keyboard. To demo;
        a) Plug in the barcode scanner in the USB port
        b) Open Notepad in windows
        c) The cursor will be inside the notepad
        d) Now scan the bar code against any barcode image.
              (Suppose the barcode image contains the information XYZABC)
       e) As soon as you scan, the characters   X Y Z A B C (without spaces)
          will AUTOMATICALLY GET TYPED on the screen, inside the notepad, at the place of cursor.
        Hence, the SCANNER  just acts as a KEYBOARD.
       and autommatically types in the characters WHEREVER the CURSOR is.
       We can test this using notepad, Excel, word or any where the cursor can appear.
       We can test in any standard sap screen on any text field also, etc.
    2. Saving the data in SAP.
        a) First we have to figure out how to save data in SAP,
            considering we are entering data MANUALLY.
       b) This can be a STANDARD Transaction or a Z transaction.
       c) Suppose the field / information is material number,
         then instead of TYPING the material number on the screen, in the field,
        we simply place the cursor on that field.
      d) then we simply scan the image (containing information on material n umber) and hooooooray,
        it gets automatically TYPED IN on that field.
        Thats it.  Other fields we may have to enter manually and press the SAVE button to save the data.
      Scanner just saves TYPING the information manually, and hence reduces time and error both.
    Hope this helps.
    Regards,
    Amit Mittal.

  • Bar code scanner

    How to integrate Barcode scanner with java application?

    The most bar code scanners I used (about half a dozen variations) got plugged between keyboard and computer and just produced normal keyboard events. So there was no need for a special api .. you actually could go into notepad to read whats in the barcodes.
    There are more complex scanners though, coming with a build in display an own os and all kind of stuff ... for those you'll get an API from the producer of the scanner. I'm pretty shure they have all java apis by now
    regards
    Spieler

  • Bar code  Scanner in Phonegap Android

    Hello Every one,
    Iam following the https://github.com/wildabeast/BarcodeDemo for barcode scanner.When i tried with the  code on eclipse Iam getting the following error in index.js file as "can't find variable : cordova  at file  index.js" . Here is the screen shot attached.
    I have tried in many ways.Please suggest me so that i can scan the Barcode.
    Thanks in advance.
    Tags edited by: Michael Appleby

    Thanks for your reply...
    The issue was resolved and Iam also facing other issue. Reference Error: cant find variable :require at barcodescanner.js file.
    Here is the code for  index.js
    scan: function() {
            console.log('scanning');
            var scanner = cordova.plugins.barcodeScanner;
            scanner.scan( function (result) {
           alert("We got a barcode\n" +
                "Result: " + result.text + "\n" +
                "Format: " + result.format + "\n" +
                "Cancelled: " + result.cancelled); 
               console.log("Scanner result: \n" +
                    "text: " + result.text + "\n" +
                    "format: " + result.format + "\n" +
                    "cancelled: " + result.cancelled + "\n");
                document.getElementById("info").innerHTML = result.text;
                console.log(result);
                if (args.format == "QR_CODE") {
                    window.plugins.childBrowser.showWebPage(args.text, { showLocationBar: false });
    }, function (error) {
                console.log("Scanning failed: ", error);
       encode: function() {
          var scanner = cordova.plugins.barcodeScanner;
      scanner.encode(scanner.Encode.TEXT_TYPE, "http://www.nhl.com", function(success) {
                alert("encode success: " + success);
              }, function(fail) {
                alert("encoding failed: " + fail);
    and barcodescanner.js  code
    * cordova is available under *either* the terms of the modified BSD license *or* the
    * MIT License (2008). See http://opensource.org/licenses/alphabetical for full text.
    * Copyright (c) Matt Kane 2010
    * Copyright (c) 2011, IBM Corporation
        var ScannerLoader = function (require, exports, module) {
            var exec = require("cordova/exec");
             * Constructor.
             * @returns {BarcodeScanner}
            function BarcodeScanner() {
                 * Encoding constants.
                 * @type Object
                this.Encode = {
                    TEXT_TYPE: "TEXT_TYPE",
                    EMAIL_TYPE: "EMAIL_TYPE",
                    PHONE_TYPE: "PHONE_TYPE",
                    SMS_TYPE: "SMS_TYPE"
                    //  CONTACT_TYPE: "CONTACT_TYPE",  // TODO:  not implemented, requires passing a Bundle class from Javascript to Java
                    //  LOCATION_TYPE: "LOCATION_TYPE" // TODO:  not implemented, requires passing a Bundle class from Javascript to Java
             * Read code from scanner.
             * @param {Function} successCallback This function will recieve a result object: {
             *        text : '12345-mock',    // The code that was scanned.
             *        format : 'FORMAT_NAME', // Code format.
             *        cancelled : true/false, // Was canceled.
             * @param {Function} errorCallback
            BarcodeScanner.prototype.scan = function (successCallback, errorCallback) {
                if (errorCallback == null) {
                    errorCallback = function () {
                if (typeof errorCallback != "function") {
                    console.log("BarcodeScanner.scan failure: failure parameter not a function");
                    return;
                if (typeof successCallback != "function") {
                    console.log("BarcodeScanner.scan failure: success callback parameter must be a function");
                    return;
                exec(successCallback, errorCallback, 'BarcodeScanner', 'scan', []);
            BarcodeScanner.prototype.encode = function (type, data, successCallback, errorCallback, options) {
                if (errorCallback == null) {
                    errorCallback = function () {
                if (typeof errorCallback != "function") {
                    console.log("BarcodeScanner.encode failure: failure parameter not a function");
                    return;
                if (typeof successCallback != "function") {
                    console.log("BarcodeScanner.encode failure: success callback parameter must be a function");
                    return;
                exec(successCallback, errorCallback, 'BarcodeScanner', 'encode', [
                    {"type": type, "data": data, "options": options}
            var barcodeScanner = new BarcodeScanner();
            module.exports = barcodeScanner;
        ScannerLoader(require, exports, module);
        cordova.define("cordova/plugin/BarcodeScanner", ScannerLoader);
    Can you please help me..Iam strucked with this
    Thanks in advance...:)

  • Hand held bar code scanner

    my hand held barcode scanner worked with my hp compaq with XP but doesn't with my new hp pavillion with windows 8 - why?

    Catsandflowers, welcome to the forum.
    You will have to check with the manufacturer of the barcode device for a driver for Win 8.  The driver is provided by the device manufacturer.
    Please click the "Thumbs up + button" if I have helped you and click "Accept as Solution" if your problem is solved.
    Signature:
    HP TouchPad - 1.2 GHz; 1 GB memory; 32 GB storage; WebOS/CyanogenMod 11(Kit Kat)
    HP 10 Plus; Android-Kit Kat; 1.0 GHz Allwinner A31 ARM Cortex A7 Quad Core Processor ; 2GB RAM Memory Long: 2 GB DDR3L SDRAM (1600MHz); 16GB disable eMMC 16GB v4.51
    HP Omen; i7-4710QH; 8 GB memory; 256 GB San Disk SSD; Win 8.1
    HP Photosmart 7520 AIO
    ++++++++++++++++++
    **Click the Thumbs Up+ to say 'Thanks' and the 'Accept as Solution' if I have solved your problem.**
    Intelligence is God given; Wisdom is the sum of our mistakes!
    I am not an HP employee.

  • Reading bar code

    Hello all,
                     I have a bar code scanner from iball model number CS-153. It is writing properly to notepad but not able to read in LabVIEW. I tried googling it and found some VI but that is not at all working.  My barcode lenght is of 10 or more.
    If anybody is having any working VI then it will be great. 
    Attaching VI for referncence
    Thanks
    Kudos are always welcome if you got solution to some extent.
    I need my difficulties because they are necessary to enjoy my success.
    --Ranjeet
    Attachments:
    Barcode Scanner.vi ‏11 KB

    Ranjeet
    I have tried your code and it works perfectly for me.
    The only concern is you will need to make a string control "Limit to single line" and keyfocus on the string control so that the control always put the new value.
    i don't think so that your barcode scanner is having some lock or something since it is working as a keyboard input so it is just typing kind of stuff.
    Please let me know it solves your problem or not.
    =========================================
    Please remember to accept a solutions and show your appreciation by giving Kudos to helpful messages...
    Mangesh D.
    CLAD | Project Engineer
    ==
    VIPM, LabVIEW 8.2, 2009, 2011SP1, 2012, 2012SP1, 2013, cRIO,cDAQ, PXI, ELVIS, Multisim, Smart Camera....

  • BAR Code Print Using Font Free 3 of 9 Extendted

    HI,
    We have installed BAR Code Font TTF file for Code 3 0f 9 Extended using se73 in SAP as well same in windows.
    Scaneer show 100% confidance (recognize well) while printing the text from MS Word( Testing Purpose). but while Printing from SAP Sscript scanner dont recognize the print bar code( We have installed the same font by SE73) in SAP.
    Could any one help us what may be issue while printing from SAP SCript , SAP is not printing the actual BAR Code same as MS Word.
    Rgds
    Bansal

    Hi,
    Each Code 39 printer can also print 'Extended Code 39' barcodes. It is only the Bar Code scanner that must be switched to 'Extended Code39'.
    In a Code 39 Barcode you can use the characters 0-9, A-Z and the characters -. $/+%
    For an Extended Code 39 barcode a combinition of these characters get a special meaning. See the link below:
    http://www.barcodeman.com/info/c39_ext.php
    Regards,
    Aidan

  • I need to pull data from a keyboard attached bar code reader, labview basic verison 8

    Does anyone know how to pull the data sent by a keyboard attached bar code scanner using labview basic, version 8?  I tried using the aquire input data function, however the data that it gives doesn't seem correct, and it also only seems to give one value out of the whole bar code.  Any suggestions?
    Thanks
    Mike

    You don't need anything more than a string control. A bar code scanner when used as a keyboard wedge, acts just like when you type something into the control with the keyboard. Make sure that the string control has focus and scan something.

  • Bar Codes(Help Please)

    Hi,
    I want my application to read bar codes of items and to store them to my database.Please, can you tell me if it is possible with Forms6 or Forms6; if so, please explain me the procedure even I want to insert records or I want to make updates(for example the quantity of an item with its bar code).
    Thank you to answer me.Regards.

    You mean store the image of the bar code ? Why do you want to do that ? A bar code is just the graphical representation of a number. Use a bar code scanner to translate the bar code to a number and store that. It will be much better. At least then you will be able to search for your product by that number and update the record with the qty as and when you wish.

  • Scan 3D bar code

    Is it possible to use the iPhone 5 to take pictures of 3D bar codes (i.e. barcodes that identify widgets or Apps) and then use those pictures to download info or applications ?
    Thank you - Pépi from France

    Yes. Go to the App Store and search "bar code Scanner"  or some such.
    one example is RedLaser:
    https://itunes.apple.com/us/app/redlaser-barcode-scanner-shopping/id474902001?mt =8

  • Printing tab in Bar Code using SAPScript

    Hi,
    We are trying to print information from multiple fields in Bar code (using Code128 symbology) on our Utility Invoices, printing of which is done using SAPScript.
    Our objective is that when accepting payment using FPCJ transaction, the Cash Desk Operator will use a Bar Code Scanner and import relevant invoice data into multiple fields.
    However, for that to happen, it is necesary to print tab feeds between data of contiguous fields using Bar code.
    We have tried printing tab feeds in Bar Code using hexadecimal '09'. But it has not helped. Can anybody suggest how one can print tab feeds in Bar Code using SAPScript?
    Thanks in advance,
    Arijit Mitra

    Hi
    See the doc related to BARCODE printing and do accordingly
    To Create a Bar code prefix:
    1) Go to T-code - SPAD -> Full Administration -> Click on Device Type -> Double click the device for which you wish to create the print control -> Click on Print Control tab ->Click on change mode -> Click the plus sign to add a row or prefix say SBP99 (Prefix must start with SBP) -> save you changes , it will ask for request -> create request and save
    2) Now when you go to SE73 if you enter SBP00 for you device it will add the newly created Prefix
    Create a character format C1.Assign a barcode to the character format.Check the check box for the barcode.
    The place where you are using the field value use like this
    <C1> &itab-field& </C1>.
    You will get the field value in the form of barcode.
    Which barcode printer are you using ? Can you download this file and see.
    http://www.servopack.de/Files/HB/ZPLcommands.pdf.
    It will give an idea about barcode commands.
    Check this link:
    http://www.sap-img.com/abap/questions-about-bar-code-printing-in-sap.htm
    Check this link:
    http://help.sap.com/saphelp_nw04/helpdata/en/d9/4a94c851ea11d189570000e829fbbd/content.htm
    Detailed information about SAP Barcodes
    A barcode solution consists of the following:
    - a barcode printer
    - a barcode reader
    - a mobile data collection application/program
    A barcode label is a special symbology to represent human readable information such as a material number or batch number
    in machine readable format.
    There are different symbologies for different applications and different industries. Luckily, you need not worry to much about that as the logistics supply chain has mostly standardized on 3 of 9 and 128 barcode symbologies - which all barcode readers support and which SAP support natively in it's printing protocols.
    You can print barcodes from SAP by modifying an existing output form.
    Behind every output form is a print program that collects all the data and then pass it to the form. The form contains the layout as well as the font, line and paragraph formats. These forms are designed using SAPScript (a very easy but frustratingly simplistic form format language) or SmartForms that is more of a graphical form design tool.
    Barcodes are nothing more than a font definition and is part of the style sheet associated with a particular SAPScript form. The most important aspect is to place a parameter in the line of the form that points to the data element that you want to represent as barcode on the form, i.e. material number. Next you need to set the font for that parameter value to one of the supported barcode symbologies.
    Reward points if useful
    Regards
    Anji

  • How to use Bar code field in Item master

    Hi Experts
    I want to know that How to integrate Bar code scanner data with SBO. Bar code contain many information like price, serial no., description etc . For example I want that when I read a barcode by barcode scanner it automatically update itemcode, description , price and serial no.
    Thanks
    regards
    Gorge

    Hello Gorge,
    A barcode would ideally contain only an identification code and not other information. All such information like price, etc. should be fetched from a database, after reading the barcode, and identifying the item.
    You can simply enter the barcode in the Item Master Data and than use the barcode field to identify the item in sales / purchase documents instead of itemcode or itemname.
    Rahul

  • HP service Tags - what type of bar codes do they use?

    Hi there,
    i have asset tracking software and a bar code scanner. I'm looking to know what type of bar code is on the HP service tags. As i want to be able to scan in the bar code to give me the serial number of the machine.
    thanks,
    Paul

    Hi,
    your problem is that you are trying to resolve a problem related to a specific statement by using instance-wide tools. You should look at performance stats for that particular statement.
    1) Identify sql_id of the offending statement (e.g. select sql_id from v$sql where sql_fulltext like '%part_of_statement_text_here%', if it doesn't return results check case or look in
    dba_hist_sqlstat)
    2) Look for records with this sql_id in DBA_HIST_ACTIVE_SESS_HISTORY (use filter on sample_time). Compare performance indicators for the timeframe of the incident and outside it
    3) You can also find performance stats for this statement in DBA_HIST_SQLSTAT, but you will have aggregates over snapshot duration
    Given your symptoms, the most logical explanation is a plan flip. Check plan_hash_value in DBA_HIST_SQLSTAT -- if it changed around the time of the incident, that will confirm your suspicion.
    Use dbms_stats.display_awr to display both "good" and "bad" plan. Try to understand the key difference, look at predicates for any hint that could explain it. If it doesn't give you results,
    use format=>'advanced' to generate outlines for both plans, then you can set STATISTICS_LEVEL=ALL and run the statement with both plan, producing extended plan statistics. Use
    dbms_xplan.display_cursor(..,..,format=>'allstats last') to display it. If having difficulty interpreting it, post it here to get the help from community.
    Best regards,
    Nikolay

  • Bar code scanners

    Does anyone have a bluetooth bar code scanner that works with IPad 1
    We also need a receipt printing solution

    Ingenico has a 1D Bluetooth barcode scanner certified MFi by Apple.
    http://baracoda.ingenico.com/Baracoda-i-fly.aspx
    Baracoda i-Fly is compatible with Apple iPod touch, iPhone and iPad.
    Baracoda i-Fly supports IAP Bluetooth profile and is MFi certified, which means it is 100% compatible with Apple development standards and performances.
    Its Bluetooth connection is bidirectional, which enables the i-Fly to transmit data both ways in mode « No Data Loss »).
    Furthermore, Firmware update is also possible, which is not the case for non-MFi certified devices.

Maybe you are looking for

  • IDOC not Received at XI

    Hello folks , I need to send a idoc from r/3 to xi. i have made all the necessary configuration in r/3. iThis s a production sytem ....have checked on R/3the IDOC is succesful at we02 checked BD87- IDoc sent to SAP system or external program SM58 no

  • Call fwd to a user, who then call fwds to Voicemail

    I have a customer with a scenario where the original user call forwards to another user. This user then has a call forward no answer to voicemail.  If the first recieves a call, then the call is unanswered on the second user and then endsup in voicem

  • How much time does it take an SDK program to save an AR Invoice?

    Hi Guys, I know there are lots of things that I need to consider to know the answer to this question but I'm gonna ask it anyway. I have an HP Proliant ML370g5, with two intel zeon 1.86ghz quad core processors, 4gb ddr3 400mhz. Do you have an idea ho

  • Adding RADIUS VSAs on ACS 3.2 SE

    I have tried to add a VSA to enable a Packeteer to authenticate using RADIUS on the ACS. Using RDBMS synchronization to import the csv file below. SequenceId,Priority,GroupName,Action,ValueName ,Value1,Value2,Value3 1,1,External,163,26,access=look,23

  • WS 3.1 Build 536 - JDK 1.5 Required for Install

    Contrary to the instructions at http://edocs.bea.com/workshop/docs92/studio31/Installation/InstallationInstructions.html which clearly states that on Windows machines JDK 1.4.2 or later is required, the installation will not be a success unless JDK 1