My 2009 macbook microsoft word documents are not being accepted as files.

My 2009 Macbook seems to be falling behind. Using Mac OS X (Version 10.6.8) and Microsoft Word for Mac 2008 (version 12.3.6).
For some reason, my files do not work online. They are "invalid." For example, "invalid file type" popped up on my school online dropbox and my online grad school application. My files are, however, in the correct (doc, docx, pdf) file types. I had to go on campus and use a PC to upload assignments and applications.
Not sure if it's my software or old word version.
Anywho, I just need some answers!

Regardless of what system you are on (Windows/Mac), a filename extension is required when transferring files online. This was noted in the error message of your initial post:
No File Extension For This File **File  Name**
Make sure this  file has the correct extension.
You would have had the same problem on Windows if you neglected a filename extension.
It might be a bit more likely to accidentally save a file without an extension on Mac because Mac has been able in the past to work without filename extensions.  This is changing. Everyone should be using filename extensions if they expect to effectively share files.

Similar Messages

  • Reversal documents are not being represented when 0PY_PP_C3 is being loade

    We use the 0HR_PY_PP_2 and 0HR_PY_PP_1 infosources to load the 0PY_PP_C2 and 0PY_PP_C1 ODSs. Then 0PY_PP_C1 updates the 0PY_PP_C3 ODS.
    Routines in the update rules include corresponding data from 0PY_PP_C2 during the update of 0PY_PP_C3. If there is no matching data in 2, then the corresponding records in 1 do not go into 3 Our process chain first loads 2, after it activates, it then loads 1, then updates 3.
    There are 5 reversal documents are in 0PY_PP_C2.
    The Update rules between 0PY_PP_C1 and 0PY_PP_C3 refer to the Posting Documents ODS: 0PY_PP_C2. 
    The issue is that the reversal documents are not being represented when 0PY_PP_C3 is being loaded.

    Hi,
    The simple solution is to debug the code written in the routine, as you mentioned that you already have some data in PP_C2 then check if that data is properly getting read in routine.
    After that check the condition based on which you are skipping records of PP_C1 and not loading into PP_C3. Is your condition perfectly working fine?
    Put a break point and check how the data is flowing.
    Regards,
    Durgesh.

  • Anti spam codes for website forms are not being accepted on my imac or iPad

    anti spam codes for website forms are not being accepted on my imac or iPad

    In Safari go to preferences click on privacy and on Block Cookies tick the never box

  • I am not being able to create my apple ID as my card details are not being accepted by the app store. i tried with my visa card as well as master card. help me out to solve the problem..

    I am not being able to create my apple ID as my card details are not being accepted by the app store. i tried with my visa card as well as master card. help me out to solve the problem..

    Were the VISA and MasterCard issued to you by a bank in the country where you reside and do they have a verifiable billing address in the same country?
    Or are these debit cards that you bought in a local store. Apple does not accept debit cards that you bought.

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

  • Flash CC crashes after publishing iOS app + publish settings are not being saved to file

    I have two issues:
    1. Flash CC crashes every time I publish an iOS app
    2. My Publish Settings are not being saved
    1. Flash CC crashes every time I publish an iOS app
    Since yesterday Flash CC keeps crashing right after I publish an iOS app. The app is published correctly though. I tried everything from restarting my MAC, reinstalling Flash, removing the folder "Flash CC 2014" inside Application Support/Adobe. But all this did not work.
    2. My Publish Settings are not being saved
    Since the first day I installed Flash CC, it did not save my publish settings along with the .fla-file. I never had this issue with Flash CS 5.5. This was not a very big issue, but now every time I publish an app and Flash CC crashes I have to fill in all the publish settings manually. Now I'm getting frustrated. Even saving my settings as a preset, storing it inside a folder and importing it again, won't help. Then I will get the message: "Import failed: invalid profile file."
    Can please anyone help me with these issues? It is quite time consuming to continuously enter the settings manually after every crash.
    Thanks!

    reset your preferences -
    after effects:  http://helpx.adobe.com/after-effects/using/preferences.html
    dreamweaver:  https://helpx.adobe.com/dreamweaver/kb/restore-preferences-dreamweaver-cs6-cc.html
    flash:  http://helpx.adobe.com/flash/kb/re-create-preferences-flash-professional.html
    illustrator:  http://helpx.adobe.com/illustrator/using/setting-preferences.html
    indesign:  https://forums.adobe.com/thread/526990
    photoshop:  https://forums.adobe.com/thread/375776
    photoshop elements:  http://www.photokaboom.com/photography/learn/Photoshop_Elements/troubleshooting/1_delete_p references_file.htm
    premiere pro: http://www.mediacollege.com/adobe/premiere/pro/troubleshooter/trash-preferences.html

  • My word documents are not printing

    Hi, my deskjet 2544 will not print word documents. It will print off the internet though.

    Hi,
    Sorry to hear you are having problems printing.
    What device/operating system are you printing from?
    "Although I work for HP, I'm speaking for myself and not on behalf of HP"
    "Say "Thanks" by clicking the Kudos Star in the post that helped you.
    --Please mark the post that solves your problem as "Accepted Solution"

  • My Word documents are not opening from sharepoint

    When I attempt to open a word document from sharepoint it remains stuck at "Downloading: http://intranet/document url"
    Word 2010 and SharePoint 2010
    This occurred when we restored a server after virus issue. Also I noticed that I left one of these word documents in this "downloading state" and the next morning when I opened my station the document was open... therefore it seems to just be taking
    WAY too long to open. 

    Is this SharePoint a stand alone server, where web and database are in the same box ?
    Do you know what steps changed settings from before virus, then, after virus ? Maybe people left the anti-virus running on
    military emergency mode, and it's consuming all server resources.
    You might want to check the database files' sizes, WSS_Content mdf and ldf. Is the ldf way too big ?

  • My Word docs are NOT saving as PDF files.

    I go to "File, Print, PDF, Save as PDF, save doc to my desktop, click Save"...it "processes" then chimes alerting me it's completed, but the PDF is NO WHERE on my desktop (or anywhere on my laptop for that matter!!)
    The interesting thing about this problem ONLY happens when I CREATE that particular Word document. If someone emails me a Word doc and I download it and then open it up in Word, I am then ABLE to save it as a PDF. Soo, I tried emailing the file I created to myself...downloaded it, and tried to save as a PDF, same thing happens as before....no where to be found.
    Helpppp. I am SO frustrated. THANKS

    Okay - could be a bad file or a document with a goofy format, size, or table of contents snafu.
    I had issues with Acrobat 9.x with Word 2010 (Windows).  I stopped using Acrobat and just started doing what you're doing - saving direct from Word > PDF - and haven't had an issue since (other than bloated file sizes even saving as "minimum").
    So my advice is to look at your document.  It could be a TOC thing, or a large image, or something else messing up the engine.
    Remember, Office 2007, 2010, and 2011 all save DOCX as XML files.  So the "converter" (save-as-PDF) is rendering XML > PDF.

  • HT1473 I am attempting to import my CD's but I'm finding some songs and albums are not being accepted.  Any ideas what I'm doing wrong?

    After attempting to import music from CD's I am seeing that some of the tracks are not listed in my iTunes library and in some cases, whole albums are missing.  Any suggestions on what I am doing wrong or how to correct?

    Now that we've established that you have the CD correctly imported into iTunes, we can move on from there.
    Connect the iPod to iTunes. When it shows up as a Device (in the left window of iTunes) select it. You will be looking at the Summary tab (or pane).
    On this pane, my choice is to have the option to Sync only ticked songs and videos selected. I recommend this option for you. This is relevant to the next step.
    At the top of the pane select Music. On this pane, check the options for Syncing. You need to have Sync Music selected and then choose either Selected Playlists (which will only put your choice of Playlists onto your iPod) or Entire Music Library. If you select "Entire Music Library" then all your songs (one exception) will be transferred to your iPod.
    The exception is: if you un-tick a song in your iTunes Library, then at the next Sync, it will be removed from the iPod but kept in your Library.
    Any luck?

  • Avast antivirus page and microsoft web pages are not being loaded

    whenever i try to load www.avast.com or www.microsoft.com i get an error page saying server problem

    whenever i try to load www.avast.com or www.microsoft.com i get an error page saying server problem

  • My edits are not being accepted or saved

    I am having issues with editing a PDF file, scanned from paper hardcopy and then edited in Adobe Acrobat X Pro.  I am able to edit fields either via Content>Edit Text, or also have tried using Recognize Text and OCR Suspects function on this document.  I am able to find the highlighted text I want changed, make the changes by overtyping the values, but, when I the "Accept and Find" button, the old values reappear and my edits do not take or save.  What am I missing?

    You are very likely not using ClearScan as your OCR, but searchable image. The latter will always display the image and not the text that you have edited. At least that is a guess.

  • HT1904 I HAVE SPOKEN WITH APPLE AND THEY HELPED ME AS I HAVE CANCER AND THIS IS MY COMFORT THE VIDEOS HELP TAKE AWAY MY PAIN,NOW THE ID AND PASSWORD ARE NOT BEING ACCEPTED AGAIN IHAVE HAD SAME FOR TWO YRS .

    I am having a problem with loging in to my apps as i have had same id and password for all and for two years . youtube music video's helped get through the pain of cancer and the computer help me conect to my friend then i went to mail and i was recieving nothing my doctors all have same passwords and lawyers ,and it would be hard and i could never remember many password changes as i was fine with   ,now this is second time google caused this problem and said i must change password as i belived again and did with out anyone accepting it .i con not recieve mail, or go to face book,or google search as was my only browser and they will not accept my id as they say it is wrong as does all othe web sites as well as youtube i am at a loss . please help me .   Sincerely Debra Rossi Jones
    <Email Edited by Host>

    We are fellow users here on these public forums, you're not talking to iTunes Support - I've asked the hosts to remove your email addresses and password from your post. If that is your current password that you've posted for everyone to see then you should change it IMMEDIATELY.
    I'm not sure that I understand all of your post. By 'google' do you mean your gmail email accounts ? If you do then how are you trying to access your email, via the Mail app and/or another app on your phone, the Mail program or a browser on your Mac ? If you are using the Mail app on your phone and you've checked your email account's password then you should be able to add that new password on your phone by tapping on the email account in Settings > Mail, Contacts, Calendars, then tap on the 'account' at the top of the next screen, and you should then be able to enter the new password. If you are using the Facebook app on your iPhone, and you've changed the password for logging into Facebook, then you should be able to update it on your phone via Settings > Facebook
    If you are using the Mail app on your Mac, then to change your gmail password in it (assuming that you've changed the password for it) then go into Mail > Preferences (command-comma), select the Accounts tab on the preferences, select the gmail account on the list of accounts, and on the right-hand side of that screen you should be able to update its password.
    If the problems are on your Mac then you might be better off re-posting in one of the other forums (e.g. Safari, and there are forums for various Mac OS X versions), and there is also a Using iPhone forum - this forum is for the iTunes Store e.g. buying, downloading content from iTunes.

  • My Apple ID and password are not being accepted by my iphone?  I have reset and reset these items but to no avail!  Thanks

    I have tried and tried to reset my Apple ID and password and on each web page (under Itunes) it has shown that the information was completely reset and no problems were noticed.  When I have put this information into my iphone 4 in order to download my (now 35) updates, the phone says that the password is not correct.  I have seriously attempted each step of these two processes at least 20 times but to no avail. Please help and thank you all for sharing.

    Maybe the apps were downloaded using a different Apple ID.
    Check using iTunes > Get Info on one of the apps. 

  • Start/End Tags are not being accepted by parse if null.

    The is my database version:
    BANNER
    Oracle Database 11g Enterprise Edition Release 11.2.0.2.0 - 64bit Production
    PL/SQL Release 11.2.0.2.0 - Production
    CORE    11.2.0.2.0      Production
    TNS for Solaris: Version 11.2.0.2.0 - Production
    NLSRTL Version 11.2.0.2.0 - ProductionWe have a new application that pretty much generates the xml tags. The sending system uses two tags even when a NULL value is being sent. However the Oracle parser does not like it. We get this error:
    ORA-31011: XML parsing failed
    ORA-19202: Error occurred in XML processing
    LPX-00231: invalid character 47 ('/') found in a Name or Nmtoken
    Error at line 1When I receive a list of parameters as a clob, I then cast it as xml for processing. When I use a tag like <phase/>, the xml parser accepts it. However, when I put into the format being sent <phase></phase> to signify a NULL value. The following is the code snippet that generates the error.
    vXmlDoc := XMLTYPE(pSearchParams_Tx);My question is there any way to allow the xml parser to accept the default format that is being sent in? Perhaps is the some sort of pre-processing that would allow the sent in format to be used? Thank you.

    I'm not sure I follow fully. I don't have 11.2.0.2 to test against, but I do not encounter any issue with this simple example
    Connected to Oracle Database 11g Enterprise Edition Release 11.2.0.3.0
    SQL> set serveroutput on;
    SQL>
    SQL> declare
      2    pSearchParams_Tx   CLOB;
      3    vXmlDoc            XMLTYPE;
      4  begin
      5    pSearchParams_Tx := '<phase/>';
      6    vXmlDoc := XMLTYPE(pSearchParams_Tx);
      7    dbms_output.put_line('Done 1');
      8    pSearchParams_Tx := '<phase></phase>';
      9    vXmlDoc := XMLTYPE(pSearchParams_Tx);
    10    dbms_output.put_line('Done 2');
    11  end;
    12  /
    Done 1
    Done 2
    PL/SQL procedure successfully completed I get the same thing on 11.1.0.6 as well.
    Do you have a code example that demonstrates the error?

Maybe you are looking for

  • Can't enroll device for user and this user account is not authorized to use Windows Intune.

    Hello, We have SCCM 2012 R2 inegrated with intune via an intune subscription. When I enroll a device with my admin account there are no problems, but when I want to add it with another user account which is a member of the Intune users collection, it

  • Possible Scenarios where we can use OS command of file adapter

    Hi all, I would like to know the possible scenarios in which we can use the OS command feature in file adapter,I have tried zipping the file,copying the file,unzipping the file using this option.Any other inputs on this feature are appreciated. Thank

  • Namespace change

    Hi All, The WSDL generated by OPA has the default namespace of http://oracle.com/determinations/server/10.4/rulebase/assess/types. I needed to change the namespace to a custom value like http://<service_name>/<version_number>. The velocity template u

  • Can the Creative Cloud Mac app stop requiring dedicated graphics?

    I use Creative Cloud on my MacBookPro6,2, which has the ability to switch between dedicated (GeForce GT 330M) and integrated graphics as needed. Using the gfxCardStatus app, I can see whether the dedicated card is in use, and by which apps/processes.

  • My photoshop trial expired when I still have 26 days left?

    I was working on my photoshop this morning after it asked me to update photoshop cc 2014. After I did my update my program would open but would not let me open any files onto it to edit. So I figured I could just uninstall and reinstall, which I did.