Notice: This website is an unofficial Microsoft Knowledge Base (hereinafter KB) archive and is intended to provide a reliable access to deleted content from Microsoft KB. All KB articles are owned by Microsoft Corporation. Read full disclaimer for more details.

An InfoPath 2010 form does not work after you upgrade to SharePoint Server 2013


View products that this article applies to.

Symptoms

Assume that a Microsoft InfoPath 2010 form has a data connection to a Microsoft SharePoint Server 2010 list. After you upgrade to SharePoint Server 2013, the form does not work.

↑ Back to the top


Resolution

To resolve this issue, apply the following hotfix package:
2752020 Description of the SharePoint Server 2013 hotfix package (ifsmui-en-us.msp; ifswfe-x-none.msp): April 9, 2013

↑ Back to the top


More Information

Following the upgrade to SharePoint Server 2013, if you want to enable the original performance optimization settings for the InfoPath form, you can run the following PowerShell commands from the SharePoint 2013 Management Shell on a front-end web server in the SharePoint farm.

$f = Get-SPInfoPathFormsService
$f.Properties.Add("AllowEventPropagation", $false)
$f.Update()

To remove the performance optimization settings, run the following PowerShell commands:

$f = Get-SPInfoPathFormsService
$f.Properties.Remove("AllowEventPropagation")
$f.Update()

↑ Back to the top


Keywords: kbsurveynew, kbbug, kbfix, kbexpertisebeginner, kb

↑ Back to the top

Article Info
Article ID : 2775307
Revision : 2
Created on : 9/19/2018
Published on : 9/19/2018
Exists online : False
Views : 129