Page 1 of 1

Find out flow reference point

Posted: 16 Dec 2018 16:42
by yxd0018
Is there a way to trace back the calling sequence of flow? The log only shows the current flow, not the caller.

Re: Find out flow reference point

Posted: 16 Dec 2018 22:26
by digitalstone
You can use the variable "trigger" to know which trigger set off the running instance.
To know which flow that exactly was, you could create an additional scriptline such as:

Code: Select all

flowOrigin=flow_name

Re: Find out flow reference point

Posted: 19 Dec 2018 12:59
by yxd0018
Thanks