Unable to rename document name on ItemAdded event programmatically

Hi,
I have developed a Event Receiver on Item Added event basically to update the document name after document gets uploaded to SharePoint Library.
I have developed below code but its getting failed at on Item.Update(); function call. Referred this
MSDN Blog.
public override void ItemAdded(SPItemEventProperties properties)
           base.ItemAdded(properties);
           try
               SPListItem item = properties.ListItem;
               string draftAuthor = item["Author"].ToString();
               int index = draftAuthor.IndexOf("#");
               string finalAuthor = draftAuthor.Substring(index+1, draftAuthor.Length-index-1);
               updatedTitle = "My Dashboard- "+  finalAuthor;
               item.File.CheckOut();
               item["Name"] = updatedTitle;
item.Update(); // Getting failed here
               item.File.CheckIn("File has been renamed");
           catch (Exception ex)
               string error = "Error in event overriding : " + ex.ToString();
               myLog.Source = "My Dashboard Extension";
               myLog.WriteEntry(error, EventLogEntryType.Error, 4700);
Getting below error
Error in event overriding : Microsoft.SharePoint.SPException: Invalid data has been used to update the list item. The field you are trying to update may be read only. ---> System.Runtime.InteropServices.COMException (0x80020005): <nativehr>0x80020005</nativehr><nativestack></nativestack>Invalid
data has been used to update the list item. The field you are trying to update may be read only.
Please suggest me how can I make this piece of code work.
Thanks !!!

Hi,
We should use the MoveTo method to rename the file name. The following code snippets for your reference.
base.ItemAdded(properties);
properties.ListItem["Title"] = properties.ListItem.File.Name;
properties.ListItem.Update();
SPFile file = properties.ListItem.File;
// Get the extension of the file. We need that later.
string spfileExt = new FileInfo(file.Name).Extension;
// Rename the file to the list item's ID and use the file extension to keep
// that part of it intact.
file.MoveTo(properties.ListItem.ParentList.RootFolder.Url +
"/" + properties.ListItem["ID"] + spfileExt);
// Commit the move.
file.Update();
Thanks & Regards,
Jason
Jason Guo
TechNet Community Support

