The Document Information Panel was unable to load.

Platform: SharePoint 2013, Office 2013.
Background: When you open an Office document from SharePoint users get this error:
The Document Information Panel was unable to load. The document will continue to load. For more information, contact your system administrator."
"The form cannot be opened. To fix this problem, contact the form designer. Form template:
http://<site address>/../proppanel.xsn. The XML Schema for the form template has an invalid value for the following attribute: location." 
I tried running this fix: http://www.cb-net.co.uk/microsoft-articles/2063-sharepoint-2010-templates-and-document-information-panel-errors, but it kept saying that it couldn’t see the url that
I specified (I did check this carefully); think it might only apply to SharePoint 2010 – perhaps the shell syntax is different in 2013.
Can anyone help me out?

Hi Alex,
According to your description, my understanding is that the error occurred when opening a document from SharePoint.
Is this document information panel customized?
I recommend to re-edit the document information panel template to see if the issue still occurs.
Please go to the Library setting > click the corresponding content type(need to enable managed of content types in Advanced settings) > click Document Information Panel settings.
If the issue still occurs, please check if the command below can help(change the site URL and the library name in the code):
Apply-Fix -siteUrl "http://your site URL "
function Apply-Fix($siteUrl)
clear
Add-PSSnapin "Microsoft.SharePoint.Powershell" -ErrorAction SilentlyContinue # -EA 0
[Environment]::CurrentDirectory=(Get-Location -PSProvider FileSystem).ProviderPath
foreach ($spwTarget in (Get-SPSite $siteUrl).RootWeb.Webs) {
Write-Host "Checking Web: " $spwTarget.Url
$list = $spwTarget.Lists["your library name"]
$fields = $list.fields
foreach($field in $fields)
if($field.SourceId -eq '{$ListId:your library name;}')
$schemaxml = $field.SchemaXML
$schemaxmldata = [xml]$schemaxml
$schemaxmldata.Field.SetAttribute("SourceID", $list.ID)
$schemaxml = $schemaxmldata.get_InnerXml()
$field.SchemaXML = $schemaxml
$field.Update()
Write-Host "Fixed" $field.Title "field in the library"
Write-Host "Done."
Best regards.
Thanks
Victoria Xia
TechNet Community Support

Similar Messages

  • The Document Information Panel was unable to load. The document will continue to open ?

    I am using Sharepoint 2010; DIP in microsoft word all the while is working fine, not sure why suddenly it came out the following error when save word doc  into sharepoint.
    ERROR MESSAGE
    ===========
    "The Document Information Panel was unable to load. The document will continue to open.
    The form contains schema validation errors.
    Content for element 'documentManagement' is incomplete according to the DTD/Schema. "
    How to troubleshoot? Recently I added lookup column and a workflow into the library, but I did the same thing in another library which never appear to have any issue on it.

    The lookup column is creating the problem , you can find powerscript solution to fix this issue , please check this -
    Fix through Powershell
    http://blogs.msdn.com/b/tehnoonr/archive/2012/05/17/sharepoint-2010-document-information-panel-fails-to-load-when-office-documents-are-opened-in-a-library-that-contains-lookup-columns.aspx
    Fix through Code
    https://social.msdn.microsoft.com/Forums/office/en-US/2a4d6d10-d1d5-4d6a-a22b-62dfb6b60685/lookup-field-creation-and-document-information-panel?forum=sharepointdevelopmentlegacy
    or try this -
    https://social.technet.microsoft.com/Forums/office/en-US/2552fbc8-da24-4d2b-84f6-d39c4d58b137/the-document-information-panel-was-unable-to-load-the-document-will-continue-to-open-for-more?forum=sharepointgeneralprevious
    1. Open this location- C:\Program
    Files\Microsoft Web Designer Tools\Office12\1033\IPEDINTL.DLL
    2. copy IPEDINTL.DLL
    3. paste it here- C:\Program Files\Microsoft
    Office\Office12\1033\IPEDINTL.DLL
    4. Close all the applications that are presently
    open as well as all the browsers
    5. Open the sharepoint site in a new browser
    and check the results !!
    Thanks
    Ganesh Jat [My Blog |
    LinkedIn | Twitter ]
    Please click 'Mark As Answer' if a post solves your problem or 'Vote As Helpful' if it was useful.

  • The document information panel was unable to load. the document will continue to open. For more information, contact your system adminsitrator.

    Hi Guys,
    I am creating the library using object model with custom content type.  When i am opening document from custom content type, the meta data fields are not displaying in the document and throwing below error.
    The document information panel was unable to load. the document will continue to open. For more information, contact your system adminsitrator.
    Document Information Panel cannot open a new form.
    The form contains schema validation errors.
    Content for element '{http://schemas.microsoft.com/office/2006/metadata/propertiesRoot}properties' is incomplete according to the DTD/Schema.
    Expecting: {http://schemas.microsoft.com/office/2006/metadata/properties}properties.
    But after saving the document, then meta data is enabled.
    Thanks in advance for suggested solutions.
    thanks
    Santhosh G

    Hi,
    For a better troubleshooting, I suggest to do as follows:
    1. Please try to update the Location column's schema by following the steps below.
     1) Go to Site Settings -> "Site Columns"
     2) Click on "Location", after the page is opened. Don't modify any settings, click "OK"  to forcibly update the field's schema.
    2. Re-edit the document information panel template to see if the issue still occurs.
    Please go to the Library setting > click the corresponding content type(need to enable managed of content types in Advanced settings) > click Document Information Panel settings.
    3. Here are some similar links about your issue, please take some time to look at them:
    http://social.msdn.microsoft.com/Forums/en-US/sharepointcustomizationlegacy/thread/243b4852-3f17-4a3a-b6d7-187d65a5f088/
    http://blogs.msdn.com/b/raresm/archive/2010/03/30/document-information-panel-cannot-open-the-form.aspx
    https://joranmarkx.wordpress.com/2012/02/10/sharepoint-document-information-panel-cannot-create-a-new-blank-form/
    If the issue still occurs, please check if the command below can help(change the site URL and the library name in the code):
    Apply-Fix -siteUrl "http://your site URL "
    function Apply-Fix($siteUrl)
    clear
    Add-PSSnapin "Microsoft.SharePoint.Powershell" -ErrorAction SilentlyContinue # -EA 0
    [Environment]::CurrentDirectory=(Get-Location -PSProvider FileSystem).ProviderPath
    foreach ($spwTarget in (Get-SPSite $siteUrl).RootWeb.Webs) {
    Write-Host "Checking Web: " $spwTarget.Url
    $list = $spwTarget.Lists["your library name"]
    $fields = $list.fields
    foreach($field in $fields)
    if($field.SourceId -eq '{$ListId:your library name;}')
    $schemaxml = $field.SchemaXML
    $schemaxmldata = [xml]$schemaxml
    $schemaxmldata.Field.SetAttribute("SourceID", $list.ID)
    $schemaxml = $schemaxmldata.get_InnerXml()
    $field.SchemaXML = $schemaxml
    $field.Update()
    Write-Host "Fixed" $field.Title "field in the library"
    Write-Host "Done."
    More information:
    SharePoint 2010: Creating a Custom Content Type using Visual Studio
    http://www.codeproject.com/Articles/410880/SharePoint-Creating-a-Custom-Content-Type-usi
    Thanks,
    Dennis Guo
    TechNet Community Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected].
    Dennis Guo
    TechNet Community Support

  • Error: "The document information panel was unable to load"

    Hello,
    I have created a custom document content type that uses a specified word template for a sharepoint document library for contracts and offers, and added a few custom columns in the document library as well. The word template launches succesfully when creating a new item in the document library, but the problem arises when I add custom columns to the word template content type. When the document loads in Word, I get the following error: "The Document Information Panel was unable to load. The document will continue to open. For more information, contact your system administrator." And in details:
    "Document Information Panel cannot create a new, blank form.
    Document Information Panel cannot open the form. To fix this problem, contact your system administrator.
    Form template: http://servername/sitename/proppanel.xsn
    The following DataObject either cannot be created or cannot be initialized: list_033AA217-8906-447E-A604-A300F51D4030
    Document Information Panel cannot add the following object to the DataObjects collection: list_033AA217-8906-447E-A604-A300F51D4030
    list_033AA217-8906-447E-A604-A300F51D4030 could not be added to the DataObjects collection.
    The following item already exists in the collection: list_033AA217-8906-447E-A604-A300F51D4030"
    Interestingly enough, I have two web applications running on the same server that I have tried to implement this on, and on the other it works flawlessly, meaning that the Document Information Panel launches successfully and I can edit the columns associated with that content type and store the values in a document library. I have also tried to save the DIP template from the working web application and use it as the default DIP template on the other application, but that doesn't work either.
    I have also tried to browse through all options and configurations in the application settings in CA and SSP, but to no avail. Any suggestions about what might be causing this problem or how to fix it would be greatly appreciated.
    - Sebastian Eriksson

    Hi All,
    I have the same problem with my DIP in already two of my document libraries. Please see below:
    Document Information Panel cannot create a new, blank form.
    Document Information Panel cannot open the form. To fix this problem, contact your system administrator.
    Form template: http://servername/sitename/proppanel.xsn
    The following DataObject either cannot be created or cannot be initialized: list_295E77CD-1C08-4DDC-A188-F86107F9BF60
    Document Information Panel cannot add the following object to the DataObjects collection: list_295E77CD-1C08-4DDC-A188-F86107F9BF60
    list_295E77CD-1C08-4DDC-A188-F86107F9BF60 could not be added to the DataObjects collection.
    The following item already exists in the collection: list_295E77CD-1C08-4DDC-A188-F86107F9BF60
    I have made the same thing that Kirikou has suggested and I was able to recreate the broken library. The problem is that Kirikou's way has failed on my Share Point staging installation:
    [COMException (0x80020009): Exception occurred. (Exception from HRESULT: 0x80020009 (DISP_E_EXCEPTION))]
       Microsoft.SharePoint.Library.SPRequestInternalClass.RenderViewAsHtml(String bstrUrl, String bstrListName, String bstrViewID, String bstrViewXml, String bstrQualifier, ISPDataCallback pDataCallback, Boolean& pbSharedList) +0
       Microsoft.SharePoint.Library.SPRequest.RenderViewAsHtml(String bstrUrl, String bstrListName, String bstrViewID, String bstrViewXml, String bstrQualifier, ISPDataCallback pDataCallback, Boolean& pbSharedList) +125
    [SPException: Exception occurred. (Exception from HRESULT: 0x80020009 (DISP_E_EXCEPTION))]
       Microsoft.SharePoint.Library.SPRequest.RenderViewAsHtml(String bstrUrl, String bstrListName, String bstrViewID, String bstrViewXml, String bstrQualifier, ISPDataCallback pDataCallback, Boolean& pbSharedList) +166
       Microsoft.SharePoint.WebPartPages.ListViewWebPart.RenderView() +4239
       Microsoft.SharePoint.WebPartPages.ListViewWebPart.EnsureData(Int32 token) +658
       Microsoft.SharePoint.WebPartPages.SharePointDataProvider.Execute() +254
       Microsoft.SharePoint.WebPartPages.SPWebPartManager.ActivateV2ConnectionsAndSharePointDataFetch() +139
       Microsoft.SharePoint.WebPartPages.SPWebPartManager.ActivateConnections() +85
       System.Web.UI.WebControls.WebParts.WebPartManager.OnPageLoadComplete(Object sender, EventArgs e) +52
       System.EventHandler.Invoke(Object sender, EventArgs e) +0
       System.Web.UI.Page.OnLoadComplete(EventArgs e) +2063076
       System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +1875
    I will be very appreciated if somebody knows what is the reason for this problem.
    Best regards,
    Yordan Nikolov

  • The Document Information Panel Was unable to load. Please Help

    Hello all,
    I just recently created my own custom Document Panel in InfoPath. I uploaded it into a custom content type. I applied this to a document library and it is the standard document panel for creating a new document within that document library. When I click
    "New document" I get this error..
    The Document Information Panel was unable to load. THe document will continue to open. For more information, contact your system administrator.
    Details:
    Document Information Panel cannot open a new form.
    The form cannot be opened. To fix this problem, contact the form designer.
    Form template: http://Mysite/_cts/DIPTestContentType/Myfirstform.xsn
    The SOAP response indicates that an error occurred on the server:
    Exception of type 'Microsoft.SharePoint.SoapServer.SoapServerException' was thrown.
    <detail><errorstring xmlns="http://schemas.microsoft.com/sharepoint/soap/">No item exists at http://Mysite/My DIP Test.docx.  It may have been deleted or renamed by another user.</errorstring><errorcode xmlns="(html
    for the error code..had to delete it because my body text cannot contain images or links until my account is verified but it is a link to Microsoft support)
    ...It appears that it is not locating the custom Document Panel.
    Could anyone point me in the right direction?
    Thanks

    Hi Alex,
    According to your description, my understanding is that the error occurred when opening a document from SharePoint.
    Is this document information panel customized?
    I recommend to re-edit the document information panel template to see if the issue still occurs.
    Please go to the Library setting > click the corresponding content type(need to enable managed of content types in Advanced settings) > click Document Information Panel settings.
    If the issue still occurs, please check if the command below can help(change the site URL and the library name in the code):
    Apply-Fix -siteUrl "http://your site URL "
    function Apply-Fix($siteUrl)
    clear
    Add-PSSnapin "Microsoft.SharePoint.Powershell" -ErrorAction SilentlyContinue # -EA 0
    [Environment]::CurrentDirectory=(Get-Location -PSProvider FileSystem).ProviderPath
    foreach ($spwTarget in (Get-SPSite $siteUrl).RootWeb.Webs) {
    Write-Host "Checking Web: " $spwTarget.Url
    $list = $spwTarget.Lists["your library name"]
    $fields = $list.fields
    foreach($field in $fields)
    if($field.SourceId -eq '{$ListId:your library name;}')
    $schemaxml = $field.SchemaXML
    $schemaxmldata = [xml]$schemaxml
    $schemaxmldata.Field.SetAttribute("SourceID", $list.ID)
    $schemaxml = $schemaxmldata.get_InnerXml()
    $field.SchemaXML = $schemaxml
    $field.Update()
    Write-Host "Fixed" $field.Title "field in the library"
    Write-Host "Done."
    Best regards.
    Thanks
    Victoria Xia
    TechNet Community Support

  • Catastrophic failure -- The Document Information Panel was unable to load

    I have a content type that has a document template and a custom document information panel associstaed with it. For most users, these work without issues.
    Some users are reporting, however, that they receive the following series of messages when trying to create a new document from the content type:
    You are currently working offline.
    Here, the user can choose either Try to Connect or Stay Offline.
    If the user clicks Try to Connect, the following error message is displayed:
    Clicking OK results in the document loading. The DIP loads, but two fields that pull values from a SharePoint list are blank.
    Again, this happens for only a handful of users, so it seems like it's an issue with either their local PC or their connection to SharePoint.
    So far, I have tried the following:
    Repair Office 2010 installation
    Removed all locally cached versions of both the document template (.dotx) and the custom DIP (.xsn)
    Verified user permissions for the SharePoint site and the SharePoint lookup list
    Based on some other posts I've seen, checked to make sure that InfoPath is installed and that IPEDINTL.DLL
    is present at
    C:\Program Files\Microsoft Office\Office14\1033

    Hi,
    According to your post, my understanding is that the Document Information Panel was unable to load.
    I recommend to go to the
    Document Type Advanced Settings, click Edit template, go to
    File, click on Inspect, click on Remove All behind
    Custom XML Data.
    Here is a similar blog for your reference:
    Document Information Panel | Joran Markx
    If your list contains lookup columns, you can refer to:
    SharePoint:
    Document Information Panel fails to load when office documents are opened in a library that contains lookup columns
    Document Information Panel cannot open the form
    Thanks,
    Linda Li                
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Linda Li
    TechNet Community Support

  • Cannot sync devices. Get the following message, "iTunes was unable to load data class information from Sync Services..." Any help?

    Can anyone help me with syncing my devices?
    I'm on a PC that I had to recover, but forgot to save my iTunes data for post recovery.
    Now I get the following message, "iTunes was unable to load data class information from Sync Services..."
    Thanks!

    Sync Your iOS Device with a New Computer Without Losing Data
    http://www.howtogeek.com/104298/sync-your-ios-device-with-a-new-computer-without -losing-data/
    Syncing to a "New" Computer or replacing a "crashed" Hard Drive
    https://discussions.apple.com/docs/DOC-3141
     Cheers, Tom

  • HT1369 hey, when I connect either my ipod or ipad to itunes I get the promt ' i tunes was unable to load data class information from sync services. Reconnect or try again later'. Can anyone help me with syncing my devices?? Thanks in advance

    Hey, when I connect either my ipod or ipad to itunes I get the prompt 'itunes was unable to load data class information from sync services. Reconnect or try again later. Can anyone help me with syncing my devices?? Thanks in advance

    I am having the same issue, anyone else ?

  • Why am I getting the following message - itunes was unable to load data class information from sync services

    Has anybody received this message when trying to sync? - itunes was unable to load data class information from sync services.  All purchased apps were lost.  Do you know how to recover them?

    Sync Your iOS Device with a New Computer Without Losing Data
    http://www.howtogeek.com/104298/sync-your-ios-device-with-a-new-computer-without -losing-data/
    Syncing to a "New" Computer or replacing a "crashed" Hard Drive
    https://discussions.apple.com/docs/DOC-3141
     Cheers, Tom

  • Is it possible to have two Excel workbooks open at the same time but only have one show the Document Information Panel?

    We are using SharePoint 2010 and Excel 2010. In SharePoint, we have created a custom content type that uses an Excel workbook template along with a Document Information Panel (DIP -- an InfoPath form) that always displays when a workbook of this custom
    content type is opened.  That's all working fine.  However, if one of those Workbooks is open with the DIP displayed and the user opens another Excel workbook, a DIP displays for the 2nd workbook even if it's just a regular workbook,
    i.e. not one of the custom content type.  If the user closes one of the DIPs, both close.  And if the user displays one of the DIPs again, both display. 
    Is there any way to separate out the DIP display for specific workbooks during the same Excel instance so that it shows in one but not in the other?  Or is this just something we have to live with (and train our users on)? 
    Thanks in advance.  Carol.

    Whether the DIP shows or not is a client side toggle, not something tied to an individual workbook.  So if you are using the same client instance then the DIP will display or hide based on what you did in the other workbook.  YOu might be able
    to create a macro that would display or hide it, but that's a lot of work for little advantage.  I would train the users and live with it.
    Paul Stork SharePoint Server MVP
    Principal Architect: Blue Chip Consulting Group
    Blog: http://dontpapanic.com/blog
    Twitter: Follow @pstork
    Please remember to mark your question as "answered" if this solves your problem.

  • ITunes was unable to load data class information from sync services.

    I get the error message "iTunes was unable to load data class information from sync services. Reconnect or try again later" after reinstalling iTunes. I cancel the message and iTunes proceeds to sync with my iPhone 4. The phone and iTunes software are the latest releases. My PC is running Windows 8.1, which had to be reinstalled after the system crashed, requiring a total reinstall of all software.

    Doublechecking. You've tried the following document?
    iTunes for Windows: "Unable to load data class" or "Unable to load provider data" sync services alert

  • "itunes was unable to load data class information..."

    Hi everyone,
    When I connect the iphone to my computer, the itunes recognize the iphone but it is thinking and after a few minutes the itunes drop me the following message:
    "itunes was unable to load data class information from sync services reconnect and try again later".
    I tried the following article: http://support.apple.com/kb/TS2690 , but still the problem occur.
    What I can do?
    (note: it's happen after I format the computer and before and after I update the IOS from 5.1.1 to 6 in the iphone)

    Try this.
    1. Windows Control Panel > Programs > Programs and Features
    2. Remove "iTunes"
    3. Remove "Apple Mobile Device Support" (this is mandatory!)
    4. Reinstall iTunes
    I have tried several methods and resolved the problem using the upper method.
    I hope this will be helpful.

  • I am having problems syncing my ipod touch. I keep getting this message. iTunes was unable to load data class information from sync services. Reconnect or try again later

    When I try to sync my ipod touch 5. I get the following message. iTunes was unable to load data class information from sync services. Reconnect or try again later.
    I get the same message when I try to sync my iPhone 4s
    Should I uninstall/reinstall itunes and if so should it be all the programmes associated with Apple or just iTunes

    See this thread for more people having the same issue.
    http://discussions.apple.com/thread/6500271

  • Error message iTunes was unable to load data class information from Sync Services

    I purchased some songs to download to my ipod and keep getting the following message:  iTunes was unable to load data class information from Sync Services.
    The songs have transferred okay to my ipad and iphone with no issue.
    ipod has sw update 6.1.6.
    Have tried the various suggestions regarding this issue on the site, but without success.
    Are there any other suggestions?
    I am using Windows 7.
    I see from a google search that this is a common problem so why hasn't it been rectified in bug fixes?

    Hello Human1234,
    Thanks for using Apple Support Communities.
    To troubleshoot Sync Services with Outlook and iTunes, please follow the troubleshooting in the article below.
    Troubleshooting Sync Services on Windows with Microsoft Outlook 2003, Outlook 2007, or Outlook 2010
    http://support.apple.com/kb/TS2776
    Take care,
    Alex H.

  • ProjectCenter Webpart on another Site Collection "This Web Part was unable to load"

    Hi,
    Project Server 2013 on an url like http://domain.tld/pwa
    Trying to use the Project Center Web Part from another site collection, let's say http://domain.tld/sites/siteA
    I get the "This Web Part was unable to load" error and in the ULS I get Object Reference not set to an instance of an object classic error
    What am i doing wrong?
    Thanks!

    Thank you for the thoughts Michael but none of those worked for me.    
    What I have done so far is I have added the PWA features to the site which is what has made it work when logged in under the farm account.  
    So I have 3 account I am testing with
    1.) regular account with read only permissions to the Publishing page
    2.) Admin account that is in a group that is a site administrator to ALL sites
    3.) Farm account
    Currently it works for the Farm account and the Admin account but not the regular account.  I have added the regular account to the same group as the Admin account and will test when the change updates to see if I can access the information.  This
    will at least let me know that it is a Permissions issue which is what I think it is I just cant figure out which permission it would need to be. 

