0

I am developing a SharePoint sequence workflow. It is consisted of the main part and a sequence activity which I have implemented separately. I have used that sequence activity for one of the workflow nodes. This is the approach described by Scott Hiller.

Basically, my workflow reads a list item and based on that it creates a bunch of workflow tasks. Let's assume that my workflow creates 5 tasks. I need to make my workflow mark the rest of the tasks to Complete once the first 3 tasks are completed by the user. I do not know how to get to the rest of the tasks in the sequence activity, i.e. I do not know how to reference them. I tried creating a property in the sequence activity which would store the workflow item, but it generates an error (I believe only simple types, DateTime and strings are allowed).

3
  • [I have never tried this], can't you save Task Id's in string with a separator like '|' Commented Nov 26, 2012 at 10:08
  • Yeah, that seems to be the only solution I was able to come up with as well. Feel free to post your comment as answer so that I can accept it. Thanks! Commented Nov 26, 2012 at 21:36
  • There you go! :) Commented Nov 27, 2012 at 8:41

1 Answer 1

0

Boris,

You can put all the task Id's in string with a separator like '|'

Retrieve again by splitting...

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.