Similar Messages

  • Unable to rename calendar/name new calendar "Personal"

    Hello.
    I have a calendar that I'd like to rename to "Personal". I'm unable to do it. I can rename calendars to anything else, and I can create new calendars. But the name "Personal" seems to be reserved. Is this by design? is there something I can do to override this?
    Thanks.

    Welcome to the Apple Discussions. Close iWeb, delete the iWeb preference file, com.apple. iWeb.plist, that resides in your User/Library/Preferences folder, relaunch iWeb and try again. Also repair disk permissions if you haven't done so already.
    OT

  • Unable to rename place names

    hope someone can help here, I have just imported a bunch of photos into iPhoto 11 which were pre-geotagged and now after importing iPhoto will not rename the place names from.
    I have some pics taken in an old house which I tagged, the pin says england so I rename the place hit return it just goes back to England.  I tried typing the place name again and this time clicked (renaming current place) and still the same, I checked manage my places but I only currently have one which has been auto added into there so I cant even rename the place name there either.
    anyone able to help?

    I have a similar problem with iPhoto '11 (9.2.1). According to the help files, one is supposed to be able to highlight a photo, open the info panel and assign a place by typing in a place name or set of coordinates. It does not work as advertised.
    Often I will want to drop a pin on a location that is not associated with a known street address (a spot on a hiking trail for example), or I will want to edit the location and lable for a misplaced pin. Unfortunately, iPhoto '11 has a serious bug that prevents one from editing pin positions and location lables. And when one clicks on a misplaced or mislabled pin, instead of the pin head turning yellow and revealing a lable editing field, the pin head remains red and offers no opportunity to edit the lable.
    Even the Geniuses I've consultted at the Apple Store are stumped by this. Unfortunately, Apple HQ is not very forthcoming about acknowledging bugs. Will this bug get fixed, who knows? It could be they won't throw any resources at the problem until the next major revision of the software. When will that be? Who knows? Apple's not talking about it.
    Very frustrating for a user, isn't it.

  • KB fix for print document name in event logs on Server 2012 and Server 2012R2

    It appears as though the requested corrections to the documentation where never honored
    Note After you apply the hotfix or update, you can show the printed document name in the event by enabling a specific Group Policy.
    The policy name:
    Computer Configuration \ Administrative Templates \ Printers
    Allow job name in event logs 
    The Windows 8 / Server 2012 fix is:
    Event ID 307 does not show the printed document name in Windows
    http://support.microsoft.com/kb/2938013/en-us
    2012R2 is in the April Roll up.
    Windows RT 8.1, Windows 8.1, and Windows Server 2012 R2 Update: April 2014
    http://support.microsoft.com/kb/2919355/en-us
    Alan Morris Windows Printing Team

    In my simple test, I see that the Group-Policy does exist on 2012R2 but not for 2012.
    I isolated the registry changes so I can update a 2012 only system... that text is below.
    Windows Registry Editor Version 5.00
    [HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Policies\Microsoft\Windows NT\Printers]
    "ShowJobTitleInEventLogs"=dword:00000001
    [HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows NT\Printers]
    "ShowJobTitleInEventLogs"=dword:00000001
    I hope this helps others out since it took sometime to narrow this down. Thank you.

  • Sharepoint 2013 ItemAdded event receiver for renaming files is not working

    In SP 2013 I coded an event receiver that intercepts the ItemAdded event and it just renames the file.
    It is a synchronous event (I added <Synchronization>Synchronous</Synchronization> in the Elements.xml).
    This is the code:
            public override void ItemAdded(SPItemEventProperties properties)
                SPSecurity.RunWithElevatedPrivileges(delegate()
                    try
                        OutputDebugStringA("Inside ItemAdded");
                        string szHttpUrl = properties.WebUrl + "/" + properties.AfterUrl;
                        SPWeb openedWeb = properties.Web.Site.OpenWeb(properties.Web.ID);
                        SPFile spf = openedWeb.GetFile(szHttpUrl);
                        EventFiringEnabled = false;
                        string szUrl = properties.AfterUrl;
                        szUrl = szUrl + ".renamed";
                        string szNewFileName;
                        if (szUrl.LastIndexOf('\\') != -1) szNewFileName = szUrl.Substring(szUrl.LastIndexOf('\\') + 1);
                        else if (szUrl.LastIndexOf('/') != -1) szNewFileName = szUrl.Substring(szUrl.LastIndexOf('/') + 1);
                        else szNewFileName = szUrl;
                        if (properties.ListItem != null)
                            properties.ListItem["Title"] = szNewFileName;
                            properties.ListItem.Update();
                        spf.MoveTo(szUrl);
                        EventFiringEnabled = true;
                        base.ItemAdded(properties);
                        OutputDebugStringA("Renaming to " + szUrl);
                    catch (System.Exception exception)
                        OutputDebugStringA("ItemAdded ERROR: " + exception.ToString());
    The problem is that when I upload a .txt file using Internet Explorer, just after the renaming is done, IE says that something went wrong and when I inspect the log files I see:
    SPRequest.GetFileAndFolderProperties: UserPrincipalName=i:0).w|s-1-5-21-4050800873-4278272723-3073177257-500, AppPrincipalName= ,bstrUrl=http://sp2013/sites/demo/subsite1 ,bstrStartUrl=Shared Documents/test2.txt ,ListDocsFlags=16400 ,bThrowException=True 0fa7689c-674b-5045-c3a2-b214a5d4cbed
    01/09/2014 15:29:26.75  w3wp.exe (0x1544)                        0x16F4 SharePoint Foundation        
     General                        ai1wu Medium   System.IO.FileNotFoundException: <nativehr>0x80070002</nativehr><nativestack></nativestack>,
    StackTrace:    at Microsoft.SharePoint.SPWeb.GetFileOrFolderProperties(String strUrl, ListDocsFlags listDocsFlags, Boolean throwException, SPBasePermissions& permMask)     at Microsoft.SharePoint.SPFile.PropertiesCore(Boolean
    throwException)     at Microsoft.SharePoint.SPFile.get_Length()     at Microsoft.Office.RecordsManagement.PolicyFeatures.ApplicationPages.UploadPage.OnSubmit(Object o, EventArgs e)     at Microsoft.Office.RecordsManagement.PolicyFeatures.ApplicationPages.UploadExPage.OnSubmit(Object
    o, EventArgs e)     at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)     at System.Web.UI.Page.ProcessRequest(Boolean includeSta... 0fa7689c-674b-5045-c3a2-b214a5d4cbed
    ...gesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)     at System.Web.UI.Page.ProcessRequest()     at System.Web.UI.Page.ProcessRequest(HttpContext context)     at System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()    
    at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)     at System.Web.HttpApplication.PipelineStepManager.ResumeSteps(Exception error)     at System.Web.HttpApplication.BeginProcessRequestNotification(HttpContext
    context, AsyncCallback cb)     at System.Web.HttpRuntime.ProcessRequestNotificationPrivate(IIS7WorkerRequest wr, HttpContext context)     at System.Web.Hosting.PipelineRuntime.ProcessRequestNotificationHelper(IntPtr
    rootedObjectsPointer, IntPtr nativeRequestContex... 0fa7689c-674b-5045-c3a2-b214a5d4cbed
    ...t, IntPtr moduleData, Int32 flags)     at System.Web.Hosting.PipelineRuntime.ProcessRequestNotification(IntPtr rootedObjectsPointer, IntPtr nativeRequestContext, IntPtr moduleData, Int32 flags)     at System.Web.Hosting.UnsafeIISMethods.MgdIndicateCompletion(IntPtr
    pHandler, RequestNotificationStatus& notificationStatus)     at System.Web.Hosting.UnsafeIISMethods.MgdIndicateCompletion(IntPtr pHandler, RequestNotificationStatus& notificationStatus)     at System.Web.Hosting.PipelineRuntime.ProcessRequestNotificationHelper(IntPtr
    rootedObjectsPointer, IntPtr nativeRequestContext, IntPtr moduleData, Int32 flags)     at System.Web.Hosting.PipelineRuntime.ProcessRequestNotification(IntPtr rootedObjectsPointer, IntPtr nativeRequestContext, IntPtr moduleData, Int32 flags) 
     0fa7689c-674b-5045-c3a2-b214a5d4cbed
    So it is clear that the fact that I renamed the file is causing an issue in the SharePoint upload logic.
    As a solution what I did was to not declare it as Synchronous, but if I do it then there is another error when Sharepoint shows the Edit Properties dialog... in this case the upload is OK but when it is time to show that Edit Property dialog IE fails and
    says that the file has been already modified, or that "something went wrong".
    If I use a synchronous event I get one problem. If I use the asynchronous event I get another problem... It's very frustating and I am pretty sure that a so important API like Event Receivers should have support renaming files so I hope someone can tell
    me what I am doing wrong.
    Thanks in advance

    May be you want to consider using the following code and see if it works for you.
    http://social.msdn.microsoft.com/Forums/sharepoint/en-US/40c78e03-2dca-4083-89d2-a7430099da68/how-do-i-change-the-name-property-of-a-file-in-a-document-library?forum=sharepointdevelopment
    Amit

  • Change document name in event receiver

    I need to rename a document during an ItemUpdating or an ItemUpdated event. Either one would be fine. When my user changes the file name, I want my code to set it to something else. In the examples below, I am trying to set it to a silly constant value.
    If I can get this to work, I'll change it to use something meaningful.
    Is there any way to change a document's name in an event receiver? I have tried using ItemUpdated (with <Synchronization>Synchronous</Synchronization> in elements.xml). I have tried this:
    public override void ItemUpdated(SPItemEventProperties properties)
    using (DisabledEventsScope scope = new DisabledEventsScope())
    base.ItemUpdated(properties);
    try
    properties.Web.AllowUnsafeUpdates = true;
    properties.ListItem.File.Properties["FileLeafRef"] = "FOOFOO.docx";
    properties.ListItem.File.Update();
    properties.Web.AllowUnsafeUpdates = false;
    catch (Exception ex)
    properties.ErrorMessage = "Document cannot be renamed." + ex.Message;
    properties.Status = SPEventReceiverStatus.CancelWithError;
    //base.ItemUpdated(properties);
    I have also tried this:
    public override void ItemUpdated(SPItemEventProperties properties)
    using (DisabledEventsScope scope = new DisabledEventsScope())
    base.ItemUpdated(properties);
    try
    properties.Web.AllowUnsafeUpdates = true;
    properties.AfterProperties["FileLeafRef"] = "FOOFOO.docx";
    properties.ListItem.Update();
    properties.Web.AllowUnsafeUpdates = false;
    catch (Exception ex)
    properties.ErrorMessage = "Document cannot be renamed." + ex.Message;
    properties.Status = SPEventReceiverStatus.CancelWithError;
    //base.ItemUpdated(properties);
    And in that last one, I also tried setting properties.ListItem["FileLeafRef"]. I have also tried putting the base.ItemUpdated line after my logic (where you see it commented out above).
    Nothing works. No errors are thrown, but the document name stays the way the user set it.
    Leigh Webber

    There's three things you have to do in order to update the name properties:
    Assign properties.ListItem to a variable
    Update the BaseName field
    Update the Type field (if you wish to change the extension)
    public override void ItemUpdated(SPItemEventProperties properties)
    EventFiringEnabled = false;
    base.ItemUpdated(properties);
    var item = properties.ListItem; item["BaseName"] = "BarBar";
    item["Type"] = "docx"; //If you need to change the extension
    item.Update();
    EventFiringEnabled = true;
    This should fix your issue

  • Server 2012 Event 307 - Printed Document Name

    I created a printer monitoring system that pulls events from the event logs of a server and then compiles this information into reports.  I can tell how many pages printed per printer for a period of time, I can tell what users are my highest printers
    and once in awhile for some reason I would actually review what was printed.
    I use this data to determine when another printer is needed or not needed.  I used the printed document name to justify not replacing a $5000 color laser printer. because they printed personal stuff more than business. 
    This process worked great until I installed Windows Server 2012, and I have tested this on Windows 8 and have the same result. (I only care about the server though.  ;) )
    In the event log: Microsoft-Windows-PrintService/Operational
    In server 2003, event 10: Had printed document name
    Server 2008 and Server 2008 R2: Had printed document name. 
    Why is this no longer there, or was this an oversight? 
    I asked this at TechEd and there was not a Microsoft person there who could answer my question and they referred me to the forums.  Can someone tell me what I can do to turn this on, was this an oversight, bug, etc.
    -------------------------------------------------- Michael Moore, MBA, MCITP, MCSE, MCTS, MCSA, MCP.

    Hi,
    What are the models of your printers?
    I would like to confirm that have you update the printer drivers from the printer manufacturer for Windows Server 2012?
    In addition, if you have Windows Server 2003, 2008, and 2012 in the same envirment? If so, you may try to get the event information from the previous operating system.
    Regards,
    Arthur Li
    TechNet Subscriber Support
    If you are
    TechNet Subscriptionuser
    and have any feedback on our support quality, please send your feedback here.
    Arthur Li
    TechNet Community Support

  • For four days I have been unable to open a lot of documents. When I try I get a message "The document "name" could not be opened. You don't have permission. This has happened to an important letter which I corrected four times. My Mac has altered the name

    This problem began when I typed in an address http www etc., making one mistake in the address. I corrected it and then tried to copy the address because it was long (I wanted to be able to acces it another time), and that's when the trouble starrted. I just copt documents to get a new one because it's quicker, but it is unorthodox, I know. Since then whenever I copy a document i cannot open it, and it often puts a gobledegook ending to the document name. I've started emailing texts to myself so as to keep them, but I MUST be able to use documents normally. I hava a MacBook Pro, using OS Mountain Lion 10.8.5. I don't like it. It's fairly new, and has messed up my system of documents : the size is alll wrong and the tabulations are worse than ever. I use text edit because I wanted to use Macdictate because I am handicapped (arthritis and firbomyalgia) but I have never been able to get it to work. Since I changed OS I cannot use Text edit properly any more. Please help me. I think it must be a bug that came through when I was putting this address in four days ago. I went to the site once I'd corrected the address and it was perfectly normal. I shall ring them today and ask them if this has happened to anyone else. I live in France. Thank you for your advice. Because I am handicapped and I do not dirve, it is very difficult to get to a Mac store. I deleted Mac cloud documents because I don't want to use it and I thought it might solve the problem, but it didn"t.

    Back up all data.
    This procedure will unlock all your user files (not system files) and reset their ownership and access-control lists to the default. If you've set special values for those attributes on any of your files, they will be reverted. In that case, either stop here, or be prepared to recreate the settings if necessary. Do so only after verifying that those settings didn't cause the problem. If none of this is meaningful to you, you don't need to worry about it.
    I've tested these instructions only with the Safari web browser. If you use another browser, they may not work as described.
    Step 1
    If you have more than one user account, and the one in question is not an administrator account, then temporarily promote it to administrator status in the Users & Groups preference pane. To do that, unlock the preference pane using the credentials of an administrator, check the box marked Allow user to administer this computer, then reboot. You can demote the problem account back to standard status when this step has been completed.
    Triple-click anywhere in the following line on this page to select it. Copy the selected text to the Clipboard (command-C):
    { sudo chflags -R nouchg,nouappnd ~ $TMPDIR.. ; sudo chown -R $UID:staff ~ $_ ; sudo chmod -R u+rwX ~ $_ ; chmod -R -N ~ $_ ; } 2> /dev/null
    Launch the Terminal application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Terminal in the icon grid.
    Paste into the Terminal window (command-V). You'll be prompted for your login password. Nothing will be displayed when you type it. You may get a one-time warning to be careful. If you don’t have a login password, you’ll need to set one before you can run the command. If you see a message that your username "is not in the sudoers file," then you're not logged in as an administrator.
    The command will take a noticeable amount of time to run. Wait for a new line ending in a dollar sign (“$”) to appear, then quit Terminal.
    Step 2 (optional)
    Take this step only if you have trouble with Step 1 or if it doesn't solve the problem.
    Boot into Recovery. When the OS X Utilities screen appears, select
    Utilities ▹ Terminal
    from the menu bar. A Terminal window will open.
    In the Terminal window, type this:
    res
    Press the tab key. The partial command you typed will automatically be completed to this:
    resetpassword
    Press return. A Reset Password window will open. You’re not going to reset a password.
    Select your boot volume ("Macintosh HD," unless you gave it a different name) if not already selected.
    Select your username from the menu labeled Select the user account if not already selected.
    Under Reset Home Directory Permissions and ACLs, click the Reset button.
    Select
     ▹ Restart
    from the menu bar.

  • Unable to change the name of events in iPoto 08

    Hi.
    I have iPhoto 08, and at first it was fine. But when I transferred my photos from my nikon d40 to my iPod, and then to my iMac from the iPod, i weren´t able too change the name of the events anymore.
    This is very anoying. Hope someone can help me with this.
    Frode

    Frode K
    Welcome to the Apple Discussions.
    Make sure that the HelveticaNeue Font is installed and enabled on your system.
    Regards
    TD

  • Unable to change any file or document name in Finder

    Can someone help me with following problem.
    Using Finder I am not able to change any folder or document name.
    Thus creating a "new folder" I even can not change that name!
    Thank you,
    Dorothee

    Move com.apple.finder.plist file from /Users/username/Library/Preferences/ to the Desktop, OPTION-click and hold the Finder's Dock icon, and select Relaunch. Note that this requires resetting Finder preferences. See if this fixes the issue.

  • Unable to rename objects

    In the OMWB, I am unable to rename objects. For example, in the Source Model under the Views folder, I have a view whose name is 100 characters long. I want to rename it to a 30 character name (something meaningful and not system generated.) The on-line help says to use the menu to click on Object > Rename, but that is grayed-out. The only available options are delete and parse. Both of those work, by the way.
    I just downloaded and installed OMWB last Thursday, so this is latest version of software. I also got the SQL Server 2000 plug-in, and it's installed correctly because I have been successful at migrating SQL Server 2000 to Oracle 10g.

    Hi Mark,
    You are quiet correct. The OMWB does not allow you to rename schema objects in the Source Model. The only objects which can be renamed manually are tablespaces and users in the Oracle Model.
    The workaround is to rename the view inside the Oracle Model PL/SQL editor. Then your view with get generated with the choosen name.
    I have found the following in the OMWB help
    "You can customize the Oracle Model by: Creating, deleting, and renaming objects "
    This will be logged as a bug as not all objects can be renamed. Could you provide a link to the on-line help document which states "click on Object > Rename" as I am having difficulty finding it, and I will add this to the bug report.
    Regards,
    Dermot.

  • Unable to rename folders and files on SharePoint mapped drive.

    I just installed a fresh copy of Windows 7 and have mapped a drive to my SharePoint "Shared Documents" folder.  I am able to open, save, and delete files and folders.  However, I am unable to rename files and folders.  No matter how long of
    short of a name I use I get the following error:
    "The file name you specified is not valid or too long.  Specify a different file name."
    I've mapped the "S" drive to http://hostname.domain.com/Shared Documents/
    I am a SharePoint Admin, and have confirmed that if I do not have this problem if I log into SharePoint with IE.  I have also confirmed that others are not experiencing this issue. Also, this issue did not exist on my previous installation of Windows
    7.  Therefore I assume this is a config issue.
    Also, in "My Computer" it shows the mapped SharePoint drive as a "FAT" filesystem.

    Did some more testing. From my mapped drive, I can create new folders and files, and delete them.  I created a folder in Windows Explorer, when I tried to give a name it gave me the above error and saved the folder as "New Folder".  No matter when
    I try, I cannot rename this folder unless I log into the SharePoint interface.
    Next, I tried this from the command line.  I moved to my S drive, and did a "mkdir test" and was able to create a folder named test.  Next I tried to "rename test testing" and received the following error:
    The filename, directory name, or volume label syntax is incorrect.
    The full path is S:\test.  If I do a "mkdir testing" I am able to create the folder.  If I try to rename the folder in Explorer, it gives me the "file name not valid or too long".  I'm obviously well under the 260 character limit, so there
    has to be something wrong with the fiel name, or drive mapping.
    Also, when I "dir" the S drive it tells me the drive has no label.  "Volume in drive S has no label."
    I'm having the same issue with files. I can create a file, modify it, delete it, but can't rename it.

  • How to open a Numbers doc after message "The document (name) could not be opened." is received?

    I opened an Excel file with multiple worksheets by doubleclicking on it, saved it as a Numbers file and made lots of changes to it. Now I can't open it at all. All I get is the message "The document (name) could not be opened."
    Any ideas?

    It seems that your doc is corrupted.
    Try to rename it from ********.numbers to ********.numbers.zip
    then double click it
    You will get a new ********.numbers file with the structure 'package'.
    Try to open it by double-click.
    Sometimes it works.
    Yvan KOENIG (VALLAURIS, France) jeudi 22 décembre 2011 13:16:28
    iMac 21”5, i7, 2.8 GHz, 12 Gbytes, 1 Tbytes, mac OS X 10.6.8 and 10.7.2
    My iDisk is : <http://public.me.com/koenigyvan>
    Please : Search for questions similar to your own before submitting them to the community

  • Unable to open document. Please check to see if you have read permission for the above file.

    System:
    Adobe Acrobat X Pro, 10.1.2
    Windows 7 Enterprise, 32-bit
    Quad Core badass CPU
    4GB RAM
    MS Word 2010 (Office 2010)
    I installed the latest version as Administrator and am running as Administrator. I have all rights to all files on the PC.
    When I attempt to create a PDF from any Word document, whether .DOC or .DOCX, I get an error window every time:
    "Unable to open document:"
    "[document location]"
    "Please check to see if you have read permission for the above file."
    This happens after the little notice pops up "Starting the application which created the document...."
    If I open Word and create PDF from the ribbon, it works. It still won't allow me to create from Acrobat.
    It creates PDFs from Excel files but not DOC files. I've searched for solutions but found none. I did find this from July of 2011:
    "I have found out from Adobe technical support that this is a known issue with Office 2010 SP1 installed. This is an FYI for anyone else experiencing this issue, remove SP1 and it will work ok. They said an update to correct this issue will be coming within the next quarter."
    I have updated to the latest version 10.1.2 and still have this problem.
    This is a major issue, because it also fails on batch conversions, which is what I really need for the 100 or so documents that need to be PDFed. I'm not going to open each individual file and save each one from within Word.
    This is a KNOWN ISSUE at Adobe, and if you look through the forums you'll find many people having this problem, and so far, I have not seen any solution.
    If anyone has found the solution, please post it here.
    Thanks!
    B

    I think I found a solution. It seems to be relatet to normal.dotm.
    In our environment we have upgraded from XP & Office 2003 to Win7 and Office 2010. Normal.dot is stored on the users home share. When Office 2010 is started for the first time (for a user) it takes some of the old stuff from normal.dot and puts it in the new normal.dotm. When this happens, we get this error in Acrobat X.
    The solution is to rename both normal.dot and notmal.dot to e.g. normal.dot.old and normal.dotm.old. Office/Word 2010 will then create a new, "clean" normal.dotm.
    (By the way, if you are in a corporate environment, you might have changed the default path to normal.dot in Office group policies. You can see it here: HKEY_CURRENT_USER\Software\Policies\Microsoft\office\14.0\common\general\usertemplates)
    I would be interested in knowing exactly why/what in normal.dotm caused this error. I can provide you (Adobe) with a faulty normal.dot(m), if you're interested.

  • TS4009 The document "Name" could not be opened. (Numbers file @ iCloud)

    I have a file saved at iCloud that can not be opened anymore.
    Numbers says: The document “Name” could not be opened.

    I've solved my problem by following instructions here:
    http://www.freeforum101.com/iworktipsntrick/viewtopic.php?t=308&mforum=iworktips ntrick
    Step-by-step:
    1. renamed .numbers-tef file to .pdf;
    2. control cliked - then - Show Package Contents
    3. double clicked index.xml.gz - index.xml has been created!
    4. renamed back .pdf to .numbers
    5. double cliked file and Bingo! Numbers opened the file.

Maybe you are looking for