To convert a crystal report into word(*.doc) format

Dear members,
I have designed and generated a report using crystal as tool,but
i want to convert this report into Microsoft word format(*.doc).
Can anybody please help me in this regard?
Thanks and regards,
Venkatesh.R

Hi
Simple way is to you use Cristal Reports Designer: you can use CR Report convertion function.
File/Export/Export Report... choose Word Document (rtf) modificable what can be opened with Word and saved how Word Document (.doc).
Other way:
Imports CrystalDecisions.CrystalReports.Engine
Imports CrystalDecisions.Shared
Dim CrxReport As New CrystalDecisions.CrystalReports.Engine.ReportDocument
CrxReport.ExportToDisk(CrystalDecisions.[Shared].ExportFormatType.RichText, _
                                    "c:\open_me_with_word.rtf")
HTH
Regards
Sierdna S.
Edited by: Sierdna S on Sep 24, 2008 12:49 PM

Similar Messages

  • How do I convert a pdf file into word doc.

    I have been trying on my own to figure out the above question, to no avail.  If anyone can help me, I would truly appreciatel it.  Thank you.

    Converting a PDF to Word requires Acrobat, or the ExportPDF service.

  • Ive just subscribed online but realised I have the wrong service by mistake... I require Convert PDF into Word doc service but selected Adobe send in error, sorry. Can you please switch the service for me? Thanks Anthony Levy

    Ive just subscribed online but realised I have the wrong service by mistake... I require Convert PDF into Word doc service but selected Adobe send in error, sorry. Can you please switch the service for me? Thanks Anthony Levy

    Hi Tony,
    Please refer this KB document : Return, cancel, or exchange an Adobe order
    Please let me know if you need any further assistance.
    Regards,
    Rahul

  • How to convert pdf file into word doc

    i have a pdf file that a need to convert into word doc. how can i?

    Hi assiri,
    You can either use Adobe Acrobat for the purpose or purchase the Adobe PDF Pack.
    Using PDF Pack : Please check the KB : http://helpx.adobe.com/acrobat-com/kb/using-pdfpack.html
    using Adobe Acrobat : Please check : http://wwwimages.adobe.com/www.adobe.com/content/dam/Adobe/en/products/acrobat/pdfs/adobe- acrobat-xi-convert-pdf-to-microsoft-office-word-tutorial_ie.pdf

  • How to convert XML into word doc or pdf

    hi all ,
    i ve to create a xml with specified alignment,but while taking print out alignments changing according to IE's alignment.
    So, Plz some one tel me whether any solution is there in xml itself or it have to be convert into word doc or PDF.If so, tell me an idea for how to convert xml file into Word doc or PDF.

    thanx ,i saw about FOP in xml.apache.org site and i learned something abt tat . But i dont know how to download FOP package from apache..
    Actually they gave links to download
    like http://ftp.wayne.edu/apache/xml/fop
    inside tat link they mentioned as parent,Directory,binaries,sources and tar files.From this i dont know how to download?
    Plz can someone tell a solution..

  • How to Convert Oracle Apps Report into XML Publisher

    Hi
    How to Convert Oracle Apps Report into XML Publisher?
    Thanks

    In Brief :
    Re: XML Publisher
    In Details :
    http://www.oracle.com/technology/products/xml-publisher/docs/XMLEBSRep.pdf

  • Migration of Crystals Reports into OBIEE

    Hi,
    I have to migrate Crystal Reports into OBIEE without using any third party tool.
    How could it be done..any one can help me please...???

    Just follow the instructions bellow:-
    Reports generated automatically in the 7.5 Excel client that use the EVDRE function with a standard use of built-in parameters can be converted using the EPM add-in to a native 10.0 report.
    EVDRE migration has been developed in order to migrate as many features and use cases as possible, but reports that have been heavily customized may not be totally converted automatically and may require some manual modifications. Nevertheless, the objective of the migration is to provide usable reports at the end of the migration. The exact conditions include:
    o Multiple EVDRE reports in a complex arrangement or sharing some KeyRanges
    o Formulas to calculate parameters
    o Use of cell reference indirections to determine EVDRE parameters.
    o Use of VBA to call the internal object model of the 7.5 Excel client.
    o EVDRE inserted in another EVDRE.

  • Data in report to word doc

    Hi all,
    I get only one field data(ie frm MANDT) from report to Word doc.
    How can i get the record of a table.
    REPORT  ZMGC_INT.
    INCLUDE OLE2INCL.
    DATA P_FWOR LIKE RLGRAP-FILENAME.
    DATA I_BUFFER TYPE .
    PERFORM LANZA_WORD.
    FORM LANZA_WORD.
    DATA: WORDAPP TYPE OLE2_OBJECT,
    DOCUMENT TYPE OLE2_OBJECT,
    SELECTION TYPE OLE2_OBJECT.
    Copia el contenido del buffer en el portapeles
                   CALL FUNCTION 'ZCLPB_EXPORT'
                     TABLES
                       DATA_TAB         = I_BUFFER
                     EXCEPTIONS
                       CLPB_ERROR       = 1
                       OTHERS           = 2.
                   IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
                   ENDIF.
    Abre Word
    CREATE OBJECT WORDAPP 'word.application'.
    IF SY-SUBRC NE 0.
    MESSAGE E398(00) WITH 'No se ha podido abrir el Word'.
    ENDIF.
    Lo pone en visible
    SET PROPERTY OF WORDAPP 'Visible' = 1.
    Cogemes el objeto documento
    CALL METHOD OF WORDAPP 'Documents' = DOCUMENT.
    Abrimos el fichero plantilla
    IF P_FWOR IS INITIAL.
    CALL METHOD OF DOCUMENT 'Add'.
    ELSE.
    CALL METHOD OF DOCUMENT 'Open' EXPORTING #1 = P_FWOR.
    IF SY-SUBRC NE 0.
    MESSAGE E398(00) WITH 'Error al leer el fichero plantilla'.
    ENDIF.
    ENDIF.
    Coge el objeto selección
    CALL METHOD OF WORDAPP 'Selection' = SELECTION.
    Pega el contenido del portapapeles
    CALL METHOD OF SELECTION 'Paste'.
    IF SY-SUBRC NE 0.
    WRITE 'PASTE'.
    ENDIF.
    Graba el fichero
    CALL METHOD OF WORDAPP 'ActiveDocument' = DOCUMENT.
    *CALL METHOD OF DOCUMENT 'SaveAs' EXPORTING #1 = P_FWOR.
    *IF SY-SUBRC NE 0.
    *MESSAGE E398(00) WITH 'Error al grabar el nuevo documento'.
    *ENDIF.
    Cierra Word
    CALL METHOD OF WORDAPP 'Quit'.
    IF SY-SUBRC NE 0.
    MESSAGE E398(00) WITH 'Error al cerrar Word'.
    ENDIF.
    ENDFORM. " LANZA_WORD

    Ranjith,
      Go to tcode SE83 -
    >CONTROLS---->BASICS----->Desktop Office Integration.
    Right side  examples .You will find the required code.
    Pls. Mark if useful

  • I've become increasingly frustrated with the ipad adobe app. I've subscribed to be able to convert my pdf files into word documents and it has yet to work I've paid for a service that does not work which in turn makes me a disgruntled customer to say the

    I've become increasingly frustrated with the ipad adobe app. I've subscribed to be able to convert my pdf files into word documents and it has yet to work I've paid for a service that does not work which in turn makes me a disgruntled customer to say the least very disappointed with such horrible service

    Which service did you subscribe to?  Adobe PDF Pack?
    Once I know the service that you subscribed to, I can move this post to the right forum so that you can get in touch with the folks who can assist you.

  • Trying to convert a pdf to a word doc using Acrobat XI Pro. I am getting formatting errors and scrambled text, especially right below headings. Not all headings affected, just some, but all the same paragraph tag. Any ideas?

    I am trying to convert a pdf  to a word doc. The pdf was created in Framemaker. I am using Acrobat XI Pro and getting formatting errors and scrambled (or missing) text, especially below a heading. Any fixes?

    Hi pakbecker,
    Please try updating to Acrobat 11.0.7 and check.
    In case you still face issues,  i would like to have a look at th doucment.
    Send me an email at [email protected]
    Regards,
    Rave

  • How do I convert a PDF to a word doc?

    How do I convert a PDF to a word doc?
    Regards
    Jon

    Hi patsy
    If you purchased ExportPDF (for converting PDF files to Word or Excel), check out Getting Started with ExportPDF for easy-to-follow instructions.

  • I have Adobe PDF Pack. How do I convert a pdf file into word or Docx?

    I have Adobe PDF Pack. How do I convert a pdf file into word or Docx?

    Use Tools in Adobe Reader, or sign in directly at https://cloud.acrobat.com/convertpdf
    [topic moved to PDF Pack forum]

  • How do I convert a pdf file to word.doc?

    How do I convert a pdf file to word.doc?

    Hi patsy
    If you purchased ExportPDF (for converting PDF files to Word or Excel), check out Getting Started with ExportPDF for easy-to-follow instructions.

  • How do you convert a jpeg file into word document so i can edit it?

    How do you convert a jpeg file into word document so i can edit it?

    http://office.microsoft.com/en-us/mac-word-help/training-edit-pictures-in-office -for-mac-2011-RZ103709558.aspx

  • When I convert a PDF to a Word doc, it "converts" as a picture and I cannot edit the document. What can I do to get the PDF to convert properly?

    When I convert a PDF to a Word doc, it "converts" as a picture and I cannot edit the document. What can I do to get the PDF to convert properly?

    Hi conversionnewbie,
    Are you able to select the text in Word by triple-clicking inside the text box? (Sometimes text selections can be tricky in converted files.) If you can't select the text, then I'm guessing that the PDF was created from a scanned file (so the text becomes images). Make sure that OCR is enabled when you convert the file to Word. OCR is enabled by default in the ExportPDF web interface, but can be disabled in Adobe Reader. If you're converting to Word from within Adobe Reader, make sure that OCR is enabled and that the correct language is selected:
    Please let us know that works for you!
    Best,
    Sara

Maybe you are looking for

  • External headphones not working (unless plugged in at boot up)

    Hello, I have a MBP 1st gen unibody running 10.5.7. However in last few days my headphones are not working when i plug them in. When i got into system pref-sound it still shows as internal speakers... this is where it goes weird tho: If i boot the ma

  • Cant get downloads to show the save & run boxes.. Adobe flash player

    Cant get downloads to show the save & run boxes in Adobe Flash Player

  • Can't Hear Microphone

    Iv'e got this little microphone I plugged into my computer, and in the sound section of my system preferences, it says that it is plugged in but I can't hear anything. Is there something else I need to do to make this work?

  • Transfering music to other computers

    I was wondering how i could transfer my music to different computers with my ipod without having to delete all of my songs on the ipod in order to transfer them?

  • Xsl:copy-of output without linebreak

    Hi, I have trouble with the copy-of element. If I try to output a node fragment then the output is done with linebreaks. How can I do this without breaks? XML: <MESSAGE><USERCONTENT><b101>Hello World</b101><l100>Line1</l100></USERCONTENT></MESSAGE> X