Including a Word document within a SAPscript?

We currently have a SAPscript that pulls a text document from document
management and prints it in the middle of  a SAPscript.
Does anyone know if there is a way I could do the same thing with a Word document instead?  If so, please let me know if there is a way to do it.
Thanks.
Mike

Hi
This link will help you in your requirement
Printing documents - document management
Regards
Raj

Similar Messages

  • Create PDF from a Word document within Acrobat

    Hi!
    I am having trouble to create a PDF from a Word document within Acrobat itself, and not by using PDF Maker in Word. When I try to create a PDF using Acrobat, it gives me the choice to choose any Office format file, but Word format doesn't appear. I can convert from an Excel document or a PowerPoint document, but not from a Word document, even if Word 2010 is installed and works perferctly. Why?
    I know I can make a PDF in Word itself by printing to the Adobe PDF printer or by using PDF Maker, but I want to resolve the issue in Acrobat that prevents me to select a Word document in the Create PDF dialog window. You can see the dialog box in the screenshot attached.
    Any help would be appreciated.
    I am using Acrobat X version 10.1.8 on Windows 7 Home Premium and I have Office 2010 installed (with Word 2010).

    Thanks for your reply. PDF Maker works in all of my Office applications. However, in Acrobat, the file formats available for me to create PDF from figure all the Office file formats except the one for Word. This is not normal. At my school, Acrobat X and Office 2007 are installed, and I can use there both PDF Maker in Word and creating PDF from Word document within Acrobat.
    So I think maybe there's a key in my Windows registry that is not set correctly? or something like that. I repaired the installation of Office 2010, and I did so for Acrobat X too, but it doesn't help. Any idea of how I can resolve that?

  • Automatic creation of MS Word Documents within a Report

    Dear Experts,
    within my report which creates automatically activities in a background process I have to create MS Word Documents and
    attach this Word Documents to the Activity.
    The Word Document does have a Logo and the text is changing with every Activity created.
    What would be the best technical solution for the creation of this word documents for my report?
    Best Regards
    Oliver

    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 = 'de la cobertura de Accidentes de Trabajo, de los siguientes código de cuenta de cotización (CCC):'*
        *#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 = 'de la cobertura de Accidentes de Trabajo y Contingencias Comunes, de los siguientes código de cuenta de cotización (CCC):'*
        *#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.

  • Acrobat won't convert Word documents within the Acrobat program

    I am running OS 10.5.2 on my MacBook Pro. I also have Microsoft Office 2004. I just installed Acrobat 8.0 Pro, patched it all up from the downloads on the website and was ready to convert some Word documents that I have to give to my boss. Went through Acrobat and it gives me the following error message:
    "Acrobat could not open 'Dissertation-1.1.doc' because it is either not a supported file type or because the file has been damaged (for example, it was sent as an email attachment and wasn't correctly decoded).
    To create an Adobe PDF document, go to the source application. Then print the document to Adobe PDF or use the Acrobat toolbar found in Microsoft Office applications."
    The file was not an attachment and I don't think it is damaged (or at least I hope not). I can make the PDF document in Word or any of the other Office apps with the tool bar or the PDF printer with Distiller but eventually I'm going to have to combine everything and just thought it would be easier to work through Adobe.
    Has anyone else had this problem or has come about at a solution for converting within Adobe? I might just be missing something obvious but I would appreciate any help that anyone can give. Thanks!

    It was telling you actually what you needed to do.
    Go into word2004 open the document and to Page setup and choose Adobe Printer. Then go to Print menu and choose print File. Then name the file and select desired location.
    What actually happens is acrobat will create a hidden .ps File and check it. (up to 3 times if needed) before writing the hidden.ps file. The Distiller is open in Background hidden and converts the .ps file to a PDF file the file is checked and retried up to three times if something isn't right. Then The Pdf file is written to disk finally the hidden .ps file is deleted and the pdf file appears.
    If your still using 2004 a little icon may show up in word called pdfmaker. This is a little VBA script that does the equivent of above. however its ver slow and if you have a long document your hair may turn gray before it finishes.
    In Office2008 for Mac VBA is dead and laid out in its coffin with its arrival. so PDFMaker is a useless piece of code. Thankfully going into menu view options unchecking PDFMaker actually does banish it from the screen and does don't try to get reinserted if you banish it.
    By the way because of the new XML Based Code in Office2008 they have a word to PDF Translator built in just go to Save As... and scroll down until you see PDF.

  • How to Convert a Word Document within BDN to PDF file

    Hi All,
    Currently, we have word documents stored within the business document navigator (Transaction OAOR) for our Materials.  We want to be able to share these documents with our customers through a Web Interface such as Web Dynpro; however, we need to convert them to a PDF file first.  Currently, we are obtaining the document contents in order to convert the word document to Binary.  A Sample of this code is listed below.  From this point, we are hoping to convert to PDF; however we are uncertain of how to do this.  Is there a standard function module or class that will perform this conversion of a Word document.  Any help will be greatly appreciated.  Thanks.
    *Get Information For BDS Form
      gs_doc_signature-prop_name = 'DESCRIPTION'.
      gs_doc_signature-prop_value = 'Description of Document'.
    *Create BDS Instance
    DATA gr_bds_instance TYPE REF TO cl_bds_document_set.
      IF gr_bds_instance IS INITIAL.
        CREATE OBJECT gr_bds_instance.
      ENDIF.
    *get the Document Contents
      CALL METHOD gr_bds_instance->get_info
        EXPORTING
          classname           = gc_docclass  "BOR Object BUS1001
          classtype           = gc_classtype  "BO for Business Object
          object_key          = gv_objkey      "Material Number i.e. 000000000010034717
        IMPORTING
          extended_components = gt_extended
        CHANGING
          components          = gt_doc_components
          signature           = gt_doc_signature
        EXCEPTIONS
          nothing_found       = 1
          error_kpro          = 2
          internal_error      = 3
          parameter_error     = 4
          not_authorized      = 5
          not_allowed         = 6.
    *Build the Object ID in order to Convert the Word Document to Binary
      READ TABLE gt_extended INTO gs_extended INDEX 1.
      gv_object_id-class = gs_extended-class.
      gv_object_id-objid = gs_extended-objid.
    *Convert the Word Document to Binary Format
      CALL FUNCTION 'SDOK_PHIO_LOAD_CONTENT'
        EXPORTING
          object_id                 = gv_object_id  "
      CLIENT                    = SY-MANDT
          raw_mode                  = 'X'
        TABLES
      FILE_ACCESS_INFO          =
          file_content_binary       = gt_binary
    *Convert to PDF!?!?!?!?
    John

    Hi
    Refer this thread [Convert MS Word .doc to PDF;
    Regards
    Raj

  • Is there a way to include a text document within the DVD?

    I am using Encore CS5. I do a DVD series. For the latest installment, I have been asked to include a 17 page document which the user could print from their computer or view from their TV, and which the main menu of the DVD would link to.
    Is this possible? I know I can include a text document on the disk,as part of DVD Rom materials, but I don't know if I can link to that via my DVD menu. Also, I don't think that would be viewable on a TV.
    On the other hand, I could include stills of the document (as a slideshow perhaps?) on the DVD and link to that ection via my main menu, but then it wouldn't really be printable from computer, like a text document would be, right?
    Anyone have any advice or anyone faced a similar challenge with including text materials as a menu option within a video DVD? (also to note, these are SD DVDs we are making, not blu ray)

    The printable option is the ROM. Include a menu in the DVD that explains this.
    You are correct, this can't be viewed on the computer. And yes, you can use a slideshow. Except that the text will be too tiny. The text will have to be formatted so that it is presented in reasonable chunks.
    Do a short sample, burn, and test it on both a upscaling HD as well as a traditional set.

  • What does 'My Passport for Mac' back-up?  Does it include my Word documents for example?

    If I lost everything, would My Passport be able to reinstate my MacBook Pro in it's entirety? 
    It does not look like it contains much; therefore I am worried.
    I have lots of data on my mbp, namely, Family Tree Maker software (from Ancestry.co.uk).  It contains all my tree data, and lots and lots of Microsoft Word word-processed documents, eg, vast type-ups of Wills etc.  They take ages to translate and I would hate to lose them.  I also have lots of saved info downloaded from the net, e.g., photos and census stuff.  Whilst I can see the FTM.app, I cannot open to see whats inside.  I have 2 Trees on my software, but I can't see if they are in there for me to re-open from My Passport.
    If my whole mbp is in My Passport, I can't see it.
    If all the above are backed-up, if I change as much as a DoB on a Word document, will that document then be backed-up with the changes?
    Quite basic questions for you Apple folk, but the answers would help me and others a great deal.
    Thank you.  Helen
    My machine is: mbp, mid-2010; Mavericks. Version OS X 10.9.5.

    Depends on the backup software you use, what backup strategy you implement, and what you need to backup. Where you will start at this point also depends on what you may have already backed up to the Passport and if you are using the pre-installed Passport software.
    If you want every change you make to a document instantly backed up to the Passport, then you need the right software to do that (if it exists.) If you wish to use Time Machine that is part of OS X, then it backs up every hour but does not instantly backup a changed file. You would have to repartition and reformat the Passport in order to use Time Machine. Also, for Time Machine to work properly your Passport must be at least twice the capacity of your computer's drive. If is isn't, then you will have to decide upon a different type of software and backup strategy.
    Visit The XLab FAQs and read the FAQ on Backup and Restore. For other backup software:
    Suggested Backup Software
      1. Carbon Copy Cloner
      2. Get Backup
      3. Deja Vu
      4. SuperDuper!
      5. Synk Pro
      6. Tri-Backup
    Others may be found at MacUpdate.
    Visit The XLab FAQs and read the FAQ on backup and restore.  Also read How to Back Up and Restore Your Files.

  • Including a Word Document in RH

    I have a Quick Reference Cards section in RH, where a link to
    the PDF file is provided (and the PDF file is included within the
    larger RH file). Today, I was asked if I could do something similar
    for another section only the file would be a MS Word file. Is this
    even possible?

    V Jordan,
    If what you're asking is whether you can link to a Word doc
    from HTML, the answer is yes, just as you would link to other
    files. I seem to remember from linking from HTML to Word docs in
    the past that an Open or Save message comes up when you click the
    link. As long as the Word file is among your RH output files and
    your link is accurate, it should work (unless you're generating to
    a CHM, in which case I don't know if that would work the same).
    --Ben

  • 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.

  • My Deskjet D1660 won't print part of my Word document

    Please help me!
    Yesterday I struggled for three hours to print black until I found out the cartridge ink was clogged, I cleaned it and that solved it.  I've got a HP Deskjet D1660 and my laptop is Windows 7.
    But today I was printing part of a Word document (page 24 onwards) and it just printed a couple of pages. It won't print page 26 onwards! printer says there is nothing in the queue and that the printer is ready. I've tried everything I could think of...... please help me; I think the problem is not the printer as it would printer anything else, including other Word documents. It must be something else, I just don't know what! :'(

    Hello Moyo1,
    Welcome to the HP Support Forums!
    First off, I am glad to hear you have been able to clear the clogged ink jet that was preventing the Photosmart D1660 from printing black. Regarding the current issue, not printing past a set page number, let's try and fix this for you.
    Since you have a Windows Operating System, run the HP Print and Scan Doctor. This will look into driver, software and communication problems that could be causing this.
    Let me know the results, what passes, fails, etc and I will be looking forward to hearing back from you.
    Cheers,
    JERENDS
    I work on behalf of HP
    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" to the left of the reply button to say “Thanks” for helping!

  • How do i change a pdf in preview to a word document in pages?

    Does anyone know how i return to work on a word document within pages as i'm currently viewing it as a pdf in preview.

    Preview does not have that capability. Go to MacUpdate or CNET Downloads and search for software that can do such a conversion.

  • Embedding Word Document into Microsoft Web Browser

    Dear sirs,
    My purpose is to embed a word document within a windows form.
    For this purpose, I have used the following references:
    http://support.microsoft.com/kb/304643
    http://support.microsoft.com/kb/982995#FixItForMeAlways
    The word file opened successfully within the browser, and everything worked correctly.
    One problem remains, whenever I open another word document , or just lunch a new instance of MS-Word,
    the ribbon within the browser becomes disabled.
    Your help is much appreciated.

    Dear sirs,
    My purpose is to embed a word document within a windows form.
    For this purpose, I have used the following references:
    http://support.microsoft.com/kb/304643
    http://support.microsoft.com/kb/982995#FixItForMeAlways
    The word file opened successfully within the browser, and everything worked correctly.
    One problem remains, whenever I open another word document , or just lunch a new instance of MS-Word,
    the ribbon within the browser becomes disabled.
    Your help is much appreciated.
    If you embed word with IE and open another word document, the same result?
    That should be the common behavior of IE(somehow equals webbrowser)
    remember make the reply as answer and vote the reply as helpful if it helps.

  • How can I best edit word documents that have been emailed to my iPad?

    I  regularly receive word documents from work, via my yahoo email account.  I have two questions really. 
    1) Can I edit word documents received via email?
    2) If this is possible, what is the best way to do this?
    Thanks in advance

    Sorry, yes. When I asked "how do I transfer it to Pages for editing?" I perhaps should have made it clear that I have purchased it. I can also create documents in it and send them as a Word document to others via email.
    Could you clarify "When you get the email, click on the Word Document to view it." The email appears in the Inbox list but does not show an attachment in the same way it does on my Mac. If I tap the email, it opens and reveals the contents including the Word document contents. At what point am I looking for an arrow - in the email list or in the opened and readable Word document?

  • Converting tiff images to word documents

    does mac offer any programs like microsoft office document imaging which enables you to scan docs as tifs and convert them to word?

    Microsoft would have to offer a TIFF importer within Microsoft Word for its documents.  If your issue is loading Word documents within TextEdit, yes, that editor does not support images.  You are better off if you don't want to use Microsoft Word itself, to use NeoOffice or iWork's Pages if you want to incorporate images in Word documents.
    P.S. Mac is the name of the operating system, and the computers that run the operating system by Apple Inc. So questioning "Does Mac..." doesn't make any more sense than asking "Does Experion..."

  • How do a create a workflow to highlight word documents?

    I have 100's of pages of word documents within a single folder all with part of them underlined as demonstrated. I need a way to avoid manually highlighting just the underlined sections and figured the automator is the best option to accomplish this. I dont know how to accomplish this though. Any instructions or suggestions would be greatly appreciated. Thanks

    I don't use Automator, but the following Applescript will do it:
    set excludedones to {"loginwindow", "Dock", "SystemUIServer", "MirrorAgent", "UniversalAccess", "iCalAlarmScheduler", "System Events"}
    tell application "Finder"
    set quitlist to the name of every application process whose file type is "APPL"
    end tell
    repeat with i from 1 to count of quitlist
    set aProcess to item i of quitlist
    if aProcess is not in excludedones then
    try
    tell application aProcess to quit
    end try
    end if
    end repeat
    tell application "Finder"
    shut down
    end tell
    Actually the last three lines by themselves would probably do it. Of course if any of the applications have open unsaved documents then you will get the usual dialog about do you want to save them.

Maybe you are looking for

  • Sine wave on startup

    I searched for this all over and can only find references to start up sounds like 5 beeps or breaking glass. A couple of times I have started up my PowerBook G4 to have it make a single mid-ranged sine wave sound for a second or so. Then it waits for

  • Drill down in 11g

    Hi Experts, We have created the Logical Dimension with Level-Based hierarchy for a table in OBIEE 11g. like Year -> Month -> Week -> Date -> Media -> Station -> Market -> Day -> Time When drill down from Year its work fine upto Mrket level, when clic

  • Elgato Game Capture HD Footage takes Hours to Import

    First off, I use a late 2009 21.5 inch iMac with an Intel 3.06 Ghz core 2 Duo, 12 Gigs Ram, and an Nvidia Geforce, 9400 265 mb with Mountain Lion . And all drivers up to date. I've been having this issue for a while and with the increased work load I

  • Bootcamp Question! From a Converted PC guy

    When I go to bootcamp to put windows xp on it, it tells me I MUST print out the directions because i'll need them. I dont have a printer currently. Do I REALLY need to print it out? Or can I just go ahead and click continue? From what I have heard, i

  • CS5 telling me to update, but updates won't install (no error code given)

    I have been trying to install the updates my CS5 has been telling me to do but every time I run the update program, it goes through the process and then says there was an error in updating all my programs. I have restarted my computer, I have shut ev