Maybe you are looking for

  • Front row & shared libraries on same computer

    Hey My girlfriend and I dont have the same music taste, which is why we like to keep our music on different accounts. However recently I've bought a Mac Mini intended to work as a mediacenter. I've planned to use Front Row along with the remote contr

  • Pdf-files in mail are damaged

    pdf-files received as an attachment on my Mc Mini can not be opened (the file is damaged). Same message on my Ipad opens without problem Anybody has a solution?

  • Screen/Artboard Updating When Dragging

    Hi all, I tried to search but couldn't find anything as I didn't know how to phrase it, so apologies if this has been asked before. Basically, if I drag something to the edge of the screen so that the artboard has to scroll either up/down/left/down,

  • Scan failed message kodak i40 acrobat 8.0

    Ive just purchased Acrobat 8.0. I was using acrobat 5.0 with a Kodak i40 scanner. Scanning directly into acrobat with 5.0 was no problem. Since uninstalling 5.0 and installeing 8.0 (and rebooting in between), acrobat gives me a scan failed error mess

  • Remove header from output of pipeline

    I am trying to get the update time of the most recent .vhd in a folder.  I have: get-childitem "*.vhd" | sort-object LastWriteTime | Select-Object LastWriteTime My issue is I am trying to get rid of the header.  How do I do that?  I tried the option