Printer prints papers of weird characters

Hi,
I have a network printer which has the correct driver (HP LaserJet 400 M401 PCL 6) installed on a Windows Server 2008 R2 and when printer to this printer from a client computer (both additional drivers for 32-bit and 64-bit are installed on the server), it sometimes prints a lot of papers with all kind of characters. You need to cancel on the printer and finally turn it off to stop the papers printing. What can cause this? I've installed everything correctly and sometimes it works for a while and then it just stops printing correctly and print this papers of characters. I've already tested with an universal driver too but sometimes the same problem pops up.
Please help!
Thank you!

If the output is repeatable (i.e. exactly the same when reprinting the same document, using the same driver, to the same device), then it is likely that it is caused by a driver (or driver settings) fault.
There may be a more up-to-date driver available, or (depending on the printer model) you may perhaps be able to switch to a driver using a different Page Description Language(i.e. PCL5 or PostScript instead of PCL6 (the 'marketting' name for the PCL XL PDL)).
If the error(s) is/are random, they are much more likely to be the result of intermittent corruptions of the generated print stream between the workstation and the device (check cables, ports, switches, etc.); it could also possibly be an intermittent problem with the printer itself.

Similar Messages

  • HP 895CSE Prints Weird Characters on 1st Page per Print Job

    My printing always prints one line of characters on the 1st page, followed by the correct document on the second. When I had the previous operating system, no problem like this occurred. I have reinstalled the printer driver for OS 10.5, still same result. Any suggestions?

    My printing always prints one line of characters on the 1st page, followed by the correct document on the second. When I had the previous operating system, no problem like this occurred. I have reinstalled the printer driver for OS 10.5, still same result. Any suggestions?

  • Printing the First 14 Characters of Every Line in a Text File

    My text file looks like the following:
    1111097116274, H0101C58F8110C005, 1, 16:48:03
    1111097116274, H0100058F8110C006, 2, 16:48:10
    1111097116274, H00F0458F8110C006, 3, 16:48:12I want my java program to print the first 14 characters of every line. Here's what I have:
    import java.awt.*;
    import javax.swing.JOptionPane;
    import java.io.*;
    public class Read {
         public static void main( String args[] ) {
        try {
            BufferedReader in = new BufferedReader(new FileReader("aFile.txt"));
            String line;;
            /*String tagid;*/
            while ((line = in.readLine()) != null) {
                 char[] tagid = line.toCharArray();
                 line.getChars(0, 14, tagid, 0); 
                 System.out.println(tagid);
            in.close();
        } catch (IOException e) {
             JOptionPane.showMessageDialog( null, "Error" );
             System.exit(0);
         Instead of printing the first 14 characters of every line to output, it prints the whole text file.
    Any ideas of what's wrong?
    Thanks.

    Well, that's the thing with a highly tuned, precision engine like your mind, JosAH. Adding a little alchohol to the fuel mix provides a performance boost, but as the alcohol/fuel ration increases, the performance improvement peaks and then degrades, until the performance is actually reduced. Now, I understand that in the case of the magic Grolsch, this performance curve is shifted farther to the right (graphed with Grolsch count as the independent variable, and performance improvement as the dependent variable), but it still occurs.
    I recommend nitrous oxide. You may need to get your piston heads hardened, though.
    � {�                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • How to stop background job to print papers

    Hi all,
    I have background job of forms running every day and its printing papers. My requirement is to stop the printing of papers in the background job.
    How to do this .
    i am using CALL FUNCTION 'GET_PRINT_PARAMETERS and    NEW-PAGE PRINT ON PARAMETERS v_params NO DIALOG.
        NEW-PAGE PRINT OFF.
    Thanks
    Krupali

    Hi,
    <li>Set the below before you call NEW-PAGE PRINT ON
    lw_pripar-prrel = space.
    lw_pripar-primm = space.
    <li>Call NEW-PAGE PRINT ON like below
        NEW-PAGE PRINT ON
          NEW-SECTION
          PARAMETERS lw_pripar
          ARCHIVE PARAMETERS lw_arcpar
          NO DIALOG.
    Thanks
    Venkat.O

  • When I print from adobe reader 11 it often prints a page of characters not words. Why is this?

    When I print from adobe reader 11 it often print a page of characters not words. Why is this?

    Can you try 'Print as image' (from the Advanced panel on the Print panel).

  • My Mac won't read cyrillic in certain files and displays instead weird characters like this: "–í–µ-Ç–µ-Ä –ø-Ä–æ–¥–∏-Ä–∞–µ-Ç –¥–æ –∫–æ-Å-Ç–µ–π." Any ideas why this might be or how I can solve it?

    Yesterday I extracted the subtitles of an MKV file to try and print them. Unfortunately, when I open the .srt file with any text processor, it displays weird characters like the ones included in the title:
    "–û–±—ã–≤–∞—Ç–µ–ª–∏ –ø–µ—á–∞–ª—å–Ω—ã.
    –í–µ—Ç–µ—Ä –ø—Ä–æ–¥–∏—Ä–∞–µ—Ç –¥–æ –∫–æ—Å—Ç–µ–π."
    I thought this had to do with it being an .srt file, but just now I encountered the same problem with an Excel file.
    Any ideas why this might be or suggestions as to how to solve it?
    Thanks in advance,
    Mario

    It looks like an encoding problem.  You should try opening the file in a text editor where you can choose one of the various possible cyrillic encodings (utf-8, koi8-r, iso-8859-5, win-1251, MacCyrillic)

  • Why does my output give weird characters?

    import java.util.Scanner;
    public class SDTester{
         public static void main(String[] args){
              String message;
              Scanner scan = new Scanner(System.in);
              BinarySearchTree t = new LinkedBinarySearchTree();
              System.out.println("Enter command");
              message = scan.nextLine();
    }Can someone explain why my output for this when typing quit is:
    Enter command
    quit�:

    Yeah its what I typed in. The "a" is not the only mysterious part. Theres also that upside down L type thing and the colon. Sometimes theres extra letters. Im running on windows vista.
    Its weird when I copy the output some of the "weird" characters dont show up.
    EDIT: Its only with inputted text. I did a simple println statement and it was fine but the quit when typed in and the quit when printed out from the variable "message" give the weird text:
    ---------- Capture Output ----------
    "C:\Program Files\Java\jdk1.6.0_02\bin\java.exe" SDTesterEnter command
    quit�:
    quit�:
    Hello everybody
    Terminated with exit code 0.Edited by: McCloud7 on Dec 16, 2007 7:29 PM
    Edited by: McCloud7 on Dec 16, 2007 7:31 PM

  • Offline approval - weird characters in Outlook

    Hi all,
    We're on SRM 5.0, Server 550, SP12.
    Scenario: offline approval of Shopping Carts
    After running report RBBP_NOTIFICATION_OFFAPP, approver is getting an e-mail in Outlook 2003 with some weird characters:
    **START**
    Â
        The following requires processing:
    Â
        1 . Approve shopping cart of Shopper with value 64,78 USD
       
    Â
    Â
        Use the following link to log on to the system and carry out the approval online:
        Log on
    Â
    Â
        To approve or reject directly from this e-mail, select one of the following links:
    Approve by E-mail   Reject by E-mail   Â
    **END**
    When I look at the same message in , these characters are not visible; but there seem to be spaces/blanks in those spots. Looks like Outlook is substituting spaces for some other character.
    Also, there're some extra blank lines, which we would like removed.
    Any ideas how to get rid of the unwanted characters and unnecessary lines, besides BAdI implementation?
    Cheers,
    Serguei

    Hi,
    Please check the foll note:
    Note 1100912 - E-mail messages for work items with incorrect line break
    Also,sometimes some junk characters are inserted into the offline mail if the required services(for the generation of mail ) are not active in transaction SICF.
    Please see whether the following path is active in SICF:
    SAP/BC/BSP/SAP/SMART_FORMS/DEFAULT.CSS
    If the above service is not activated,then activate that and re-test.
    Last option would be to implement the BADI BBP_OFFLINE_APP_BADI (method ~MAIL_DATA_GET) to remove the unwanted characters.
    BR,
    Disha.

  • Japanese lyrics shown on iPhone become weird characters after some number of plays

    I put in lyrics for my Japanese songs both the kanji/kana and romaji. There have been no problems before this. But somehow I suppose after the newest iTunes released I added some new songs and there were two of them that I added lyrics into them. At first their lyrics were shown properly on my iPhone screen. But after some time the kanji/kana became some weird characters. I checked the lyrics in iTunes and there seemed to be no problems at all with my lyrics. I needed to delete the song from both my phone and my iTunes library and re-add then re-synced it again. (just deleting the song from the phone and then re-synced it didn't help.) Then again, today the lyrics became weird again. I don't really understand. It would become very annoying if this keeps going on. I would appreciate any advice and help. Thank you very much.

    I just tried this with my iPhone 4 and it also didn't work.  This is how it failed:
      - Select "shared".
    - The "pie" start to grow, got to about 1/3, then crashed without
        bringing in the shared content.
    - After that, the library appeared in list, but I couldn't select
        it at all anymore.
    Then I tried it with my iPad.  The pie got to the same point, sat
    there for a long time, then completed and worked fine.
    I did a hard reset of the phone and tried again, this time it
    behaved like the iPad and worked fine.
    Not sure whether it was the hard reset or whether sharing with
    another device "woke something up", but in any event it works
    now and I can't get it to break again.
    Note, I only use sharing for movies, since I have Music Match
    (which works *great* for me, even on 3G).
    Specs:
      Sharing: 2.7 GHz iMac i5, OS 10.6.8
      Clients: iPhone 4
                  4th gen iPad
    Everything (including iTunes) patched to the latest.

  • Weird characters appear after write to a file

    Here is my story:
    I open a file using RandomAccessFile to replace some characters inside it. Let's say I have in the file string 4000, I replace it by string 400. It works fine.
    Now if I replace this number by string 40000, when I check the text file, some weird characters like ^M appear everywhere at the end of lines.
    What's the reason and how to solve it? I believe there is some invisible characters at the end of string 4000 that causes the problem.
    Note that I use function writeBytes to write strings into the file.

    public static void changeFileRAF(String sFile, String paramName, String paramValue) {
    try {
    RandomAccessFile rf = new RandomAccessFile(sFile, "rws");
    String currentLine;
    long pos;
    while (true) {
    pos = rf.getFilePointer();
    currentLine = rf.readLine();
    if (currentLine == null)
    break;
    if (currentLine.trim().startsWith(paramName)) {
    rf.seek(pos);
    char[] replaceLine = currentLine.toCharArray();
    char[] value = paramValue.toCharArray();
    int i = 0;
    //pass all white space characters
    while (i < replaceLine.length && Character.isWhitespace(replaceLine)) {
    i++;
    //pass all characters representing tag name
    while (i < replaceLine.length && !Character.isWhitespace(replaceLine[i])) {
    i++;
    //again, pass all white space characters
    while (i < replaceLine.length && Character.isWhitespace(replaceLine[i])) {
    i++;
    if (i == replaceLine.length) {//no value, do nothing                                                           
    return;
    int oldValueLength = replaceLine.length - i;
    String newLine = System.getProperty("line.separator");
    if (oldValueLength >= value.length) {
    System.out.println("different: " + (oldValueLength - value.length));
    for (int j = 0; j < value.length; j++)
    replaceLine[j + i] = value[j];
    for (int j = value.length; j < oldValueLength; j++)
    replaceLine[j + i] = ' ';
    rf.writeBytes(String.copyValueOf(replaceLine));
    else {
    System.out.println("old value length: " + oldValueLength);
    System.out.println("new value length: " + value.length);
    char[] compensation = new char[value.length - oldValueLength];
    for (int j = 0; j < oldValueLength; j++)
    replaceLine[j + i] = value[j];
    for (int j = oldValueLength; j < value.length; j++)
    compensation[j - oldValueLength] = value[j];
    System.out.println("it is " + String.copyValueOf(replaceLine) + String.copyValueOf(compensation));
    rf.writeBytes(String.copyValueOf(replaceLine) + String.copyValueOf(compensation));
    break;
    rf.close();
    } catch (IOException e) {
    System.out.println(e.getMessage());
    I hope it's not too long.

  • Why has my use of the apostrophe started inserting a string of weird characters on my iPad?

    My iPad has recently started replacing the apostrophe with a string of weird characters (something like &amp;39; or similar) when I post a comment on Facebook or YouTube. Why is it, and how do I get rid of it? Anybody know?
    (The apostrophe appears as normal when I'm still typing; it's only when I send / transmit the the post that it appears.)

    On the other hand if you want to fix it, it's a simple as going here:
    http://www.adobe.com/products/activation/
    and starting a chat session to get them to reset your activations.

  • Weird characters in known_hosts file

    We have a Solaris 9 Client system that does ssh to other Solaris servers.
    StrictHostKeyChecking is set to "No" in /etc/ssh_known_hosts.
    Even when the public host key of the servers do not change we see that there are multiple entries in $HOME/.ssh/known_hosts file of the client.
    How can this happen?
    And some times, we have weird characters in place of the ip address and encryption algorithm, while the actual key is properly written into known_hosts file.
    How these weird characters are put into the known_hosts file?
    If anyone can provide the answers, it will be of great help.
    Thanks in advance.

    not sure i follow fully, can you check for this setting:
    HashKnownHosts yes
    in ssh_config. this will hash keys in known_hosts to make it unreadable...

  • Weird characters before the xml start tag on Host

    When we load xml generated in Biztalk into an OS/400 Host environment, they always have some weird characters before the declaration (<?xml) causing the host program to fail. The characters look like gibberish from another planet (not really..look like
    some binary encoding). Can one of the experts please point me to what must be changed?

    If you look at the message using a hex editor, the UTF-8 BOM (Byte Order Mark) is EF BB BF, if you are using Unicode, the BOM is FE FF or FF FE (depending on little or big Endian encoding).
    If you "Stop" your send port and run a test, you can view the suspended message body in hex and determine if these characters are a BOM.
    David Downing... If this answers your question, please Mark as the Answer. If this post is helpful, please vote as helpful.

  • Weird characters in Ultrabeat

    Sorry if this has been posted elsewhere but I've recently started to get some weird characters when opening an Ultrabeat instrument (see attached screenshots).
    /Users/neilmorgan/Desktop/Screen shot 2010-12-27 at 16.53.59.png
    /Users/neilmorgan/Desktop/Screen shot 2010-12-27 at 16.54.56.png
    They're different each time and they seem not to affect the sound, but does anyone have any ideas of how to rid my system of them?
    Message was edited by: SwiftyM
    Message was edited by: SwiftyM
    Message was edited by: SwiftyM

    For instance, did you mean something like this:
    https://skitch.com/yorick75/rx46f/characters
    I've been getting those kind of 'weird characters' in the Ultrabeat pattern menu as well, but only recently. If that is the same case as yours, yes, it doesn't affect the sound or functionality of anything in Ultrabeat; however, it is annoying and a bit confusing when you want to choose a sample pattern or if you want to create a new one because the whole menu window looks 'jumbled up' with those odd characters. I have no idea what causes the display of these 'weird characters'. I would like to know if there's some way to fix this. Hopefully someone else has come upon this and might read this post too. By the way, in my case, this happens in Logic 8. So I don't know if anyone using Logic 9 has encountered a similar problem.

  • Weird characters in MediaSource cause cr

    Under Artist and Album in MediaSource 2 many of my artist have funny characters in them as shown below.
    http://205.44.2.42/weird.jpg
    When I click on them, it causes an error:
    The instruction at "0x00000020" referenced memory at "0x00000000". The memory could not be "read".
    The program then crashes out.

    How should I know what language to change it to?
    I've hit this same problem, it only occurs in the ARTIST and ALBUM window of the Zen Touch view (fine on the PC Music Library view. I have Firmware vsn ..3
    As soon as I highlight one of the Aritsts (or Albums), cabooom.
    I don't really understand were the weird characters oginate from, some have them, some don't. The Popular Classics albums all have the problem (which may originate from whatever the language was set to when it they were initially loaded at the factory) - but having only got the device today, I've loaded 4 more albums 2 have the weirdness and 2 don't.
    Now that is weird....
    DB
    -- Oh, and by the way - I bought it from a UK retailer, not from the Far East via eBay ;-)Message Edited by DB on 08-02-2005 07:00 AM

Maybe you are looking for

  • How do you move music from one computer to another

    I have ripped my entire CD collection to an old laptop, basically turning it into a jukebox.  I would like to move the music to my new laptop as well.  I have tried to copy the music folder to an external hard drive and then copying it to the music f

  • Can website hyperlinks be converted to local links when creating a PDF?

    I'm using the Acrobat X trial version and need some help understanding its capabilities. I have a 600+ page document that resides on a Wiki web site. The Wiki is direct edited by numerous authors and it generates the html code. I have successfully us

  • Portal Self registration issue

    Hi guys, I had activated Portal self registration with companies feature. what i did is ,  i assigned one role (ess portal role in which all my ess screens are covered) to authenticated group and  every_user_core_role to anonymous group and did neces

  • Installing PowerPivot, Setup is missing prerequisites

    I'm planning on installing PowerPivot on several computers running Windows 7 x64 and Office 2010 x86. When trying to install PowerPivot on the first computer, the installation fails with the error message: Setup is missing prerequisites: This add-in

  • Maintain a Webi schedule outside of BOE

    My requirement is this: A single parameterised webi document needs to link to instances of itself, passing in parameters to input prompts from parent to child.  In order to aid performance, the intention is to schedule the document so that an instanc