Discussion posts and replies are publicly visible
Care to share the process model? From what I can tell, It looks like you may have a process that is calling itself in a subprocess.
The mainprocess will call itselt as a sub-process at the end, how is process depth counted here? Like other sub-processes are also counted
Well that's pretty much your issue right there. You have a recursive loop. Technically, you can only loop 100 times using this method.
fxzrqjzztrmy said:how is process depth counted
Pretty easily - the first ("top") process is level 1, the first subprocess call is level 2, the next subprocess called by that one is 3, etc.