vote up 1 vote down star
1

I'm trying to create a workflow on the Sharepoint Designer. The workflow should wait until an Out-Of-The-Box approval workflow is complete. This is done by starting my workflow with the item's creation, and usign the wait activity:

Wait for field change in current item:
Wait for InternalApproval to equal 16

The problem: the rule is correct, but the event doesn't fire unless an edit is made on the item. Normally, every edit triggers the workflow check, but my tests show approving a workflow doesn't trigger this event on the item.

Is there an easy way around this issue? I though about implementing a busy wait, but how (there's a wait 5 minutes activity, but no goto)? Is there an activity I can download that can wait for another workflow to complete, or busy wait until a condition is met?
Another way to solve my problem is if the InternalApproval workflow changed a field, but I cannot achieve that either...

flag

2 Answers

vote up 1 vote down

This is expected behaviour. An approval workflow that is wired to cancel itself upon changes to the item would otherwise be useless. At the API level, SharePoint is disabling events from being raised when it needs to update the item upon which it is running.

-Oisin

link|flag
Thanks Oisin. I guess I can find reasoning one way or the other... Do you know any way around this one? I'd like to continue my workflow when another workflow is done, or trigger an edit. – Kobi Sep 13 at 19:34
Take a good read through this: blogs.msdn.com/sharepointdesigner/archive/… It presents alternatives. – x0n Sep 14 at 16:11
I've read the article, thanks for that. Creating two workflows would work, but it worries me - the behavior already changed once, breaking many workflows (as the article says), and it feels a little hacky. Thanks again! – Kobi Sep 17 at 12:49
vote up 0 vote down check

I ended up writing a custom workflow activity that waits until a change is made, and resumes the workflow. This activity can be used in two ways - on the main workflow, or on a second workflow, where it waits for a non-triggering change, and makes a triggering change (so the main workflow resumes).
Writing it was big fun - I used Reflector to copy some code from an OOTB activity (the normal Wait For Field Change), and copied its action xml. This works very well after some tries, giving a list of fields, operators and values.

Custom Sharepoint Workflow Activity - I'm blogging this

Checking the condition is also quite simple, using the Helper class. All properties and their binding were copied using Reflector:

public void CheckStopCondition(object sender, ConditionalEventArgs e)
{
    bool checkAgainLater = Helper.TestListItem(Context, ListId, ListItem, 
                                               FieldName, Operator, Value);
    e.Result = checkAgainLater;
}
link|flag

Your Answer

Get an OpenID
or

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