Problem opening .doc files in pages/.xls files in numbers...

My hard drive recently failed and has been replaced.  Since the new hard drive was installed, I am unable to open .doc files with pages or .xls files with numbers.  I never had this problem before.

I have I-work 09 [Pages 4.0 (727)]
This is the same version I had before (I think) -- At the Apple Store they used a new I-Work disc to install it onto the new hard drive.
I hope someone can help with this!
Thank you!

Similar Messages

  • Problems opening .doc file in pages?

    Hi this is my first post so please redirect me if this question has already been answered.  Ok, I am trying to open a .doc file that I typed in Officesuite pro 6 on my Kindle Fire 2G, and after I have downloaded it to my mac (2006 iMac running OS X 10.6.8), I try to open it and I get this error:
    Please tell me if I need to use a converter, rewrite it, or do whatever needs to  be done to get it opened.  By the way I am using iWork '09.
    Thanks for your help!
              - masterJdogd

    Even though it is labeled as a .doc file, obviously Pages knows it wasn't created with Word. First, you might see if TextEdit can open it & re-save it as .doc or .rtf & see if Pages would recognize it. Another option would be to use a free Office clone such as LibreOffice to open & re-save it.
    Or it just could be the # in the file name. Try renaming the file & see what happens.

  • Problem when converting from spool to XLS file

    Hey.
    I need to get table data from the spool and send it by mail in an xls file.
    so this is what i have done:
    I have used the FM 'RSPO_RETURN_ABAP_SPOOLJOB' to get the data table from the spool.
    then i am sending the data table in an xls file via the FM 'SO_DOCUMENT_SEND_API1'.
    the problem is that the xls file that i am getting through the mail is defected.
    All the contents of the spool is located in the first row, first column.
    How can i fix it?
    Thanks, Barak.

    After geting the data in a internal table.from spool......refer this report.....
    data: p_email   type somlreci1-receiver
                                   value 'MAIL ID'.
    data: begin of it001 occurs 0,
          bukrs type t001-bukrs,
          butxt type t001-butxt,
          end of it001.
    data:   imessage type standard table of solisti1 with header line,
            iattach type standard table of solisti1 with header line,
            ipacking_list like sopcklsti1 occurs 0 with header line,
            ireceivers like somlreci1 occurs 0 with header line,
            iattachment like solisti1 occurs 0 with header line.
    start-of-selection.
      select bukrs butxt into table it001 from t001.
      Populate table with detaisl to be entered into .xls file
      perform build_xls_data .
    Populate message body text
      clear imessage.   refresh imessage.
      imessage = 'Please find attached excel file'.
      append imessage.
    Send file by email as .xls speadsheet
      perform send_email_with_xls tables imessage
                                          iattach
                                    using p_email
                                          'Example Excel Attachment'
                                          'XLS'
                                          'TestFileName'
                                          'CompanyCodes'.
         Form  BUILD_XLS_DATA
    form build_xls_data .
    constants: con_cret type x value '0D',  "OK for non Unicode
                con_tab type x value '09'.   "OK for non Unicode
    *If you have Unicode check active in program attributes thnen you will
    *need to declare constants as follows
    *class cl_abap_char_utilities definition load.
    constants:
        con_tab  type c value cl_abap_char_utilities=>horizontal_tab,
        con_cret type c value cl_abap_char_utilities=>cr_lf.
      concatenate 'BUKRS' 'BUTXT'
             into iattach separated by con_tab.
      concatenate con_cret iattach into iattach.
      append  iattach.
      loop at it001 .
        concatenate it001-bukrs it001-butxt
               into iattach separated by con_tab.
        concatenate con_cret iattach  into iattach.
        append  iattach.
      endloop .
    endform.
         Form  SEND_EMAIL_WITH_XLS
    form send_email_with_xls tables pit_message
                                              pit_attach
                                        using p_email
                                              p_mtitle
                                              p_format
                                              p_filename
                                              p_attdescription.
      data: xdocdata like sodocchgi1,
            xcnt type i.
    Fill the document data.
      xdocdata-doc_size = 1.
    Populate the subject/generic message attributes
      xdocdata-obj_langu = sy-langu .
      xdocdata-obj_name  = 'SAPRPT' .
      xdocdata-obj_descr = p_mtitle .
    Fill the document data and get size of attachment
      clear xdocdata.
      read table iattach index xcnt.
      xdocdata-doc_size =
         ( xcnt - 1 ) * 255 + strlen( iattach ).
      xdocdata-obj_langu  = sy-langu.
      xdocdata-obj_name   = 'SAPRPT'.
      xdocdata-obj_descr  = p_mtitle.
      clear iattachment.  refresh iattachment.
      iattachment[] = pit_attach[].
    Describe the body of the message
      clear ipacking_list.  refresh ipacking_list.
      ipacking_list-transf_bin = space.
      ipacking_list-head_start = 1.
      ipacking_list-head_num = 0.
      ipacking_list-body_start = 1.
      describe table imessage lines ipacking_list-body_num.
      ipacking_list-doc_type = 'RAW'.
      append ipacking_list.
    Create attachment notification
      ipacking_list-transf_bin = 'X'.
      ipacking_list-head_start = 1.
      ipacking_list-head_num   = 1.
      ipacking_list-body_start = 1.
      describe table iattachment lines ipacking_list-body_num.
      ipacking_list-doc_type   =  p_format.
      ipacking_list-obj_descr  =  p_attdescription.
      ipacking_list-obj_name   =  p_filename.
      ipacking_list-doc_size   =  ipacking_list-body_num * 255.
      append ipacking_list.
    Add the recipients email address
      clear ireceivers.  refresh ireceivers.
      ireceivers-receiver = p_email.
      ireceivers-rec_type = 'U'.
      ireceivers-com_type = 'INT'.
      ireceivers-notif_del = 'X'.
      ireceivers-notif_ndel = 'X'.
      append ireceivers.
      call function 'SO_DOCUMENT_SEND_API1'
           exporting
                document_data              = xdocdata
                put_in_outbox              = 'X'
                commit_work                = 'X'
           tables
                packing_list               = ipacking_list
                contents_bin               = iattachment
                contents_txt               = imessage
                receivers                  = ireceivers
           exceptions
                too_many_receivers         = 1
                document_not_sent          = 2
                document_type_not_exist    = 3
                operation_no_authorization = 4
                parameter_error            = 5
                x_error                    = 6
                enqueue_error              = 7
                others                     = 8.
    endform.
    Reward IF.........
    Regards
    Anbu

  • How can I convert files from pages 08 files without pages 09?

    I am extremely dissatisfied with the latest iWork (13?) applications. My 2008 MacbookPro crashed on me, so I purchased a new 15" MacbookPro last month. Due to a known issue that prohibits my new Mac from being restored from my Time Capsule backup (thanks, Apple...), we finally got it worked out so that all my files were restored, but I had to reinstall my applications as I could find them. I had iWork 09 on my old machine, but it was from a family pack years ago, for which I do not have the discs. So, now I don't have Pages 09 to convert all my older files (I had no legitimate reason to convert my graduate work from 08 because it all worked in '08 and '09) so that I can open all my .pages files in Pages. Why would Apple make Pages that cannot open .pages files?! This is quite frustrating, and I'm hoping someone has an answer for how to convert .pages files from iWork '08 so that I can open them in the latest Pages without having to purchase iWork '09 (AGAIN!). Apple is really ramping up its leaving people behind...

    Those are your choices.
    Buy iWork '09 which is a good solution or somehow reinstall Pages '08 so you can export to Word .doc/x files.
    We warned long and hard that not updating to Pages '09 would eventually lead to Pages '08 being left behind, although Apple was particularly ruthless the way it finally did it.
    Also that anything using Apple's proprietary formats is going to end up with the same fate.
    Peter

  • .dmg files forced into .xls files when downloading applications

    Why are dmg files being forced into xls files when I'm attempting to download applications from websites?
    MacBook1,1   Mac OS X (10.4.8)  

    Hi mospirit,
    first of all: WELCOME TO THE DISCUSSIONS!
    Sometimes files lose connection to their application. This can be solved quite easily though:
    1. Download Cocktail, OnyX or Tiger Cache Cleaner and reset the "Launch Services Database".
    2. Click any .dmg and type Apple-i to get the Information window. In the pop-up called "Open With" select "Other" and navigate to /System/Library/CoreServices. There select DiskImageMounter as default application. Finally back in the Information window click "Change All".
    If this answered your question please consider granting some stars: Why reward points?

  • Crashing when i try to open any file in pages (also keynote and numbers)

    I just buy and install iWork 09. Everything about the installation seems to be ok but when i try to open any file, new or created, i get a crash program with the legend "Pages quit unexpectedly". I tried to reinstall 2 or 3 times but it doesn't work.
    Any help?

    I'm interested in the solution since I'm having the same problem after a reinstall and update Pages to 4.0.4
    Keynote & Numbers won't launch either.
    Amendment to the original post:
    Dyld Error Message:
    Library not loaded: /Library/Application Support/iWork '09/Frameworks/Inventor.framework/Versions/C/Inventor
    Referenced from: /Applications/iWork '09/Pages.app/Contents/MacOS/Pages
    Reason: image not found
    Message was edited by: Robert Garbowski

  • Cannot open PDF, Word 2010, or XLS files stored in DMS.

    Hi Experts,
    I have been working on a program to open a DMS file using a .net access. When I create a new attachment for lets say a purchases order and save the attachment as a pdf, the file save ok. But when I try and execute my program I get a dump.  Below is the short dump info and the program code. Any help would be appreciated. I understand that the dump is because of a assignment problem but i don't understand why it is not assigned. I am using window 8.1 and Microsoft Office 2010, Adobe Xl.
    METHOD if_http_extension~handle_request.
       DATA:
         lr_request      TYPE REF TO if_http_request,
         lr_response     TYPE REF TO if_http_response,
         lv_value        TYPE string,
         lv_data         TYPE xstring,
         ls_draw         TYPE draw,
         ls_checkout_def TYPE dms_checkout_def,
         ls_doc_file     TYPE dms_doc_file,
         ls_phio         TYPE dms_phio,
         ls_file         TYPE cvapi_doc_file,
         lt_files        TYPE TABLE OF cvapi_doc_file,
         lt_content      TYPE TABLE OF drao,
         lv_frontend     TYPE dms_frontend_data,  " Frontend information
         v_frontend      TYPE dms_frontend_data.
       CONSTANTS : c_hostname TYPE ntadr VALUE 'DEFAULT', "Hostname
                   c_type TYPE typdt VALUE 'PC', "Type
                   c_system TYPE char4 VALUE 'WN64'. "System
       v_frontend-frontend_type = c_type.     "'PC'.
       v_frontend-hostname      = c_hostname. "'DEFAULT'.
       v_frontend-winsys        = c_system.   "'WN32'.
       v_frontend-platform      = 0.
       v_frontend-frontend_type = 'KP'.
       FIELD-SYMBOLS <fs_content> TYPE drao.
    * 1.
       lr_request  = server->request.
       lr_response = server->response.
       IF lr_request->get_method( ) EQ 'GET'.
    *   2.
    *   Retrieve document key
         lv_value = lr_request->get_form_field( 'type' ).
         ls_draw-dokar = lv_value.
         lv_value = lr_request->get_form_field( 'number' ).
         ls_draw-doknr = lv_value.
         lv_value = lr_request->get_form_field( 'version' ).
         ls_draw-dokvr = lv_value.
         lv_value = lr_request->get_form_field( 'part' ).
         ls_draw-doktl = lv_value.
    *   Retrieve document key
    *    lv_value = lr_request->get_header_field( name = '~PATH_INFO' ).
    *    SPLIT lv_value AT '/' INTO lv_value
    *      ls_draw-dokar ls_draw-doknr ls_draw-dokvr ls_draw-doktl.
    *   3.
    *   Check document existence and read details
         CALL FUNCTION 'CVAPI_DOC_GETDETAIL'
           EXPORTING
    *         PF_BATCHMODE          = ' '
    *         PF_HOSTNAME           = ' '
              pf_dokar              = ls_draw-dokar
              pf_doknr              = ls_draw-doknr
              pf_dokvr              = ls_draw-dokvr
              pf_doktl              = ls_draw-doktl
    *         pf_read_drad          = 'X'
    *         pf_read_drap          = 'X'
    *         pf_active_files       = 'X'
              pf_read_comp          = 'X'
              pf_read_kpro          = 'X'
              pf_read_drat          = 'X'
           IMPORTING
             psx_draw  = ls_draw
           TABLES
             pt_files  = lt_files
           EXCEPTIONS
             not_found = 1
             OTHERS    = 2.
         IF sy-subrc NE 0.
    *     Put the error in the response
           MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
             WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4 INTO lv_value.
           lr_response->set_cdata( lv_value ).
           lr_response->set_status( code = 400 reason = 'Document not found!' ).
           EXIT.
         ENDIF.
    *   4.
    *   Convert file information
         READ TABLE lt_files INTO ls_file INDEX 1.
         MOVE-CORRESPONDING ls_file TO: ls_doc_file, ls_phio.
    *   Checkout document
         SELECT SINGLE kpro_use FROM tdwa INTO ls_checkout_def-kpro_use
           WHERE dokar EQ ls_draw-dokar.
         ls_checkout_def-comp_get = 'X'.
         ls_checkout_def-content_provide = 'TBL'.
         CALL FUNCTION 'CV120_DOC_CHECKOUT_VIEW'
           EXPORTING
             ps_cout_def = ls_checkout_def
             ps_doc_file = ls_doc_file
             ps_draw     = ls_draw
             ps_phio     = ls_phio
             ps_frontend = v_frontend
             pf_std_url  = 'X'
           TABLES
             ptx_content = lt_content
           EXCEPTIONS
             error       = 1
             OTHERS      = 2.
         IF sy-subrc NE 0.
    *     Put the error in the response
           MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
             WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4 INTO lv_value.
           lr_response->set_cdata( lv_value ).
           lr_response->set_status( code = 400 reason = 'Failed to read document!' ).
           EXIT.
         ENDIF.
    *   5.
    *   Put document content in response
         LOOP AT lt_content ASSIGNING <fs_content>.
           CONCATENATE lv_data <fs_content>-orblk INTO lv_data IN BYTE MODE.
         ENDLOOP.
         lv_data = lv_data(<fs_content>-orln).
         lr_response->set_data( lv_data ).
         lr_response->set_status( code = 200 reason = '' ).
    *   6.
    *   Set MIME type
         SELECT SINGLE mimetype FROM tdwp INTO lv_value
           WHERE dappl EQ ls_file-dappl.
         IF sy-subrc EQ 0.
           lr_response->set_header_field( name = 'Content-Type' value = lv_value ).
         ENDIF.
       ENDIF.
    ENDMETHOD.
    The Dump...
    Runtime Errors         GETWA_NOT_ASSIGNED
    Date and Time          18.08.2014 11:03:34
    Error analysis
         You attempted to access an unassigned field symbol
         (data segment "-1").
         This error may occur if
         - You address a typed field symbol before it has been set with
           ASSIGN
         - You address a field symbol that pointed to the line of an
           internal table that was deleted
         - You address a field symbol that was previously reset using
           UNASSIGN or that pointed to a local field that no
           longer exists
         - You address a global function interface, although the
           respective function module is not active - that is, is
           not in the list of active calls. The list of active calls
           can be taken from this short dump.

    Hi Patrick ,
    Please update with answer how yourself resolved the issue and set it as on assumed answer on the top . 
    Reg,
    chandu.

  • Problem opening Canon 5D Mark II raw files

    Adobe support has started a case file #181481276 on my problem.  I recently had my hard drive replaced so I had to reload my photoshop elements 7.  It wouldn't open the Canon 5D Mark II raw files so I downloaded the latest raw plug-in 5.5 for PSE 7.  Still wouldn't open the raw files.  I may not be doing the right thing with the clunky #%&# zip files.  Adobe support said I should download the raw plug-in 5.2 (seems if 5.2 would work subsequent plug-ins like 5.5 should also work).  I downloaded 5.2 and nada no help.  Am I doing something wrong with the zip files?  I open each of the three files that downloaded (even moved them to the Adobe folder in the C program files folder).  My operating system is XP Professional.

    Adobe support is generally unreliable.  You should install the latest version of ACR, 5.6.  It's easy to make a mistake with the manual installation instructions.  See this FAQ for troubleshooting:
    http://www.johnrellis.com/psedbtool/photoshop-elements-faq.htm#_Problems_opening_raw

  • Can t open Docs stored from pages in cloud

    I have been using pages on iPad 2 for sometime with no problems. Somehow this week during some back up the docs left iPad and I can find them in iCloud -storage and backup -manage storage but can t open them or restore to iPad or send. They are just listed. I am a novice at this stuff so any help would be appreciated.

    Thanks for that but nothing changed. I will spend a bit of time turning on and off various things. Should I delete previous back up? Would that restore docs sitting on cloud onto iPad? Thanks in advance.

  • Problem opening doc & PDF's

    A small but not insignificant problem, compiled a project
    (fine) placed on the server and the staff access it via a mapped
    drive or shortcut to said server, all ok apart from one computer
    which will not open any documents or pdf files, the prompt comes up
    but click on "open" or "save as" and nothing happens. I'm stumped
    and IT dept are sas well.
    Any help folks ?
    Win 2000/Word 2003 Robohelp X5

    Are the security settings on that computer set too high?
    Good luck,
    Leon

  • I can't open docs with the Pages 5.0

    I downloaded Pages 5.0.  Worked nice.  Last night I downloaded word docs from a state website, input information and saved it in Pages.  This morning I am getting pop-ups saying that I need Pages 5.0 to open the document.  Okay.  I went to the Apps page and it says that I have installed Pages 5.0.  How do I get 5.0 to work so that I can open these documents? This is very frustrating and is hanging up information that I need for my clients.
    Thank you for your help.

    Chaz,
    You may still have the iWork '09 apps on your Dock. They won't open documents that have been edited with the Maverick versions of iWork. Drag those old iWork icons off the Dock and drag the new apps onto the dock, if they are not there already.
    You can tell the icons apart if you look carefully. The new Pages icon has a yellow pen rather than a black pen, and the new Numbers icon has a 4-column chart rather than a 3-column chart.
    Jerry

  • Save Palm calendar file as an XLS file?

    I need to export my palm desktop calendar to another program how can I save the file so it will open in another app like excel or something?
    Thanks
    Post relates to: Zire 72

    You Can't , it will only export in a perpriatory Palm format .dba.
    You could switch over and sync your device to MS Outlook if you have this software, and then you would have the option to export as a CSV (comma seperated value) which can be opened in an excel spread sheet.

  • Problem opening documents created in Pages

    i have the new pages installed on work mac mini. created a document at work. tried to open at home on macbook pro on new pages program but it won't open!!! help!!!

    1. Is it possible you installed from a demo installer and your 30 day trial period is up, when it goes into Read Only mode?
    2. Where and what was your purchased disk?
    3. Where are you saving to?
    4. Have you tried saving somewhere else eg an external hard drive and see what happens then?
    5. The auto-saving issue with Pages 5.2.2 could be problems with iCloud and online access.
    Peter

  • Problem opening popup from jsf page....

    Hi to all....i have a problem, i'm trying to open a popup window using "outputLink".
    My code is:
    <h:outputLink value="#" onclick="window.open('#{appManager.basePath}/admin/selectCollection.jsf','','width=600, height=400, resizable=yes, fullscreen=no, menubar=no, toolbar=no, status=no, scrollbars=no, location=no')">
         <h:outputText value="#{bundle.selCollection}"> </h:outputText>
    </h:outputLink>
    The "window.open" works perfectly, but the parent window shows the page "Directory Listing For /" with the list of directories of my root project...
    What is the problem?

    try to use the popupFrame component of jenia4faces library (http://www.jenia.org).
    Is a good solution for popups problem

  • Setting pages to open .doc files by default

    I have iWork '08 but not MS Word on my MBP. When I get an e-mail attachment that is a .doc file (or an .xls file), I need to save it to the desktop and then open it with Pages or Numbers. Same with old Word files--I can't just open them in Pages by double clicking. Is there a way that I can tell Pages to open these files by default?

    I'm not trying to race you, just get it right.
    There was a smiley, whas it not clear enough
    Don't worry against Safari.
    At this time, when I am on ebay, one feature is broken from Safari but happily, it works under Firefox. Alas, in Firefox an other feature force the Mac to quit (under ebay) with a dialog which I never saw before:
    a black pane saying, in different languages, "you must restart the machine".
    Yvan KOENIG (from FRANCE lundi 13 octobre 2008 15:59:56)

Maybe you are looking for

  • Delivery Schedule through Email

    Dear Experts, I have a doubt...Can we send Delivery Schedule for a Scheduling Agreement through a mail to respective vendor... Is it possible through ME9E??? Any one can help me, Please.. Thanks and Regards Mk

  • PL/SQL 안에서 DB_LINK 의 제한..

    안녕하세요. 프로시져에서 if aa@link1 else aa@link2 else aa@link3 else.. 이렇게 DB_LINK 를 사용하고 있습니다. 그런데 이게 3개가 넘으면 에러가 나네요. 어느 문서에 보니 open_links 수를 늘려줘야 한다고 하는데 해결책이 맞나요? 그리고 맞다면 어떻게 늘려줄 수 있나요?

  • Procedures PL/SQL blob

    Hello, I wrote two procedues in PL/SQL. I use Oracle XE and Windows XP. DECLARE l_bfile BFILE; l_blob BLOB; BEGIN INSERT INTO test_blob (id,file_name,image,timestamp) VALUES (3,'descrbr',empty_blob(),sysdate) RETURN image INTO l_blob; l_bfile := BFIL

  • 100% Page Width Issue

    Hi there, I'm designing a site with Muse 7.4 and I've been trying to get my content to scale to different browser sizes proportionally. It feels like I've looked at every tutorial there is about aligning boxes/objects with the red lines at the sides

  • Select out of loop

    my previous code is data : begin of itab occurs 0,                matnr like zcst-zmatnr,               checked type i,           def11 type i,                def14 type i, end of itab. DATA : ind TYPE i. LOOP AT itab.   ind = sy-tabix.   SELECT COUN