Hos to execute task of one process from another process

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 :

  • Duplicate B2 task into the A process. START → A1 → A2 (which is B2) → A3 → END
  • Create a bridge between B START → B2 and B2 → B END. You’ll need to map specific parameter in order to follow these bridges.
    START → A1 → EXECUTE B (with specific parameter) → A3 → END

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