Exporting to doc/docx format.

Firstly, I've submitted the following to Apple as Pages feedback, however they will not feedback to me an explanation for the observations below, so I'm submitting this because someone else may have an explanation and confirmation.
Under Mavericks and Pages 5.0.1, Apple have made it harder to convert to doc/docx, since now you have to export to other formats, but when I do export a pages document to doc/docx format then the file size of the doc/docx documents are far smaller than in the pages format. For example, I have a pages document that is 332kb, and when I export it to doc/docx, those documents have sizes 19/12 kb. You might say that the pages document has macros, formatting information, etc, that the doc/docx forms don't, but the content looks the same, and when I re-save the doc/docx documents in pages format, they're both saved as 332kb documents.
Also, when displaying in doc/docx form, the filename displayed at the very top of the document in the title space has a .pages suffix instead of a .doc/.docx suffix - ok, they're pages documents compatible with Word formatting, but their name in Finder has the .doc/.docx suffix so it should be kept when displayed in the title space of the displayed document. The latter may be a bug, but the following is certainly a bug. The doc/docx documents I've been referring to have had the year 2013 as part of their filename - when these filenames are displayed in the title, the year is being treated as a formatted number, hence the 2013 is being displayed as 2,013 - I emphasise that this does not happen when the pages form of the document is displayed.

