So imagine there's a SharePoint library full of business documents, complete with document versioning. One day, a committee decides that 'Document X' and 'Document Y' should really be one document and they're gonna keep the name 'Document Y.' Is there any way to tell SharePoint from the UI "hey, take Document Y and make it the newest version of Document X, retaining all of the history?"
|
Out of the box, no. You could theoretically right custom ribbon / context menu actions that would allow you to do this. http://msdn.microsoft.com/en-us/library/ie/gg552606.aspx#bk_createcustcomp The SharePoint API would allow you to use the bytes from one file to save as a new version in a different file. After you've updated the bytes, delete the old file and you would be good to go. |
|||
|
|
Here is a way: Download all your various versions of the document to your computer. For example:
Hey presto: Done! |
||||
|
|
|
No. You'd need to have some sort of status column that shows Document X as being decomissioned. You'd take the content of X ad it into Y and in the check in comments of Y, state that Doc X was merged in and to view that decomissioned document to view it's history prior to being merged into Y. |
|||
|
|