views:

10

answers:

0

Hi,

currently I'm trying to find a solution for following request.

In SharePoint I've to lists, which basically contain the same content type, only with a few differences.

List A contains items, which need authorization from a special person. If this person sets the status of the item to "approved" as example, the item should be copied to List B and the editing user is redirected to the list, or even better to the edit form of the newly created item in list B, to complete the missing fields.

What I've tried so far, is using SPUtility.Redirect in the item updating event, which fails redirecting, due to the fact, that the editform of items in SharePoint 2010 is contained within an iframe. If I'm redirecting, the editform will show the error, that the Ribbon couldn't be activated for the redirected page. Which is quite understandable.

My second attempt was to redirect directly to the Item in List B, which unexpectedly worked till the point, I tried to save the item. Nothing happened :(

The third idea was, to use the TransferToSucessPage()-method. Unfortunately this method does also nothing.

Has anybody else an idea to solve this problem?