Is there an out of the box activity that makes the activity wait until a SharePoint field changes to a certain value before executing the next activity, much like SharePoint Designer workflow activity of the same nature?
What I'm basically trying to do is, when I have a new SharePoint item added, I need to wait until the field Status_D = 2 for my approval to start. Now, for Status_D to equal 2, three statuses (Status_A, Status_B, Status_C) all need to be equal to 1. Status A is updated to 1 first, then Statuses B and C are updated to 1 in parallel. Status_D is changed programmatically.
Is there a way to implement this (using SharePoint Workflow Integration with a "wait until..." activity) without programmatically starting the workflow when my application changes Status_D to 2?
Would appreciate your help so much. Thanks!