Our company recently upgraded from Sharepoint 2007 to 2010 and with the upgrade it managed to break a filter on one of our sites.

The site is mostly just a dressed up document library with a custom view and has a date filter (by year, month). After the upgrade it randomly generates an error of "Unable to display this Web Part. To troubleshoot the problem, open this Web page in a Microsoft SharePoint Foundation-compatible HTML editor such as Microsoft SharePoint Designer. If the problem persists, contact your Web server administrator." along with a correleation ID. The logs generated on the sharepoint server state "Failed to render field Created_x0020_Date, use default value instead".

The problem does not appear to be with the query or with the returned results until it actually tries to display the web part. Somehow the created date is not getting set? The strange thing is it works intermittently. The web part loads correctly maybe 5% of the time.

Any ideas what could have changed from 2007 to 2010?

link|improve this question
feedback

2 Answers

Was the "Created_x0020_Date" column a calculated column? Was it modified in any way (such as the current date XSL hack)?

I've seen that sporadic error before and for my problem it was a time-out issue with a poor performing web part pulling from 3 different lists. We increased list throttling, and caching but it didn't help. But if it's just a standard view of the library with no custom XSL in it, then it isn't a code performance issue.

Can't you just create a new created column and copy the old data into the new column using Datasheet view in the browser?

link|improve this answer
Created_x0020_Date is usually a Lookup column – Trikks Nov 21 '11 at 19:58
Super late follow-up here, but it turns out there's a server patch which messes up one of the .dlls that ends up causing this error. I worked with MS Support for a few days on it. support.microsoft.com/kb/2639184 Solution 3 ended up fixing it. – Rusah Jan 13 at 21:26
feedback

There whatsoever no difference between the Created Date column in SharePoint 2010 and SharePoint 2007.

The differences between the two are mainly new columns. After doing some digging I found this.

SharePoint 2007 2010 Document Library Column Diff

You can see the complete reference of the fields here

Now, since we know pretty much nothing of your setup and how this is built we are left to chance a bit. But assuming that guessing a bit is alright I'd say you are either missing the data in the 'Created Date' field which is possible since the field isn't required (check the documents I've linked to). Did you verify that all documents got this value set?

This field (Created Date) use the TimeCreated property to check when the document was created. So if this column isn't filled with data that usually should mean that your documents hasn't been transfered to your new installation but the reference to the document is still there.

Thats a bit of a chance but thats what I'd start somewhere around that.

Good luck.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.