hi,
What is the difference between start process and sub process?
Thanks In Advance.
Discussion posts and replies are publicly visible
One of the other key things that appears to be missing from this discussion is that start process does not allow you to return any of the pv's from the process that got started to the process that started it, or the form that started it. You can't configure a start process to return the output of that process. If you want data from it, it has to be a subprocess.
Hi Shanmukha,
I'm experimenting with this as I was preparing some response for this same thread. :-D In Subprocess I construct a CDT and write into Database. I also make use of BVF Framework (App Market Link for this framework). Irrespective of whats happening in the sub process i assume starting a processes should be independent.
Thanks,
Arjun.
Major difference, start process invokes the target process on a separate engine of Appian to Balance the load, hence we can't give guarantee, whenever we use start process, will immediately trigger the target process, whereas sub process gives you assurance of starting the child process immediately once after the flow hits this node.