Scanner Duplication error

I have a Scanner in the LEFT Column (of Apple Remote Desktop Admin 3.7.latest) for each of my Remote Servers.
Works fine on all but one iMac where two of the Scanners keep defaulting to the same information.
Scanner LONDON is correct
Scanner PARIS has Scanner London details all the time.
Even if I delete the Scanner PARIS and remake it.
Like I say, other Macs are OK with Remote Desktop Admin setup this way with the same settings.
This one iMac won't play.
Is there some preferences or settings for ARD Admin I can knock out completely?
Thank you,
Message was edited by: James Rothschild

Hi @heavym357 , and welcome to the HP Forums.
I see you are having scanner 22 errors.  I also see you'ver covered most of the troubleshooting already.  Due to the fact this appears to be a firmware failure, I'd recommend giving us a call.
You can utilize this website to learn how to contact us appropriately, based on your region:
Contact HP Worldwide
Thanks!
Please click “Accept as Solution " if you feel my post solved your issue, it will help others find the solution.
Click the “Kudos, Thumbs Up" on the right to say “Thanks" for helping!
Jamieson
I work on behalf of HP
"Remember, I'm pulling for you, we're all in this together!" - Red Green.

Similar Messages

  • Duplication Error while loading data in write optimized DSO

    Hi Experts,
    I have an issue.In BI7 I'm trying to load the data in a WRITE OPTIMIZED ODS from the controlling data source 0CO_OM_CCA_10. I'm getting the data properly in PSA, but while loading it into my WODSO i'm getting the duplication error although my keys fields and data fields are properly placed in my data target(WODSO).
    pls let me know what is the solution to load it successfully.
    Thanks in Advance.
    Amit

    Hi,
    thanks for your reply
    I'm getting this error message:
    Diagnosis
        During loading, there was a key violation. You tried to save more than
        one data record with the same semantic key.
        The problematic (newly loaded) data record has the following properties:
        o   DataStore object: GWFDSR02
        o   Request: DTPR_4BA3GF8JMQFVQ8YUENNZX3VG5
        o   Data package: 000006
        o   Data record number: 101
    Although i have selected the key fields which identifies unique record,then also i'm getting the duplication error.
    Even i have reffered to the BI content for this data source and found that it has the same key fields as of mine.
    Debjani: i need unique records without duplication and i'm doing a full load in DTP.
    What is to be done pls help
    Thanks in advance.
    Edited by: Amit Kotwani on Sep 26, 2008 10:56 AM

  • Seq Header Duplication error when trying to burn dvd

    I am using DVD Studio Pro 4
    Mac OS 10.49
    I imported a 36 minute QT video edited in FCP to DVDSP. When I try to burn a DVD, I get an error message that reads, " Seq Header Duplincation. I cannot figure out the problem.
    Incidently, the 30 minute DVD seems to contain 7.4 GB on my hard drive, but DVDSP converts it to 3GB automatically. Does this sound customary?
    Thanks,
    Schoff

    ocfilmmaker, I hear you. I am trying to run DVD Studio Pro on my new Mac Pro under Leopard and I am having nothing but problems. It always worked fine on my G5 iMac. First, it won't recognize my DVD burner (there have been several posts about that) and now I'm seeing the "Seq Header Duplication" error, with no further explanation. My video is already encoded. I don't know whether it is the Xeon, Leopard, or the latest build - but this thing is useless right now.

  • Scanner Connection Error

    I recently installed a new ENVY printer/scanner to a new MAC. Both the print/scan function worked correctly upon installation. After upgrading to Yosemite, however, whenever I try to open the scanner, I get the following message: "Waiting for Scanner" > "An error occurred while communicating with the scanner." I have deleted the printer and reinstalled, but continue to get the same error message when trying to open the scanner function from my computer. I am albe to open the scanner from the printer itself, but not the computer. Any advice?
    This question was solved.
    View Solution.

    Thank you for the detailed instructions. Your suggestion worked! Much appreciated.

  • Duplication error in FMBB

    Hi FM experts
    this morning, i found the BUED_DOCNR was not incresed until above 70 budget documents were generated. so i have created the budget documents continuosely for monitoring the number range. suddenly, i had met duplication error when i save the budget document using FMBB.  (maybe 101th budget document)
    now, after saving document, system message said that the budget document number was restarted with 1 but, it  caused the duplication error.
    the strange thing is that BUED_DOCNR is increased now ???  but, still  the duplicaiton errors were happened. because  97 budget documents were already saved in SYSTEM.     could you explain this situaiton?    nobody touched the number range.
    and the current IMG setting was same with a previous project's one.
    regards,
    MK

    Hi ,  thanks for your advice regarding the RFFMKU_DOC_DOUBLE_ANALYSER program.
    but, in my case,   there were no duplication documents in system  now so  the program did not produce  duplication documents.
    i am testing the system before go-live,  i made several budget documents and those were saved successfully. but   yesterday, i  found that BUED_DOCNR(budget doc no object) was 0. it was not not increased by system fault or someone touched it.
    anyways,   BUED_DOCNR object is working successfully now, so  the duplication error was happened as i  saved new budget  document  starting with document number 1.
    i don;t think  someone reset BUED_DOCNR.   i want to know whether this case is often come out  without manual work or not.
    if someone reset the BUED_DOCNR by mistake, i will increase the current BUED_DOCNR  right now and   the duplication error will not be happened.
    if not human error, i am afraid that the BUED_DOCNR is suddenly reset by system fault
    Regards,
    MK
    Edited by: MK on Nov 5, 2010 7:49 AM
    Edited by: MK on Nov 5, 2010 7:50 AM

  • Scanner input error

    I want to make a very simple program that allows the user to enter a key/character and have the corresponding unicode value returned. The problem is that I receive an error after the input of any character.
    Here is the code:
    import java.util.Scanner;
    public class KeyMap
    public static void main (String args[])
    int number; //the future unicode value.
              System.out.print ("Enter the key you want the unicode number of: ");
              Scanner scan = new Scanner (System.in);
              number = scan.nextInt();
              char key = (char)number;
              System.out.print ("The number for key " + key + " is " + number);
    And I get this error in the run log after the character is entered:
    Exception in thread "main" java.util.InputMismatchException
         at java.util.Scanner.throwFor(Scanner.java:819)
         at java.util.Scanner.next(Scanner.java:1431)
         at java.util.Scanner.nextInt(Scanner.java:2040)
         at java.util.Scanner.nextInt(Scanner.java:2000)
         at KeyMap.main(KeyMap.java:11)
    KeyMap has exited with status 1.
    Thanks for any help!

    Exception in thread "main"
    java.util.InputMismatchException
         at java.util.Scanner.throwFor(Scanner.java:819)
         at java.util.Scanner.next(Scanner.java:1431)
         at java.util.Scanner.nextInt(Scanner.java:2040)
         at java.util.Scanner.nextInt(Scanner.java:2000)
         at KeyMap.main(KeyMap.java:11)Well that's coz your listening for an Integer input.
    the error should happen if you input non-integer data type.
    Nywled

  • Officejet 8600 Plus "scanner reported error" Mac scanning

    I recently purchased the Officejet 8600 Plus and have run into problems scanning. When scanning using the ADF, I frequently get a message saying, "Scanner reported an error. The scan was not completed because the operation was cancelled while scanning was in progress." The only way to escape from this situation is to turn off the OJ, power it back on, and then try scanning again. I haven't seen the issue using the flatbed, but I've used the ADF far more than the flatbed. This happens both when connected via wifi and USB, so it's not a networking problem. I have tried scanning via Apple's Image Capture as well as HP Scan and I get the error using both. I have all the latest software and firmware for both the Officejet and my Mac. I have tried uninstalling and reinstalling the HP software, to no avail. This situation is tremendously frustrating as one of the main reasons I purchased this product was the wifi scanning feature. Without a solution to this problem I will consider this product to be defective and will return it. So, any suggestions as to how to alleviate the problem? Thanks. System info: Macbook Pro 17" (early 2011)OS X 10.8.5  

     I have an HP MF127fw connected to Mac computers and am experiencing exactly the same problem. Scans from the ADF always fail with that same "scan canceled" message. Preview, Image Capture, or Scan from Print & Scan all receive the same error. USB or WiFi connections make no difference. What is wrong with the HP connection? Here it is 2015 and there have been over 200 viewers of the original posting regarding the inability to scan. Hasn't anyone found a way to overcome this problem?

  • Seq Header Duplication error on build

    does anyone know what this error is or how to fix it?
    Compiling VTS#7 (fbi)...
    Writing VTS070.VOB
    Muxing VTS071.VOB
    Seq Header Duplication
    the simulator works perfectly, but when I am going to burn the disk I get this error when it tries to mux one of my tracks.
    thanks

    Hi Thomas,
    Not really a helpful message and with DVDSP not neccessarily a helpful one.
    A few things to try before reencoding your VTS 7 material.
    Close DVDSP. Delete the PAR folders associated with the project and reopen. This forces DVDSP to reparse your mpegs.
    Secondly remove the video from VTS 7, Then simply replace it. When DVDSP links files to tracks on certain occassions it drops the ball when reseting the GOPS causing errors.
    Thirdly for a test (or you can do it first). Place some different material in the track.
    If all this fails. Duplicate the project and try and open it from the duplicate.

  • Scanner failure error message when trying to make a copy

    I have a continual scanner failure message on m y 750 xi when I try to make a copy.  Unit prints OK from my computer, but refuses to just make a simple copy.  I have tried shutting of and resetting and unplugging and all that stuff many times.  The light on the scanner does come on.  Thanks.

    I too am having this problem and have had, for about a week now.
    I've found that by logging off itunes (if I can), closing it down, and then restarting it, sometimes allows it to work for one transaction (say downloading an updated app). After that it's back to the same error.
    Really annoying.

  • Import from scanner give error message "This file already exists in this catalogue"

    I can import from the scanner occasionally, but often times get this error message.  " this file already exists in this catalogue" and the scanned picture is discarded.
        I see others have had it as well, but no solutions were posted. I'm running Photoshop elements 11 with all current updates.

    Thanks for the reply. My Image wasn't in a version set however.   I scanned a new photo which was successsful. I then scanned a second photo different from the first, which failed.  I think possibly the software for my HP scanner is at fault, since it always names the scans as image1.jpg. It doesn't give an option to increment successive scans to a different name which probably caused the problem.

  • Scanner causes Error code 44

    Hi Folks,
    When I power off scanner I get blue screen - error code 44.
    I can only continue having used reset button on computer
    Any ideas anyone?
    Stan Dinstill
                                                             

    Quote
    Originally posted by bilnv
    Are your scanner drivers up to date?
    Hi bilnv,
    I would assume so. Scanner installed using Epson disc. Windows OS device manager advises scanner operating correctly. No blue screen if I switch off computer first and then switch off scanner. Everything OK when computer is restarted.
    Stan Dinstill

  • W500 Fingerprint Scanner Software error

    "The connected sensor was not initialized by this application. Access is denied."
    I'm having problems, we're using a Hardware Independent Image for loading our PCs, and I'm only having problems with the Fingerprint Software on our W500, thankfully this is the only one we have at the moment so I still have a little bit of time to troubleshoot it.
    I'm using the 3.2.0.275 version of the software, the W500 is model 4064A12.
    I can get the machne imaged, running windows, all drivers except for the Fingerprint Scanner installed and it appears to be fine, except of course asking for the Fingerprint driver.
    When I try to do the unattended install, or even do a manual install of the software, I reboot the PC and see the Fingerprint screen just fine. But once I sign in, the fingerprint software tries to activate then gives the following error. "The connected sensor was not initialized by this application. Access is denied."
    This occurs even if I go into the bios and erase the fingerprint data, then reload the PC, and then try to manually or unattended install of the Fingerprint software.
    Does anyone have an idea, or suggestions of what to look at?

    Howdy,
    I'm experiencing the exact same issue.
    After starting the Lenovo Fingerprint Software, I get the error message: "The connected sensor was not initialized by this application. Access denied."
    I've just installed Vista Business and updated. The fingerprint software version is 3.2.0.116 .
    Anyone might know what the solution to this peculiarity might be?
    I thank you!

  • Canon MX310 scanner communication error with OS X 10.5.8

    Does anyone have ideas to solve the Canon MX310 error message, "Cannot communicate with scanner." I'm running Canon MP Navigator EX 1.0. My MX310 prints & copies wirelessly using an Airport Extreme w/o difficulty. I have checked that the USB cable is connected, printer is ON and tried a shut down of both computer & printer then restart which didn't resolve the issue. The error id might be 155.0.0. I don't get any other error messages generated from OS X. Thanks!

    http://www.usa.canon.com/cusa/support/consumer/printers_multifunction/pixma_mx_s eries/pixma_mx310#DriversAndSoftware has drivers for 10.5  Did you try downloading them?

  • Path duplication error

    Howdy,
    As far as I'm aware, I've successfully installed and
    configured Alchemy, with aft -vesion check working, the
    alchemy-setup being run on login, up until the point of compiling
    the string echo sample.
    When I attempt the compile I get the following error:
    c1 error:
    /usr/lib/alchemy/usr/lib/alchemy/avm2-libc/avm2/AVM2Env.h
    Which in turn causes many libraries to not be found. That
    above path of the AVM2Env.h library though, has a duplication of
    the $ALCHEMY_HOME directory '/usr/lib/alchemy/', which I'm sure is
    causing the error.
    Could this duplication be corrected in a config file or is it
    being dynamically constructed - perhaps a problem with my $PATH?
    I have a full write up of my installation process here:
    http://hibbins.wordpress.com/2008/12/02/find-a-way

    hi, see here ;)
    http://www.adobe.com/cfusion/webforums/forum/messageview.cfm?forumid=72&catid=755&threadid =1406714&enterthread=y

  • Scanner program error

    I get the following error during the scan of a document that is a picture 'there was an error in the scanning software'.
    Is suggested restar the program, restart  PC and reinstall the HP software.
    I've done all the suggested actions but without positive results.
    If I make a copy directly from the scanner resulting print everything works properly (the copy is printed).
    What could be the problem ??
    Thanks for the support
    Maurizio

    Hi Waterboy71,
    I made all attempts at solution suggested in the link you sent me, but without any positive results !!!! if you do not start the program "hp solution center" and I perform the scan of a document from the printer operation, the scan is performed perfectly and the file saved in the PC. It seems to me that there must be some problem in the program that handles the scan (the part that allows you to add, remove and manage the various pages of a scanned document).
    The following are details of the error message that appears in the pop-up:
    There was an error in the scanning software. Try one of the following. After each operation, scan again.
    - Restart the program
    - Restart the computer
    - Reinstall the HP Photosmart came with the device.
    Hidden information error: 4, (3,42,0)
    The only alternative I see, if I do not find a solution to this problem, is to install any program (not hp) which allows me to manage a multi-page document. Hoping that it works well and does not give me other problems.
    Do you have other suggestions for me?
    Many thanks!!!
    Ciao Maurizio

Maybe you are looking for

  • Error while creating asset through AS91

    Hi All, When i am trying to create asset through AS91 for a new company i am getting error AY 252 " Current fiscal year 2007 has to be after transfer daet 31.12.2007. In this company the Asset accounting has been recently customised but when i am try

  • VERY Pleased with my Photo Books!!!!

    Since discussion boards often are overweighted with critical sentiments and questions of problems, I thought it would be worthwhile posting that I created two separate Photo Books, one of my daughter and wife, and another of my Father-in-Law's work o

  • Covers not resizing for thumbnail view

    Hi, How/when/where does the thumbnail png file for ADE get created? I have some epubs ebooks that are not displaying correctly. Instead of the cover being resized for the thumbnail, it is being cropped. On other books, however, it works fine. I can't

  • Isn't it poss to print 3   6"x4" pic on a page?

    It is physically possible, "Portraits & Prints" has that template. I'd like to be able to do it in Lightroom. How to do? Thanks for any help.

  • Aperture will not recognize my nikon coolpix 5700 NEF raw images.

    I have not had any luck discovering a 5700 import solution. Nikon doesn't feel they have any obligation here. This is a problem for me. Maybe we can find a programmer who can help. In my windows days I would suspect a bad .ext name.