Hi All,
I have a requirement where-in I want to execute task of one process from another process.
So is it doable ?
Thanks
Akhilesh
Hi All,
I have a requirement where-in I want to execute task of one process from another process.
So is it doable ?
Thanks
Akhilesh
Let me clarify your request. You have two process A and B.
A : START → A1 → A2 → A3 → END
B : START → B1 → B2 → B3 → END
You want A2 task to execute B2 task and only B2 ?
START → A1 → A2 (EXECUTE B2) → A3 → END
Humm, this is not really possible.
I have two options for you. You can :
Hi,
Use a subprocess which call the second process.
But in this case, it will execute all the subprocess before to come back to your main process. Is it what you want?
Hi sylvain,
Thanks for you response.
Actually I don’t want to do this in a sub process.
I want to achieve this from other process. so is it possible (in version 6.3)?
thanks
akhilesh