vote up 1 vote down star
1

I need to be able to create a different item from an existing one, but still keep most of the details and only change some information. Thanks,

flag

Dupe of stackoverflow.com/questions/1075323/… stackoverflow.com/questions/1142014/… – Alex Angas Aug 13 at 8:58
The other two quetions search for an answer on how to copy/move/clone an item from one list to another - mine is how to clone an item in the same list – Marius Sep 14 at 20:39

2 Answers

vote up 1 vote down check

Your best bet is to use event receivers. The ItemAdded(Synchronous) or ItemAdding(Asynchronous) event receivers will allow you to access the data from the item that was just added.

You can use this information to create a different item, either in the same list, in a new list, or in any type of storage medium you can get too.

Custom workflows will also give you much of the same ability.

Excellent article on ER's --> http://developers.de/blogs/adis_jugo/archive/2009/03/12/develop-and-deploy-a-sharepoint-event-receiver-from-the-scratch.aspx

link|flag
vote up 2 vote down

Have you tried using SPListItem.Copy( oldItemURL, newItemURL ) ?

link|flag
How does this behave if properties are changed on the destination? – Alex Angas Aug 13 at 8:59

Your Answer

Get an OpenID
or

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