My word documents are not printing

Hi, my deskjet 2544 will not print word documents. It will print off the internet though.

Hi,
Sorry to hear you are having problems printing.
What device/operating system are you printing from?
"Although I work for HP, I'm speaking for myself and not on behalf of HP"
"Say "Thanks" by clicking the Kudos Star in the post that helped you.
--Please mark the post that solves your problem as "Accepted Solution"

Similar Messages

  • OLE: Why placeholders of MS Word document are not replaced?

    Hi Experts, I am using OLE to create Word Documents within a LOOP. The problem I have is that the Word Documents are created and seved well but the placeholders (&nom_prov') and (&ncod_prov') are not replaces by the values (in the example: test1 and test2).
    Anybody can help me in with that issue?
    LOOP AT lt_partner1 INTO ls_partner1.
      AT FIRST.
        CREATE OBJECT zword 'WORD.BASIC'.
        CALL METHOD OF zword 'FILEOPEN' EXPORTING #1 = 'C:\DOCS\PRUEBA_1.DOC'.
      ENDAT.
      CALL METHOD OF zword 'EDITSELECTALL'.
      CALL METHOD OF zword 'EDITCOPY'.
      CALL METHOD OF zword 'FILENEW'.
      CALL METHOD OF zword 'EDITPASTE'.
      CALL METHOD OF zword 'STARTOFDOCUMENT'.
    CALL METHOD OF zword 'WW2_EDITREPLACE' EXPORTING #1 = '&cod_prov'
        #2 = 'test 1'. "ls_partner1-nif.
      CALL METHOD OF zword 'WW2_EDITREPLACE' EXPORTING #1 = '&nom_prov'
        #2 = 'test 2'. "ls_partner1-name_org1.
      CALL METHOD OF zword 'STARTOFDOCUMENT'.
      CALL METHOD OF zword 'EDITSELECTALL'.
      CALL METHOD OF zword 'EDITCLEAR'.
      CALL METHOD OF zword 'EDITPASTE'.
      lv_contador = lv_contador + 1.
      CONCATENATE 'C:\DOCS\' 'PRUEBA' lv_contador '_' sy-datum '.DOC' INTO  lv_file_save_as.
      CALL METHOD OF zword 'FILESAVEAS' EXPORTING #1 = lv_file_save_as.
      CALL METHOD OF zword 'DOCCLOSE' EXPORTING #1 = 2.
    AT LAST.
       CALL METHOD OF zword 'APPCLOSE'.
       FREE OBJECT zword.
    ENDAT.
    ENDLOOP.

    Hello, I have found out what was the problem. In the end I have used method EDITREPLACE and not WW2_EDITREPLACE and I put the method EDITREPLACE more to the end of my ABAP Code:
    REPORT  z_prueba_oliver.
    TYPES: BEGIN OF ty_partner,
                 nif            TYPE bu_partner,
                 name_org1      TYPE bu_nameor1,
                 conting_com    TYPE c LENGTH 2,
                 fecha_efecto   TYPE zbufecha_ef,
                 END OF ty_partner.
    DATA:  lt_partner1     TYPE TABLE OF ty_partner,
                 ls_partner1     TYPE ty_partner,
                 lv_file_save_as TYPE c LENGTH 40,
                 lv_contador     TYPE n LENGTH 3.
    * Include necesario para la declaracion de objetos OLE2
    INCLUDE ole2incl.
    * Declaraciones para la llamada a WORD.
    DATA zword TYPE ole2_object.
    CLEAR zword.
    ls_partner1-nif = 'X7510034M'.
    ls_partner1-name_org1 = 'Razon Social 1'.
    APPEND ls_partner1 TO lt_partner1.
    ls_partner1-nif = 'X7510034M'.
    ls_partner1-name_org1 = 'Razon Social 2'.
    APPEND ls_partner1 TO lt_partner1.
    ls_partner1-nif = 'X7510034M'.
    ls_partner1-name_org1 = 'Razon Social 3'.
    APPEND ls_partner1 TO lt_partner1.
    ls_partner1-nif = 'X7510035M'.
    ls_partner1-name_org1 = 'Razon Social 4'.
    APPEND ls_partner1 TO lt_partner1.
    ls_partner1-nif = 'X7510035M'.
    ls_partner1-name_org1 = 'Razon Social 5'.
    APPEND ls_partner1 TO lt_partner1.
    LOOP AT lt_partner1 INTO ls_partner1.
      AT FIRST.
        CREATE OBJECT zword 'WORD.BASIC'.
    * Se abre el fichero que contiene la plantilla de la carta
        CALL METHOD OF zword 'FILEOPEN'
          EXPORTING
          #1 = 'C:DOCSPRUEBA_1.DOC'.
      ENDAT.
    * Se selecciona todo el texto del archivo PRUEBA_1.DOC
      CALL METHOD OF zword 'EDITSELECTALL'.
    * Se copia el texto seleccionado al portapapeles
      CALL METHOD OF zword 'EDITCOPY'.
    * Se crea un documento nuevo, al que WORD llama documento1
      CALL METHOD OF zword 'FILENEW'.
    * Se pega el texto del portapapeles a documento1
      CALL METHOD OF zword 'EDITPASTE'.
    * Posicionar al principio del documento
      CALL METHOD OF zword 'STARTOFDOCUMENT'.
    * Posicionar al principio del documento
      CALL METHOD OF zword 'STARTOFDOCUMENT'.
    * Se selecciona todo
      CALL METHOD OF zword 'EDITSELECTALL'.
    * Se borra la selección
      CALL METHOD OF zword 'EDITCLEAR'.
    * Se incorpora el texto original de PRUEBA_1.DOC
      CALL METHOD OF zword 'EDITPASTE'.
    *IF ls_partner1-conting_com is initial.*
       *CALL METHOD OF zword 'EDITREPLACE'*
        *EXPORTING*
        *#01 = '#linea2y3#'*
        *#02 = 'texttexttexttext'*
        *#03 = 0*
        *#04 = 0*
        *#05 = 0*
        *#06 = 0*
        *#07 = 0*
        *#08 = 0*
        *#09 = 0*
        *#10 = 1*
        *#11 = 0*
        *#12 = 1.*
    *else.*
         *CALL METHOD OF zword 'EDITREPLACE'*
        *EXPORTING*
        *#01 = '#linea2y3#'*
        *#02 = 'texttexttexttext'*
        *#03 = 0*
        *#04 = 0*
        *#05 = 0*
        *#06 = 0*
        *#07 = 0*
        *#08 = 0*
        *#09 = 0*
        *#10 = 1*
        *#11 = 0*
        *#12 = 1.*
    *ENDIF.*
      *CALL METHOD OF zword 'EDITREPLACE'*
        *EXPORTING*
        *#01 = '#codprov#'*
        *#02 = ls_partner1-nif*
        *#03 = 0*
        *#04 = 0*
        *#05 = 0*
        *#06 = 0*
        *#07 = 0*
        *#08 = 0*
        *#09 = 0*
        *#10 = 1*
        *#11 = 0*
        *#12 = 1.*
      CALL METHOD OF zword 'EDITREPLACE'
        EXPORTING
        #01 = '#nomprov#'
        #02 = ls_partner1-name_org1
        #03 = 0
        #04 = 0
        #05 = 0
        #06 = 0
        #07 = 0
        #08 = 0
        #09 = 0
        #10 = 1
        #11 = 0
        #12 = 1.
    * Se reemplaza el campo #nomprov# con el valor de la tabla interna.
      CALL METHOD OF zword 'EDITREPLACE'
        EXPORTING
        #01 = '#FECHA_EFECTO#'
        #02 = '10 de Junio de 2010'
        #03 = 0
        #04 = 0
        #05 = 0
        #06 = 0
        #07 = 0
        #08 = 0
        #09 = 0
        #10 = 1
        #11 = 0
        #12 = 1.
      lv_contador = lv_contador + 1.
      CONCATENATE 'C:DOCS' 'PRUEBA' lv_contador '_' sy-datum '.DOC' INTO lv_file_save_as.
    * Se cierra el documento activo, documento1 con opción de salir sin salvar
      CALL METHOD OF zword 'FILESAVEAS' EXPORTING #1 = lv_file_save_as.
    * Se cierra el documento activo PRUEBA.DOC con opción salir sin salvar
      CALL METHOD OF zword 'DOCCLOSE' EXPORTING #1 = 2.
      AT LAST.
    *   Se cierra WORD
        CALL METHOD OF zword 'APPCLOSE'.
    *   Se libera el objeto ZWORD
        FREE OBJECT zword.
      ENDAT.
    ENDLOOP.

  • Documents are not printed in tray selected

    Hello all,
    I met one problem to print some Spool Orders in one specific tray.
    One phisical printer is created twice in SAP :
    - one printer for one tray (ex : tray2)
    - one printer for the other tray (ex : tray3)
    Tray1 is not used.
    When i'm printing SmartForms documents, they are printing in the selected tray, but some others documents (ex: SAPScipt documents) are printing to the default tray of the phisical printer but not in one selected.
    Did somebody met this problem and succeeded to resolve it, please ?
    Many Thanks in advance for your help.
    François LECOMTE

    hi François,
    I have 1 suggestion.. for u r problem.
    in SPAD u will define the OUTPUT TYPES for the output types we have a option to select-->OUTPUT ATTRIBUTES Tab..  here   u can give the Default Tray as you want.in PAPER TRAY(u'll find it bottom of output attribute tab).
    I hope u r problem will be solved by changing the output type settings
    Please Close this thread.. when u r problem is solved
    Reward if Helpful
    Regards
    Naresh Reddy K

  • My Word documents are not opening from sharepoint

    When I attempt to open a word document from sharepoint it remains stuck at "Downloading: http://intranet/document url"
    Word 2010 and SharePoint 2010
    This occurred when we restored a server after virus issue. Also I noticed that I left one of these word documents in this "downloading state" and the next morning when I opened my station the document was open... therefore it seems to just be taking
    WAY too long to open. 

    Is this SharePoint a stand alone server, where web and database are in the same box ?
    Do you know what steps changed settings from before virus, then, after virus ? Maybe people left the anti-virus running on
    military emergency mode, and it's consuming all server resources.
    You might want to check the database files' sizes, WSS_Content mdf and ldf. Is the ldf way too big ?

  • My 2009 macbook microsoft word documents are not being accepted as files.

    My 2009 Macbook seems to be falling behind. Using Mac OS X (Version 10.6.8) and Microsoft Word for Mac 2008 (version 12.3.6).
    For some reason, my files do not work online. They are "invalid." For example, "invalid file type" popped up on my school online dropbox and my online grad school application. My files are, however, in the correct (doc, docx, pdf) file types. I had to go on campus and use a PC to upload assignments and applications.
    Not sure if it's my software or old word version.
    Anywho, I just need some answers!

    Regardless of what system you are on (Windows/Mac), a filename extension is required when transferring files online. This was noted in the error message of your initial post:
    No File Extension For This File **File  Name**
    Make sure this  file has the correct extension.
    You would have had the same problem on Windows if you neglected a filename extension.
    It might be a bit more likely to accidentally save a file without an extension on Mac because Mac has been able in the past to work without filename extensions.  This is changing. Everyone should be using filename extensions if they expect to effectively share files.

  • Some paragraph tags are not printing when document is printed from Framemaker 10.

    So this is really odd. I have a situation where I have a document that I am developing in Framemaker 10 several different paragraph tags are intermittently not printing when the document is physically printed. When I go to print the document from Framemaker 10 to a physical piece of paper some tags are printing partially or not at all. What makes this stranger to me is that when I print the document to a PDF, all of the content and tags show up in the PDF. Then when I try to physically print from the PDF, the tags do no print from that document as well.
    Typically the tags that are not printing are those that have been bolded, but are across several different tags. Also the problem is sometimes only to the first line of a tag, where if the tag carries over to a second line in the document, the text on the second line prints. Another quirky instance that shows up is where the text a line will print only parts of the text. The document uses the same type font for the entire document, Helvetica 55 Roman. The font size varies and the coloring varies as well, but this issue is happening for all sizes and colors.
    I'm not sure what additional information is important here, but if you need additional information please request it and I will supply it to the best of my ability. I'm a content developer with an intermediate amount of experience with Framemaker.

    I'm not sure if this is the same problem, and you didn't mention your
    OS, but there was a widespread problem with dropped text in PDF with
    Windows XP. A hotfix was issued to fix it. If on Windows XP, you should
    install it:
    http://blogs.adobe.com/techcomm/2008/07/hotfix_for_framemaker_1.html
    Also, you mentioned that it was "bolded" text that tended to have the
    problem. Bolded text is artificially bold and does not use actual bold
    fonts. (If I recall, text is double printed at a slight offset to give
    the appearance of a bold font.) So there is no bold font to embed. Be
    sure you install and use an actual bold font, rather than using the
    bolded characteristic, or you could see problems.
    This is a stretch, but you also mentioned that some of the problem
    sections have colored text. Check the printer properties of your Adobe
    PDF virtual printer to make sure someone didn't reassign the driver (on
    the Advanced tab). It should be set to use the Adobe PDF Converter
    driver (or Acrobat Distiller in older Acrobat versions). Years ago,
    people sometimes changed this setting to use other drivers for various
    reasons, not realizing that they limited themselves to the capabilities
    of that driver. So, if they chose an HP LaserJet PostScript driver, for
    example, their documents might no longer be able to be 11"x17" or
    color-- because the printer couldn't handle it. The driver was limited
    to 8.5"x14" and black-and-white. Perhaps there is a driver set that is
    choking on the colored text-- though I would think it would merely
    convert it to B&W.
    Okay, I've grasped at enough straws.

  • Invoice outputs are not printing after saving the document..!

    Invoice outputs are not printing after saving the document. Eventhough we maintain all condition records not only that Processing log also it showed that it has been processed on some date. but customer not received the printout
    Amar

    hI,
    GO TO IMG, SD, BF, OUTPUT CONTROL, OUTPUT TYPES, SELECT UR OUTPUT TYPE, GO TO DETAILS ICON AND ASSIGN THE VALUE "ISSUE OUTPUT IMMEDIATELY SAVING THE APPLICATION" FROM DROP DOWN DOWN LIST IN THE DEFAULT VALUES
    AND ASSIGN THE RELEVENT PRINTER TO USER ID IN SU01 AND IN CONDITION RECORDS
    REGARDS,
    SK
    Edited by: Sadanandam Kasarla on Mar 16, 2009 12:07 PM
    Edited by: Sadanandam Kasarla on Mar 16, 2009 12:08 PM
    Edited by: Sadanandam Kasarla on Mar 16, 2009 12:10 PM

  • I am unable to attach scanned documents or Pictures to eamils. The size of the scanned documents and the pictures are well below the 20MB limit. I can connect Exl and Word documents with not problem

    When trying to attach a scanned document or picture to and email, the process goes not forever and there is no end, it just keeps working and tries to attache these documents/pictures. In the lower left hand corner of the screen it says "waiting for mail. yahoo. com"

    Purplehiddledog wrote:
    I do backup with iCloud.  I can't wait until the new iMac is available so that I can once again have my files in more than 1 location without needing to rely solely on the cloud. 
    I also rely on iTunes and my MacBook and Time Machine as well as backing up to iCloud. I know many users know have gone totally PC free, but I chose to use iCloud merely as my third backup.
    I assume that the restore would result in my ability to open Pages and Numbers and fix the problem with deleting apps, but this would also mean that if my Numbers documents still exist solely within the app and are just not on iCloud for some reason that they would be gone forever.  Is that right?
    In a word, yes. In a little more detail.... When you restore from an iCloud backup, you must erase the device and start all over again. There is no other way to access the backup in iCloud without erasing the device. Consequently, you are starting all over again. Therefore, it would also be my assumption that Pages and Numbers will work again and that the deleting apps issues would be fixed as well.
    If the documents are not in the backup, and you do not have a backup elsewhere, the documents could be gone forever.

  • Hp laserjej Pro 400 some fonts are not printing (office use )

    Hi there In my office , we are using  HP Laserjet Pro M401n  printer . About 5-10 users are using it , Printer is networked and not connected to a PC. Issue is several font types are not printing , only the  boarder is printing .Changed to a new catridge .Still the issue is same

    >> ..  Issue is several font types are not printing , only the  boarder is printing ... You'll have to provide rather more information in order to expect any appropriate advice. For example:Is the problem restricted to documents from one application (e.g. Word) or several applications, or all applications?Just what do you mean by "font types"?Do you mean different fonts (strictly typefaces) e.g. Courier, Arial, Times New?Or do you mean different variants e.g. Regular, Bold, Italic, BoldItalic?Or something else?Can you provide a scan of an example? Use the "insert/edit image" button to add an image to a post (this may take up to 48 hours to be "approved" before it is visible to others).

  • Invoice number and document number not printed in payment advice

    Hello Gurus,
           I am executing reprint check through transaction fch7, In that Invoice number and document number not printed in payment advice. I have created zscript for that and also assinged regup-belnr and regup-xblnr and used standard program RFFOUS_C.
    other fields from regup table are displayed but above two mentioned fields are not displayed.
          I even tried debugging standard RFFOUS_C prog, in that regup-belnr and regup-xblnr are coming but it is not printed on form.
    With regards,
    Vikram

    Hi,
    Debug you Zscript and check the invoice no and document no. Have assigned that script in FBZP..? check the which form is calling FCH7 in debugger mode..?
    Rgds
    Aeda.

  • Cyan and yellow are not printing on HP officejet pro 8500 all-in-one printer A909

    I have an Officejet Pro All-in-One 8500 A909a printer, using OS X operating system.  Cyan and yellow are not printing. I've ran the Print Quality Diagnostics Page and they do not show up there or on the align page. My ink levels are good. 
    Can you help me find and fix the problem?
    Thanks

    Hi DavidM2,
    Welcome to the HP Forums.
    I see that you are having issues with the Cyan and the Yellow ink cartridges as well.
    First off, please make sure that you have the printer power cable connected directly to a wall outlet and not a power bar/strip. Here is a document that uses a LaserJet printer as an example but it is meant for HP products in general. Please click on the following link that explains the Issues when Connected to an Uninterruptible Power Supply/Power Strip/Surge Protector.
    If you are still having issues then try to replace the cartridges.
    Let me know how you make out and if you have any other questions, feel free to ask.
    Cheers,  
    Click the “Kudos Thumbs Up" at the bottom of this post to say “Thanks” for helping!
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    W a t e r b o y 71
    I work on behalf of HP

  • Just updated to Lion.  Didn't realize things like reading a Word document would not be supported.  How do I get these files back and how I do read them going forward?  When a PC user sends me a word document won't I be able to open it and read it?

    Just updated to Lion today, 11/22/11.  I did not realize things likes reading a Word document would not be supported.  "You cannot open this because PowerPC applications are no longer supported."  How am I supposed to read and open Word documents from PC users?  Any insight is helpful, thanks!

    You have Word 2004 which is PPC based. Lion is not able to execute PPC code. You have to upgrade. Or you can do as I do an open them in Pages, since I refuse to allow anything from Microsloth on my Mac.
    Allan

  • Help!  PDFs are not printing because adobe reporting that postscript conversion needed?

    Help!  PDFs are not printing because adobe reporting that postscript conversion needed?  Can someone help me?  Please?

    Please give us the complete error message, every word. This is not a familiar symptom.
    Also: What software and version are you printing from? What system do you have?

  • Colors are not printing accurately. Please help!

    Colors are not printing accurately.  I have cleaned print heads.  Cartridges are full
    Officejet 8500

    Hi,
    Please go thru this HP document for print quality issues....
    http://h10025.www1.hp.com/ewfrf/wc/document?docname=c02208875&tmp_task=solveCategory&cc=us&dlc=en&la...
    Although I am an HP employee, I am speaking for myself and not for HP.
    *Say thanks by clicking the "Kudos! Star" which is on the left*
    Make it easier for other people to find solutions, by marking my answer with "Accept as Solution" if it solves your issue.

  • Some comments on PDFs are not printed

    Hello,
    I've noticed that when making comments in Acrobat XI Pro, some of the comments are not printed as they are shown on the screen. For example, on one document I have a text box with two lines of text in it, but only the border of the text box and the second line of text prints. The first line is blank. I tried different printers and different documents, but it still happens. It's not always a text box, but usually text is omitted. I made sure "Documents and Comments" are selected to print.
    The only way to get these to print is to turn on "Print as image". I DO NOT want this to be a fix though. I'd like to be able to use the printer color options as it worked in the past with Acrobat 9.
    Can someone please help me? Thanks for your time.

    Hi
    You have a couple of options as I see it please try these steps given below might help you to fix your issue.
    1) Go to Device Manager and uninstall the click on + symbol next to Keyboard then uninstall the standard keyboard then restart your unit and check.
    2) Go to HP website and update the Bios on the unit. 
    3) Click start type Command Prompt check if all the numbers & alphabets works fine in this screen if not you might have to replace the keyboard.
    If your notebook is still under warranty, contact HP and arrange to have the part replaced.
    If you are out of warranty and would like a guide on replacing the part yourself, please let me know.
    Let us know how it goes!
    *Although I am an HP employee, I am speaking for myself and not for HP.
    ****Click the White Kudos star to say thanks****
    ****Please mark Accept As Solution if it solves your problem****
    Regards
    Manjunath
    Let us know how it goes!
    "I work for HP."
    ****Click the (purple thumbs up icon in the lower right corner of a post) to say thanks****
    ****Please mark Accept As Solution if it solves your problem****
    Regards
    Manjunath

Maybe you are looking for

  • Adding Libraries & External Library DC - Not able to import JAR Files

    Hi, I am trying to import the jar files to development environment. The JAR file was added by following the steps mentioned in below blog : /people/bala.krishnan2/blog/2006/09/25/bid-adieu-to-bots--using-captchas Please find the error log below : 201

  • How to change Due date in Cash flow (yet to post) lines in a contract.

    Hello All, I have a requirement where i want to change the due date of cash flow line items of a contract. I am able to do that in RECN transaction, by clicking on the date field and change the date. Here i am looking for a BAPI or function module us

  • Preview pictures not displaying after BTV+ Update

    My BT Vision + box got its update last week and it seemed fine for a few days but it has now started to do something really annoying.  When I go to browse On Demand content the preview pictures remain blank, I can move to them and see what they are b

  • How do I setup a php testing server that connects to my web host?

    My web host (webhostingpad.com) has php on it. I need to setup a testing server that connects to this so I can test my site locally. My questions are: 1. Do I set this up as a local network connection or an sftp (same as my remote)? 2. what informati

  • Oracle report to Microsoft excel

    Hello friends, I want to send the data from oracle report to Microsoft Excel from the report builder it self or from the Form Builder.so plz elp me out from this situation Regards, Sourav...