SharePoint 2010 Document Property Promotion

Creating custom solutions such as a custom upload to a document library in SharePoint exposes some features that are very useful out of box, but problematic in our solution. One of these features that we recently discovered is Document Property Promotion.  Basically, upon calling SPFile.SaveBinary(), properties within Office documents are automatically extracted and saved to the list item’s corresponding columns in the document library. The issue we were running into was that the properties that we save during our custom upload process were being overwritten by the document’s properties.

The solution is to set SPWeb.ParserEnabled = false like below:

[code language=”csharp”]web.ParserEnabled = false;
web.Update();
item.File.SaveBinary(fileStream);
web.ParserEnabled = true;
web.Update();
[/code]

However, we realized that this fails when the user that is logged in executing this code does not have administrative permissions. In the end, what worked for us was storing the custom programatically saved SPListItem properties before calling SPFile.SaveBinary() and then reapplying them after SPFile.Item.Update().

Related posts

The 3 Different Types of Copilot

In the realm of digital transformation, businesses are constantly seeking innovative solutions to streamline workflows and boost productivity. As a seasoned Microsoft Solutions Partner,

Read More »
Ready to talk about building your

Modern Workplace?