A "data dependency" is not something that you "trigger", but is a natural component of dataflow.
For example, in the following picture you could place code insde the sequence frame. Since the sequence frame depends on data coming out of the while loop, it MUST wait until the loop has finished (even if your exit routine does not even use the wire for anything else as in this case). Most often you don't even need a sequence frame but can utilize the error cliuster for data dependency.
Remember: A structure cannot execute until all inputs have received data and a structure only produces data on its ouputs once it finishes.
It's all in the dataflow! 🙂
Message Edited by altenbach on 03-04-2007 04:34 PM