Dear fruhulda and Peter,
     Thanks for replying.
      fruhulda - your reply about the size would imply either that Pages carries with it a lot more features (and thus code) than Word, or that the coding of Pages is, in some way, less efficient than Word - and I don't think either of those is true. The discrepancy in file size is inexplicable, and I've found an article from which this quote opines the same: "That's right: the only way to handle documents in Pages is by saving your working documents as .pages files – which are, inexplicably, often 10 or more times larger than their Word .DOC equivalent – and then exporting .DOC versions as and when you need them." (http://www.zdnet.com/why-i-may-never-install-office-for-mac-again-7000023520/).  In fact, how does Apple get Pages not only to read and write Word files but also PDF files? I can only imagine that Apple have bought use of the relevant routines from Microsoft and Adobe, but the latter both keep a tight rein on their proprietary products. For instance, Office for Mac has, presumably, been developed by Microsoft since I can't find it for sale in the Apple Store. Hence, you may be right that Pages only saves documents in its own format, and documents in other formats call upon routines external to Pages. Regarding the suffix or extension being part of the filename, there's no reason for not including it as part of the file name since, for instance, X.doc is only distinguishable from X.docx by the suffix; and, for instance, http://en.wikipedia.org/wiki/8.3_filename includes the suffix when referring to the filename.
     Peter - first, thanks for the key combination, abling you to do something useful that I didn't know; and following are the results of that tip. The first image is the display of name of the .docx file in the title space of the document:
When I then click on the triangle, or if I save the document, I get the following:

Similar Messages

  • I can't export any files from pages unless I create a duplicate file. I can't export to doc, docx or pdf! Heeeelp!

    I can't export any files from pages unless I create a duplicate file. I can't export to doc, docx or pdf! Heeeelp!

    what version of pages?
    what is the files type that you are trying to export?
    what do you mean unless I create a duplicate file? the whole point of export is that you get a new file with a new format

  • Pages 2.0 is exporting Word files in name.docx format causing duplicates files on my PC via iTunes.  Anyway to have it export name.doc files as Pages did earler?

    Pages 2.0 is exporting Word files in name.docx format causing duplicates files on my PC via iTunes.  Anyway to have it export name.doc files as Pages did earler?

    What I read in the PDF version of the manual (while I was waiting for my plane this afternoon), it seems pretty comprehensive. I was particularly interested in what it had to say about creating your own templates.
    Supposedly, it will remember if I left invisibles showing in templates (one of my big complaints with Pages 1). I'll find out soon enough. I must say that opening my two documents I use for answering posts here in discussions sure did open faster & navigating an 11-page table was much faster.
    Another good thing I noticed, the font used for the serial number is much clearer & there were no confusing characters - O/0, S/5, etc.
    Peggy

  • I can't export to .doc or .docx in pages...

    when i try to export to .doc or .docx un pages, the window "creating word document" get frize... any help?
    pages 5.0.1

    Hello there... and thanks VikingOSXand PeterBreis0807for you concern.
    I tried your advises, and nothing happen.
    The problem is that the pages doesn´t crush... after i choose the name and destination of the new doc, this window stop in this exact moment... and nothing else happen. I wait like 20 mins, and nothing change... the window is like "thinking".
    My pages is 5.0.1
    My OSx is  10.9
    And my iCloud sync is just fine.

  • Problem is occurring in docx format; it is not printing "New Line" character in extracted txt using IFilter (offfiltx.dll) while with doc file IFilter (OffFilt.dll) is working fine.

    Problem: Problem
    is occurring in docx format; it is not printing “New Line” character in extracted txt using IFilter (offfiltx.dll) while with doc file IFilter (OffFilt.dll) is working fine.
    Environment: -
    Operating
    System:
    Windows XP SP2/7
    Language:
    C#
    MS
    Office Version: - MS Office 2007/2010/2013
    Problem
    Description: -
    We
    havedocx
    file with new line character, and we are processing this file in IFilter for extracting text, and it is giving output with concatenation of lines.
    Docx
    file format (Sample.docx)
    Test this music
    Word processing
    Testing docx file
    Output:
    - Test this music Word processing Testing docx file
    Requirement:
    - We
    have requirement to get following text in particular format with New Line from docx because client is using docx format only.
    Test this music
    Word processing
    Testing docx file
    Attempt:
    We have tried a lot after changing IFilter configuration,
    but it is not giving required output. Then we saved same file in doc format (Sample.doc), which is giving required output.
    Because it is application specific problem, kindly
    assist to resolve issue on priority. We are sharing IFilter paths for extracting text for doc and docx.
    Doc Filter Location: - %systemroot%\system32\OffFilt.dll
    Docx Filter Location: - <Drive>:\PROGRA~1\COMMON~1\MICROS~1\Filters\offfiltx.dll
    Code Snippet for setting property of filter
    internal static IFilter LoadAndInitIFilter(string fileName, string extension)
                IFilter filter
    = LoadIFilter(extension);
                if (filter
    == null)
                    return null;
                IPersistFile persistFile
    = (filter as IPersistFile);
                if (persistFile
    != null)
    persistFile.Load(fileName, 0);
                    IFILTER_FLAGS flags;
                    IFILTER_INIT iflags
    =
                                IFILTER_INIT.CANON_HYPHENS
    |
                                IFILTER_INIT.CANON_PARAGRAPHS
    |
                                IFILTER_INIT.CANON_SPACES
    |
                                IFILTER_INIT.APPLY_INDEX_ATTRIBUTES
    |
                                IFILTER_INIT.HARD_LINE_BREAKS
    |
                                IFILTER_INIT.FILTER_OWNED_VALUE_OK;
                    if (filter.Init(iflags,
    0, IntPtr.Zero, out flags)
    ==IFilterReturnCode.S_OK)
                        return filter;
                Marshal.ReleaseComObject(filter);
                return null;
    Kindly
    assist to resolve this issue and also let us know if any input is required.
    For any help, we would be really
    thankful.

    Kindly
    assist to resolve this issue and also let us know if any input is required.
    For any help, we
    would be really thankful.

  • Issue while exporting report in Excel Format

    Hello,
    I am facing problem while exporting the report in Excel Format. After analysis, I think that it could be due to two reasons, either we are using wrong versions of Jars, or we are using wrong API. Here is the code, approaches and problems we are facing. Please help.
    First approach we are using is:
    // using basic API
    import com.crystaldecisions.reports.sdk.ReportClientDocument;
    // get client document from crystal report API and open the report by specifying the report name, with path
                   ReportClientDocument reportClientDoc = new ReportClientDocument();
                   reportClientDoc.open( reportPath, 0 );
                   // give chance to extending classes to configure the report document by POJO or by sql parameter etc, just adding the parameters infromation using ParameterFieldController
                   configureReportDocument( reportClientDoc, reportMetadata, reportData, reportContext );
                   // get data source of crystal report
                   Object reportSource = reportClientDoc.getReportSource();
                   // export the data - we have also tried with MSExcel format
                   ReportExportFormat exportFormat =  ReportExportFormat.recordToMSExcel;
                   LOGGER.debug( "exportFormat[" + exportFormat + "]" );
                   ByteArrayInputStream byteArray = (ByteArrayInputStream) reportClientDoc.getPrintOutputController().export(
                             exportFormat );
    Problem Faced: Specified Excel format is not supported.
    Second Approach: We come to know that excel format is supported with new releases and with occa package.
    Then we tried with import com.crystaldecisions.sdk.occa.report.application.ReportClientDocument; It ask to set the ReportServer. When we are trying to set the server as
                   reportClientDoc.setReportAppServer(ReportClientDocument.inprocConnectionString);
    Application is unable to find 'ReportClientDocument.inprocConnectionString' property. It seems like we are using some old jars. However we have downloaded the latest released jars for eclipse 2.
    Please help for it. Issue is to export the report in excel format, which is currently working fine for PDF. If this problem is related to Jars, please suggest the path to download the latest jars. We also looking for the latest jars like rasapp and rascore etc. But these are not available with Crystal Report for Eclipse 2 release.
    Waiting for urgent help. Thanks you..
    Regards,
    Mohit

    Hi,
    Send me Environment Details .
    Here is the code  snippet for exporting report to excel format:
    <%@ page import="com.crystaldecisions.sdk.occa.report.application.*" %>
    <%@ page import="com.crystaldecisions.sdk.occa.report.definition.*" %>
    <%@ page import="com.crystaldecisions.sdk.occa.report.data.*" %>
    <%@ page import="com.crystaldecisions.sdk.occa.report.lib.*" %>
    <%@ page import="com.crystaldecisions.sdk.framework.*" %>
    <%@ page import="com.crystaldecisions.sdk.occa.managedreports.*" %>
    <%@ page import="com.crystaldecisions.sdk.occa.infostore.*" %>
    <%@ page import="com.crystaldecisions.sdk.occa.report.exportoptions.*" %>
    <%@ page import="java.util.*" %>
    <%@ page import="java.io.*" %>
    <%
    String username ="Administrator";
    String password ="";
    String cmsname ="localhost:6400";
    String Authen ="secEnterprise";
         //connecting to Enterprise
         IEnterpriseSession es = CrystalEnterprise.getSessionMgr().logon(username,password,cmsname,Authen);
         //get the report App Factory form the Crystal Enterprise
         IReportAppFactory appFactory = (IReportAppFactory) es.getService("","RASReportService");
         //get the infostore service form the Crystal Enterprise
         IInfoStore istore = (IInfoStore) es.getService("","InfoStore");
         //get the report by name from crystal Enterprise
         IInfoObjects iobjects = istore.query("Select * From CI_INFOOBJECTS Where SI_NAME = 'sampleramz2.rpt' and SI_INSTANCE = 0 ");
         //open the report in the report doc object.
         ReportClientDocument Doc = appFactory.openDocument((IInfoObject)iobjects.get(0), 0, Locale.ENGLISH);
         // WORKING WITH THE PRINT OUTPUT CONTROLLER
         //Use the report documents PrintOutputController to export the report to a ByteArrayInputStream
         ByteArrayInputStream byteIS = (ByteArrayInputStream)Doc.getPrintOutputController().export(ReportExportFormat.recordToMSExcel);
         // EXPORTING THE REPORT
         //Create a byte[] (same size as the exported ByteArrayInputStream)
         byte[] buf = new byte[2000 * 1024];
         int nRead = 0;
         //Set response headers to indicate pdf MIME type and inline file
         response.reset();
         response.setHeader("Content-disposition", "inline;filename=ramz");
         response.setContentType("application/xls");
         //Send the Byte Array to the Client
         while ((nRead = byteIS.read(buf)) != -1)
              response.getOutputStream().write(buf, 0, nRead);
         //Flush the output stream
         response.getOutputStream().flush();
         //Close the output stream
         response.getOutputStream().close();
    %>
    Let me know any information is needed,
    Regards,
    Rameez

  • How to change the default structure when exporting data in CSV format?

    Hello,
    can some one tell us how to change the default structure in CRM when exporting lists in CSV format (with Option "Always use unformatted list format (CSV) for download" ? Because we want to add a new structure for our own -is it possible ?
    If it is possible where can we find these structure ? In the blueprint customizing ?
    Thank you very much,
    Christian

    There is a workaround to move from 1.5 version to the older 1.4 version. But this could be specific to the browser setting the JRE version.
    Excerpts from sun docs:
    However, a user can still run older versions. To do so, launch the Java Plug-in Control Panel for the older version, then (re)select the browser in the Browser tab.
    Example:
    Assume you are running on Microsoft Windows with Microsoft Internet Explorer, have first installed version 1.4.2, then version 5.0, and you want to run 1.4.2.
    Go to the j2re1.4.2\bin directory where JRE 1.4.2 was installed. On a Windows default installation, this would be here: C:\Program Files\Java\j2re1.4.2\bin
    Double-click the jpicpl32.exe file located there. It will launch the control panel for 1.4.2.
    Select the Browser tab. Microsoft Internet Explorer might still appear to be set (checked). However, when 5.0 was installed, the registration of the 1.4.2 JRE with Internet Explorer was overwritten by the 5.0 JRE.
    If Microsoft Internet Explorer is shown as checked, uncheck it and click Apply. You will see a confirmation dialog stating that browser settings have changed.
    Check Microsoft Internet Explorer and click Apply. You should see a confirmation dialog.
    Restart the browser. It should now use the 1.4.2 JRE for conventional APPLET tags.
    Details are here
    http://java.sun.com/j2se/1.5.0/docs/guide/deployment/deployment-guide/jcp.html
    My system (Windows XP) has the version 1.5_09 set as the default. However i just installed JRE 1.5_06 and would like to revert back to _06 as the default JRE..
    Will update if i find more information

  • Save a doc/docx file as dotx

    In C++/MFC using MS word controller (and not Open xml) how to Save a doc/docx file as dotx??
    I am opening the .doc/docxx file, and saving it as .dotx. It saves, but if tried to open when double clicking it, it is says something which means, incorrect file format. Is there a way around?
    STDMETHODIMP WordClass::OpenDocument2(BSTR templateFilepath, VARIANT_BOOL readOnly, VARIANT_BOOL visible)
        try
            // Make sure we have a valid MSWordApp object.
            if(m_pWordApp == NULL)
            // Make sure a document is not already open.
            if(m_pWordDoc != NULL)
            CComVariant varFilenameOpen(templateFilepath);
            m_pWordDoc = m_pWordApp->Documents->Add(&varFilenameOpen,
                                       &vtMissing,
                                        &vtMissing,
                                        &vtMissing);
            // Setup the event source sinks so that we will receive sink messages from MSWord.
            DocumentSink::DispEventAdvise(m_pWordDoc);
            if (readOnly == VARIANT_TRUE)
                CComVariant password((long)GetTickCount());
                password.ChangeType(VT_BSTR);
                m_pWordDoc->Protect(MSWORD::wdAllowOnlyComments,    //enum WdProtectionType
                                    &vtMissing,                      
     // NoReset.
                                    &password);                      
     // Password.
        catch(_com_error &err)
        return(S_OK);
    STDMETHODIMP CMSWordController::SaveDocumentAs(BSTR newDocumentFilename)
        try
            // Make sure we have a valid MSWordApp object.
            if(m_pWordApp == NULL)
            // Make sure a document is open.
            if(m_pWordDoc == NULL)
            // Wrap the arguments into Variants.
            CComVariant varFilename(newDocumentFilename);
            // Save the document.
            m_pWordDoc->SaveAs(    &varFilename,        // New Filename
                                &vtMissing,            // Document Format
                                &vtMissing,            // LockComments
                                &vtMissing,            // Password
                                &m_CovFalse,        // AddToRecentFiles
                                &vtMissing,            // WritePassword
                                &vtMissing,            // ReadOnlyRecommended
                                &vtMissing,            // EmbedTrueTypeFonts
                                &vtMissing,            // SaveNativePictureFormat
                                &vtMissing,            // SaveFormsData
                                &vtMissing);        // SaveAsAOCELetter
        catch(_com_error &err)
        return(S_OK);
    I called OpenDocument2(...) and then SaveDocumentAs(...).
            

    This is the code I am using...
    // Wrap the arguments into Variants.
    CComVariant varFilename(newDocumentFilename);
    // "C:\\abc.dotx" CComVariant varFormat(MSWORD::WdSaveFormat::wdFormatTemplate);
    // Save the document.
    m_pWordDoc->SaveAs2( &varFilename, // New Filename
    &varFormat, // Document Format
    &vtMissing, // LockComments
    &vtMissing, // Password
    &m_CovFalse, // AddToRecentFiles
    &vtMissing, // WritePassword
    &vtMissing, // ReadOnlyRecommended
    &vtMissing, // EmbedTrueTypeFonts
    &vtMissing, // SaveNativePictureFormat
    &vtMissing, // SaveFormsData
    &vtMissing, // SaveAsAOCELetter
    &vtMissing, // Encoding
    &vtMissing, // INsertLineBreaks
    &vtMissing, // AllowSubstitutions
    &vtMissing, // LineEnding
    &vtMissing, // AddBiDiMarks
    &vtMissing); // CompatibilityMode
    I am getting an exception, Incompatible File type and File extension.

  • How do i get pages to automatically save as a .docx format?

    I can export to a word format, but how can I get it to automatically save as one?

    Pages is not a Word substitute, it saves to .pages files.
    You Export to Word .doc/x.
    If you want a Word substitute try LibreOffice [free].
    Peter

  • Some PDF, .DOC, .DOCX won't import properly (open) after iTunes sync

    Hi everyone,
    After exporting/transferring documents from my MBP to my iPad2 (specifically .xlsx to Numbers, .Doc, .Docx, .pdf to Pages) some won't allow me to open them on the iPad and I can't figure out why.
    Once I make them available to open on the iPad and I go to import from "Copy from iTunes", the odd one (less than 1 in 10) is greyed out and won't let me open it. I've tried renaming the file, removing the file type from the name, etc. etc.
    Note: all .xlsx have worked; about 9/10 .doc or .docx have worked, and about 4/5 .pdf have worked, so I know I'm doing things right on the iTunes side.
    Any idea what's up?

    Too bad I can't answer my own questions for points!!
    Solution I've found:
    - emailed myself the PDF in question and opened in iBooks.
    I'm wondering if you aren't supposed to be able to read PDFs in Pages, since it's a fixed document (not editable).
    There you go, folks, problem solved!

  • How to read doc/docx/pdf/jpg files in objective-c?

    Hi am new to  objective-c,here want to read the files from the directory i know how to read the text file but what i need is to read the doc/docx/pdf/jpg files to read,i don't know how to read these files in objective-c if anyone knows about this please help me,
    thanks in advance.

    The same way. You will get a load of binary idata, and you have to handle that yourself. .. What, are you expecting libraries to read and somehow convert a .docx document to your taste? You need to look up what 'file format' means.
    (Oh alright, there /may/ be a standardized way in OS X to read a jpg and convert it into something OS X can use without you having to know the specifics.)

  • Converion of Doc,Docx,pdf,odt to Html

    Hi,
    I have a requirement like conversion of  Doc,Docx,pdf,odt to Html  without any lose of format ,then storing html content into database.
    can any one suggest is there any open source tool for achieving this.
    it is very urgent please reply as soon as possible.

    Hi
    Rajesh,
    #Convert Docx to HTML: 
    Using  PowerTools for Open XML just released a new HtmlConverter module that contains an open source.
    For more details, please refer to the following link.
    http://openxmldeveloper.org/blog/b/openxmldeveloper/archive/2014/01/30/transform-docx-to-html-css-with-high-fidelity-using-powertools-for-open-xml.aspx
    #Convert Pdf to HTML: 
    c# converting pdf to html [closed]
    #Convert Odt to HTML: 
    Convert ODT to HTML Command Line
    By the way, If you need to be able to perform operations like find and copy/pasting text. I would suggest converting the document to a .pdf, and displaying it inline, in whichever standard pdf viewer the client machine has installed.
    Best regards,
    Kristin
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Export to excel with formatting was autowrapping text in a cell

    Export to excel with formatting was autowrapping text in a cell without having to check the can grow option.  When the can grow option is checked it does wrap the text however it spans multiple rows, which causes complications when trying to sort. 
    It worked in:
    ProductVersion=10.0.0.533
    ProductName=Crystal Enterprise 10 Embedded
    Doesnt work in:
    Crystal Reports 10.0 Service Pack 6
    After the upgrade the reports did not autowrap, b/c the "can grow" option was not checked.  I believe this was fixed by "ADAPT00305137 Patch ID: 36479914
    Description:
    When users export to Excel 97-2000 with the page-based format, text fields are wrapped, even when the "can grow" feature in the
    Designer is turned off." .   After we turn the option to grow on it does wrap however it spans across multiple rows.  So I guess my question is there a way for it not to span multiple rows when wrapping text?
    Edited by: dforde on Jan 27, 2010 11:12 PM

    I could be wrong, but I believe the export to excel option exports the database values, and the export to HTML exports the values seen in the sheets. If the database values are stored as seconds, the Excel will see them as seconds, and the data will have to be formatted properly in Excel.
    I haven't toyed around with Excel exports that much, but it might be possible to set up a template or macro in excel that would have the proper formatting, and use it when opening the Disco export.

  • Pages and .doc/.docx

    I recently purchased Pages with the understanding that it would be able to open .doc/.docx files. I downloaded U-0090-01_P.doc from http://www.avery.com/avery/enus/Templates-%26-Software/Templates/Blank-Templates/Labels/Mailing/Shipping-Labe l-10-per-sheetMicrosoft-Word.htm?N=4294967205&refchannel=93551b34dcf4a110VgnVCM1000002118140aR CRD . When I open U-0090-01_P.doc with WORD it is a one page document. When I open it with Pages it is a two page document. Can anyone help me understand this? Thanks, Gary

    I gather the text at the bottom has spilled over?
    There is a discrepancy with how Microsoft measures the distance between lines of type, this may have caused it to just run a little long.
    If that is the case, select all and reduce the line spacing slightly to bring the text back onto 1 page.

  • IllegalArgumentException error while exporting report in PDF format

    Hi all,
    we are using Crystal Report 2008, Java 1.5.22 and JRC 11.8.4.1094 to export reports in pdf format within java.
    It is working fine for all reports except for a specific report where it gives IllegalArgumentException while exporting the PDF.
    Below the error occurred:
    12:39:16,875 ERROR [c] Disk Exporter: no output file was created by an exporter
    12:39:16,875 ERROR <b> PdfExporter: caught Exception in PDFFormatter.finalizeFormatJob (from destination?); aborting export
    java.lang.IllegalArgumentException
         at com.crystaldecisions.reports.exporters.destination.disk.c.a(Unknown Source)
         at com.crystaldecisions.reports.exporters.format.page.pdf.b.a(Unknown Source)
         at com.crystaldecisions.reports.a.e.if(Unknown Source)
         at com.crystaldecisions.reports.formatter.a.c.if(Unknown Source)
         at com.crystaldecisions.reports.formatter.a.c.a(Unknown Source)
         at com.businessobjects.reports.sdk.b.b.int(Unknown Source)
         at com.businessobjects.reports.sdk.JRCCommunicationAdapter.request(Unknown Source)
         at com.crystaldecisions.proxy.remoteagent.x.a(Unknown Source)
         at com.crystaldecisions.proxy.remoteagent.q.a(Unknown Source)
         at com.crystaldecisions.sdk.occa.report.application.dd.a(Unknown Source)
         at com.crystaldecisions.sdk.occa.report.application.ReportSource.a(Unknown Source)
         at com.crystaldecisions.sdk.occa.report.application.ReportSource.a(Unknown Source)
         at com.crystaldecisions.sdk.occa.report.application.ReportSource.export(Unknown Source)
         at com.crystaldecisions.sdk.occa.report.application.AdvancedReportSource.export(Unknown Source)
         at com.crystaldecisions.sdk.occa.report.application.NonDCPAdvancedReportSource.export(Unknown Source)
         at com.crystaldecisions.reports.reportengineinterface.JPEReportSource.export(Unknown Source)
         at com.crystaldecisions.report.web.event.br.a(Unknown Source)
         at com.crystaldecisions.report.web.event.w.a(Unknown Source)
         at com.crystaldecisions.report.web.event.b7.broadcast(Unknown Source)
         at com.crystaldecisions.report.web.event.av.a(Unknown Source)
         at com.crystaldecisions.report.web.WorkflowController.do(Unknown Source)
         at com.crystaldecisions.report.web.WorkflowController.doLifecycle(Unknown Source)
         at com.crystaldecisions.report.web.ServerControl.a(Unknown Source)
         at com.crystaldecisions.report.web.viewer.ReportExportControl.a(Unknown Source)
         at com.crystaldecisions.report.web.ServerControl.getHtmlContent(Unknown Source)
    12:39:16,875 INFO  [c] Disk Exporter: finalizing export to destination
    12:39:16,875 ERROR [JRCCommunicationAdapter] Failed to export report
    com.crystaldecisions.reports.exporters.format.page.pdf.a.a: Unknown exception is thrown
         at com.crystaldecisions.reports.exporters.format.page.pdf.b.a(Unknown Source)
         at com.crystaldecisions.reports.a.e.if(Unknown Source)
         at com.crystaldecisions.reports.formatter.a.c.if(Unknown Source)
         at com.crystaldecisions.reports.formatter.a.c.a(Unknown Source)
         at com.businessobjects.reports.sdk.b.b.int(Unknown Source)
         at com.businessobjects.reports.sdk.JRCCommunicationAdapter.request(Unknown Source)
         at com.crystaldecisions.proxy.remoteagent.x.a(Unknown Source)
         at com.crystaldecisions.proxy.remoteagent.q.a(Unknown Source)
         at com.crystaldecisions.sdk.occa.report.application.dd.a(Unknown Source)
         at com.crystaldecisions.sdk.occa.report.application.ReportSource.a(Unknown Source)
         at com.crystaldecisions.sdk.occa.report.application.ReportSource.a(Unknown Source)
         at com.crystaldecisions.sdk.occa.report.application.ReportSource.export(Unknown Source)
         at com.crystaldecisions.sdk.occa.report.application.AdvancedReportSource.export(Unknown Source)
         at com.crystaldecisions.sdk.occa.report.application.NonDCPAdvancedReportSource.export(Unknown Source)
         at com.crystaldecisions.reports.reportengineinterface.JPEReportSource.export(Unknown Source)
         at com.crystaldecisions.report.web.event.br.a(Unknown Source)
         at com.crystaldecisions.report.web.event.w.a(Unknown Source)
         at com.crystaldecisions.report.web.event.b7.broadcast(Unknown Source)
         at com.crystaldecisions.report.web.event.av.a(Unknown Source)
         at com.crystaldecisions.report.web.WorkflowController.do(Unknown Source)
         at com.crystaldecisions.report.web.WorkflowController.doLifecycle(Unknown Source)
         at com.crystaldecisions.report.web.ServerControl.a(Unknown Source)
         at com.crystaldecisions.report.web.viewer.ReportExportControl.a(Unknown Source)
         at com.crystaldecisions.report.web.ServerControl.getHtmlContent(Unknown Source)
    Caused by: java.lang.IllegalArgumentException
         at com.crystaldecisions.reports.exporters.destination.disk.c.a(Unknown Source)
         ... 56 more
    Have an idea?
    Thanks

    Hello Andrea.
    I searched through the SAP Notes for the error that you are encountering.  There is an SAP Note that exists titled the following:
    1332907 - Report being exported to PDF format using the Crystal Reports for Eclipse 1.x runtime, errors with the exception: PdfExporter: caught Exception in PDFFormatter.finalizeFormatJob
    Since you may not have access to the SAP Notes, I will extract the details that are mentioned in the note here:
    =============================================
    Symptom
    Attempting to export a report to Adobe PDF format using the Crystal Reports for Eclipse 1.x runtime results in an exception.
    The exception indicates "PdfExporter: caught Exception in PDFFormatter.finalizeFormatJob"
    Environment
    Windows 2003
    Apache Tomcat 5.0
    Crystal Reports for Eclipse version 1.x
    Reproducing the Issue
    Using the Crystal Reports for Eclipse runtime version 1.x attempt to export a report to PDF format that has the "Repeat Group Header on Each Page" option enabled.
    Note: This does not occur if this option is enabled in a subreport.
    Cause
    When the "Repeat Group Header on Each Page" is enabled for a group in a main report the Crystal Reports for Eclipse 1.x runtime is unable to correclty format the PDF document which results in an exception.
    Resolution
    Updating the application to use Crystal Reports for Eclipse version 2.x runtime will resolve the issue.
    The most recent updates to the Crystal Reports for Eclipse runtime can be freely downloaded from the SAP SDN Website. 
    http://www.sdn.sap.com/irj/boc/crystalreports-java
    =============================================
    Since you are on JRC 11.8.4.1094 which is Crystal Reports for Eclipse 1.x, this may be the cause of your problem.
    I hope that this helps.
    Regards.
    - Robert

Maybe you are looking for

  • Application Import not working for 1.6

    I just upgrade from 1.5 to 1.6 successfully with no errors. When I attempt to import a application I get a "Page can not be found" internet explorer error.

  • Logic Pro not working right:  HELP!!!!!!!

    Logic Pro is no longer sending audio signals to the mixer. The Output display is no longer available in the Mixer. Do I need to do a major reinstall of Logic from scratch? This was not my initial problem, but developed as I tried to "fix" a different

  • How can I set up a half-page format?

    Looking at a document a page at a time, built into Acrobat 9 Pro, is too small for my tired eyes.  Going the full width of the screen, also built in, is too large.  So I generally do trial-and-error to get a half-page on a screen. Is there some way t

  • Receiving a message in my word document after converting from a PDF to word. Please advise

    After converting and dowloading that converted file from a  Adobe PDF file to a word document I then open the word document to see a message stateing "To view the full contents of this document, you need a later version of the PDF viewer. You can upg

  • Assign custom infoset to PA30 free search

    Hi Could you please let me know how to assign  the custom infoset to PA30 free search? Thanks