Thursday, March 22, 2012

Delaying the Execution of a component

Hi All,

Is there a way wherein if I have three components in my package, A,B,C and I want the DFT C to be executed only after A and B is executed ?

I have now connected A and B to C and made the two arrows from A to B to blue, but i guess that is not good enough. Will setting the DelayValidation property to true help here?

Because that the DFT C is totally dependent on A and B I should somehow ensure that there is a constraint set.

Can someone guide me here ?

Thanks in advance

Mithun

Use the precendence constraints (arrow in the control flow) from A to C and from B to C ensure the task C is executed after both A and B have finished. Additionally, if you set DelayValidation property on task C to true, the task C is validated just before execution, i.e. after both A and B have finished.|||

That is gr8.. Thx for such a quick reply..

No comments:

Post a Comment