Can't export pages into word

I am getting an error message The file “/Users/kafia2008/Library/Caches/Cleanup At Startup/com.apple.iWork.Pages_186_TEMP_376522632_4  when i try to export a pages document into word

What's the rest of the message?

Similar Messages

  • Can't export pages to word

    I have a 13 page document made in Pages 06 and opened in 08 and tried to save to Word and it just sits and spins.... any suggestions on why it won't save to word to be edited there? Am on last 2 days of trial and won't buy if this feature doesn't work for me.

    I have been FIGHTING with the "Unknown export error" problem all day long; I fixed it for a while, and then it happened again. I just figured out what the problem with my particular document was (which I haven't seen anywhere else on the forums): it was because I had pasted an outline from Keynote into my document.
    Here's a run-down of the other possible causes of this problem (all of which I tried and none of which worked): I tried deleting my preferences, activating and validating all my fonts, unclicking the "Include preview in document" box in the "Save as" menu. Because I was able to export a blank .pages document to Word, I went through my entire document, deleting bits of it until I was successfully able to export to Word.
    I discovered that it was because I had pasted a little outline from a Keynote presentation and that the style (either paragraph or character, I'm not sure which) of the pasted bit confused Pages. Just highlight the potential problem area and choose "Normal" from the drop-down "Choose a character style" button, then for good measure choose "Normal" from the drop-down "Choose a paragraph style" button. Breathe a sigh of relief.
    I'm reposting this answer (from another discussion) in hopes that it helps some other poor soul avoid spending the two hours I devoted to figuring this out.

  • Exporting smartform into word document

    how to export smartform into word document . i tried converting into pdf and then download but it showing run time error that conversion is not possible and also it tells that otf command // missing. is it not possible to export directly to word document instead of pdf.plz give clear description of what to be done exactly with sample codes.
    marks will be rewarded.

    Hi Lavanya,
    Converting the output from Spool to Word is possible.
    Here is the sample code.
    I cut pasted a code from a link i got in the website, see if it helps.
    ZSPOOL2WORD
    Genera un fichero Word a partir de una orden de spool
    MÓDULO : FI *
    TIPO : Listado *
    TITULO : Generación fichero Word
    DESCRIPCION : Genera un fichero Word a partir de una orden de spool
    AUTOR: Andres Picazo FECHA: 24/03/2003 *
    MODIFICACIONES *
    FECHA NOMBRE DESCRIPCION *
    REPORT ZSPOOL2WORD
    NO STANDARD PAGE HEADING
    LINE-COUNT 065
    LINE-SIZE 080.
    INCLUDE OLE2INCL.
    *----TABLAS/ESTRUCTURAS--
    *----TABLAS INTERNAS--
    DATA I_BUFFER(132) OCCURS 1000000 WITH HEADER LINE.
    *----VARIABLES--
    *----PARAMETER/SELECT-OPTIONS EN PANTALLA--
    SELECTION-SCREEN BEGIN OF BLOCK BLK_PAR WITH FRAME TITLE TEXT-SEL. "Pará
    PARAMETERS: P_SPOOL LIKE TSP01-RQIDENT OBLIGATORY.
    SELECTION-SCREEN END OF BLOCK BLK_PAR.
    SELECTION-SCREEN BEGIN OF BLOCK BLK_WOR WITH FRAME TITLE TEXT-WOR.
    PARAMETERS: P_WORD AS CHECKBOX DEFAULT 'X'.
    PARAMETERS: P_FWOR LIKE RLGRAP-FILENAME DEFAULT 'C:MAYOR.DOC'.
    PARAMETERS: P_PLAN LIKE RLGRAP-FILENAME
    DEFAULT 'D:DATOSAPISMAYORPLANTILLA LIBRO MAYOR.DOC'.
    SELECTION-SCREEN END OF BLOCK BLK_WOR.
    SELECTION-SCREEN BEGIN OF BLOCK BLK_FIC WITH FRAME TITLE TEXT-FIC.
    PARAMETERS: P_CTXT AS CHECKBOX DEFAULT ''.
    PARAMETERS: P_FTXT LIKE RLGRAP-FILENAME DEFAULT 'C:MAYOR.TXT'.
    SELECTION-SCREEN END OF BLOCK BLK_FIC.
    LOGICA DEL PROGRAMA
    INITIALIZATION
    INITIALIZATION.
    START-OF-SELECTION.
    START-OF-SELECTION.
    PERFORM LEER_SPOOL.
    IF NOT P_CTXT IS INITIAL.
    PERFORM GRABA_FICHERO.
    ENDIF.
    IF NOT P_WORD IS INITIAL.
    PERFORM LANZA_WORD.
    ENDIF.
    FORMS ADICIONALES
    *& Form LEER_SPOOL
    Lee la orden de spool en el buffer
    FORM LEER_SPOOL.
    CALL FUNCTION 'RSPO_RETURN_ABAP_SPOOLJOB'
    EXPORTING
    RQIDENT = P_SPOOL
    FIRST_LINE = 1
    LAST_LINE = 9999999
    TABLES
    BUFFER = I_BUFFER
    EXCEPTIONS
    NO_SUCH_JOB = 1
    NOT_ABAP_LIST = 2
    JOB_CONTAINS_NO_DATA = 3
    SELECTION_EMPTY = 4
    NO_PERMISSION = 5
    CAN_NOT_ACCESS = 6
    READ_ERROR = 7
    OTHERS = 8.
    IF SY-SUBRC NE 0.
    MESSAGE E398(00) WITH 'Error' SY-SUBRC
    'al leer la orden de spool' P_SPOOL.
    ENDIF.
    ENDFORM. " LEER_SPOOL
    *& Form GRABA_FICHERO
    Graba el contenido del spool a fichero de texto.
    FORM GRABA_FICHERO.
    CALL FUNCTION 'WS_DOWNLOAD'
    EXPORTING
    BIN_FILESIZE = ' '
    CODEPAGE = ' '
    FILENAME = P_FTXT
    FILETYPE = 'ASC'
    MODE = ' '
    WK1_N_FORMAT = ' '
    WK1_N_SIZE = ' '
    WK1_T_FORMAT = ' '
    WK1_T_SIZE = ' '
    COL_SELECT = ' '
    COL_SELECTMASK = ' '
    NO_AUTH_CHECK = ' '
    IMPORTING
    FILELENGTH =
    TABLES
    DATA_TAB = I_BUFFER
    FIELDNAMES =
    EXCEPTIONS
    FILE_OPEN_ERROR = 1
    FILE_WRITE_ERROR = 2
    INVALID_FILESIZE = 3
    INVALID_TABLE_WIDTH = 4
    INVALID_TYPE = 5
    NO_BATCH = 6
    UNKNOWN_ERROR = 7
    GUI_REFUSE_FILETRANSFER = 8
    OTHERS = 9.
    IF SY-SUBRC NE 0.
    MESSAGE E398(00) WITH 'Error' SY-SUBRC
    'al grabar el fichero' P_FTXT.
    ENDIF.
    ENDFORM. " GRABA_FICHERO
    *& Form LANZA_WORD
    Abre la plantilla de Word y pega el contenido del portapapeles.
    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 'CLPB_EXPORT'
    TABLES
    DATA_TAB = I_BUFFER
    EXCEPTIONS
    CLPB_ERROR = 1
    OTHERS = 2.
    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_PLAN IS INITIAL.
    CALL METHOD OF DOCUMENT 'Add'.
    ELSE.
    CALL METHOD OF DOCUMENT 'Open' EXPORTING #1 = P_PLAN.
    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.
    MESSAGE E398(00) WITH 'Error al pegar contenido del portapapeles'.
    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
    check this also.................
    By using FM RSPO_RETURN_ABAP_SPOOLJOB you will be able to get the ASCII text of your Spool, which you can download to your local HD and open with M$ Word.
    Check the function module
    CALL FUNCTION 'RSPO_DOWNLOAD_SPOOLJOB'
         EXPORTING
              id    = p_spool
              fname = p_file.
    Give the file extn as .DOC. it will downlaod it as a
    Word doc.But I fear you wont get the table formats and
    all.
    ~~Guduri

  • Can you have pages and word on the same computer

    can you have pages and word on the same computer

    Sure, I do (my Office is 2008 but I keep it around for some things I get from work).

  • Can't export PDF to word.

    I've subscribed yesterday and still can't export PDF to word.

    I have the same problem.  Have they fix problem? Should I ask for the refund?

  • Any ideas how I can insert a pdf into word, using the insert object option. However the pdf i want to insert has text and lines annotated, but once inserted the comments don't appear????  any help would be greatly appreciated.

    Any ideas how I can insert a pdf into word, using the insert object option. However the pdf i want to insert has text and lines annotated, but once inserted the comments don't appear????  any help would be greatly appreciated.

    You will need to find a forum for MS Word since that is the software that you are trying to manipulate in this.  If you think the processing/creation of the PDF plays a role then you should ask in the forum for the software that you are using to create the PDF.
    This forum is for issue regarding downloading and installing Adobe trial products, so in any circumstance, your issue does not fit in this forum.

  • Exporting music into word

    I am having trouble exporting music into word.  Part of it comes in Ok and the rest is garbled.

    Hi Bonnie,
    Are you using your ExportPDF subscription for this task?
    If so try this:
    OCR
    Let me know if that helps!
    Kind regards, Stacy

  • How can I export pages 09 into a jpeg?

    Any suggestions on how to make a document I created in pages into a jpeg? Can I turn a PDF into a jpeg?

    You can turn a pdf into a jpeg. After you export the Pages document as a pdf, open it and Preview and do a Save As and the drop down menu will let you save it as a jpeg.

  • Export comments into word

    I'm trying to export my sticky notes comments into word and I
    get prompted that I need word 2002 or later installed on your
    system. I have word 2007 installed. Why does this prompt appear? I
    need to find out how to export my comments to word. Any help is
    much appreciated.
    Thanks,
    Brian

    Thanks for the additional helpful information, Fruhulda. I didn't realize that they had removed important features in the so-called upgrade.
    It sounds as if Pages 5 will work for fast and easy tasks, but Pages 09 will be good to have for heavy-duty work. I guess this explains why Pages 5 didn't overwrite Pages 09 on installation. They are really two different apps now.

  • Exporting pages into another application -another scheme

    Hello,
    the pages from an exported application aren't installable in my target app.
    Copying a Page between the Applications failed.
    Following Raj's hint I did the export/ import for the whole application from Workspace A into Workspace B. Workspace A is placed in a different Database Scheme than workspace B.
    On install a new AppId has been created. Former 107, it has been changed to 114.
    The Application could be started, import worked fine so far,I thought ....
    While trying to import specific pages into the target application ( ID is 119) using the import wizard my problem occcured:
    Running this HTMLDB returns 'This page has been imported from a different workspace, so it can't be installed into this application'.
    What went wrong?
    Regards
    Franz Langner

    Bernhard - I think you are describing the long-standing problem of not being able to install a page into an application other than the application from which it was exported. Raj described a procedure to deal with this situation here: Synonyms Franz was saying that he had problems even after using that procedure. So I think Franz's and your situations are different and that yours can be addressed if you use the referenced procedure.
    If I've got it wrong, please elaborate.
    Scott

  • Can you export PDF into Microsoft Visio?

    Can you export PDF file into Microsoft Visio?

    Hi Nate,
    ExportPDF is only used to convert PDF to Word, Excel, Powerpoint or RTF format. Convert to Microsoft Visio is not possible via ExportPDF.
    http://forums.adobe.com/docs/DOC-1511
    Let me know if you have any more questions
    Regards,
    ~Pranav

  • Export calender into word or else?

    Hi,
    can anyone tell me if I can export my iCal calender into word or sth else? In order to make a printout?
    Thanks for answering!

    There isn't a way to export as text file, or doc file or similar.
    Perhaps one workaround would be to choose the calendar display you want, and then take a screen capture shot (command-control-shift 4), select the portion of your calendar that you want with cross-hairs, and then just paste it into a word doc as a picture.

  • File size expands exporting Pages to Word

    Just recently when I export a file from Pages to Word the file size has jumped considerably.  For example, a 187 KB file in pages becomes a 553 KB file in word .docx and 1.6 MB file in .doc.  MacBook Pro running OSX 10.9.5 and Pages 5.2.2.  I do not have Word on my Mac, but I MUST be able to convert and keep small files small. This same file in March 2014 was converting to 18 KB when in Word.  What is happening and how do I fix it?

    Thanks.  I do have that version, and I just tried to open the file I was working on yesterday, but I received an error message that I need a new version of Pages in order to open it.  I can mess around and copy and paste and work around this, most likely, but it's really a pain.  Is there a way to push Apple to fix this?  Is there an update with the new OSX that may alleviate this problem?  I certainly hate to have to switch word processing programs.  This is what I do for a living, and I need the technology to be a help rather than a hindrance.

  • I have Adobe Pro 9 and I can't insert pages into a PDF created by Adobe Pro 8

    I've looked at the other discussions about not being able to insert pages into a PDF, and tried all the suggestions, but to no avail. I think the problem is that the original PDF was created in Adobe 8, and I have Adobe 9. When I open the PDF in Adobe Pro 9, the security screen says that editing is not allowed, and the screen is greyed out so that I can't change the settings. When I open the same PDF in Adobe Pro 8, the security screen says "No Security". 
    I also checked the "Documents" screen in Edit -> Preferences, and changing the "View Documents in PDF/A" to Never doesn't help.
    Does anyone have any suggestions?

    That would be a question for Adobe support. Firefox does advise users when their Acrobat plugin is out of date, but the actual update is done by Adobe.

  • Can't export Pages document to PDF

    I have been trying to export a Pages document to PDF a number of times and get the following message: "The application Pages quit unexpectedly." I have rebooted and still can't export. Can anyone help, please? Thanks so much.

    paramita,
    Welcome to Apple discussions.
    That particular issue usually indicates either a bad font or a corrupt image. Or both. Try validating your fonts using Font Book. If you've got a corrupt font, change fonts in your document. If Font Book tells you all your fonts are healthy, try pulling half of the images out of your document, then saving again as a PDF. If it works, you know you've got a corrupt image in the half you pulled out.
    -Dennis

Maybe you are looking for

  • Problem with slideshow basic, works locally but not remotely

    Hi, I've noticed many threads on this issue and I have tried many fixes but no success. Most seems to revolve around the SpryWidget.js file so I've loaded it directly from AdobeLabs file. In fact, have loaded all .js files directly via my hosting ser

  • Ipod with Western Digital 160 gb External Drive

    What do I need to do with the Itunes configuration to use the Western Digital External Drive. I have so much music that I want to use the external drive to store all of my music files. The Music Files on my lap top were taking up to much space on my

  • Transport details during GR

    Hi all , I wanted to capture the Vehicle no ..and its relevant  details during GR , is there any functionality available within SAP  or there any work around thanks , ksr

  • Help!  Old Version of Page STUCK in Safari Proxy Server

    I have a website that I run. For some reason no matter what I do, there are old versions of my website stuck in the Safari Proxy Server. A year and a half ago my online cart was down, so I put up a message on the website. I STILL get calls almost eve

  • Camera not working after Yosemite Install 10.10.1 Macbook Pro early 2008

    After installing Yosemite the camera does not work or even show up in system report. It appears not to be recognized at all by the OS. I have tried all of the suggested reset processes but no change. Any ideas?