Solved

Multiple process flows for a single table task

  • 11 August 2023
  • 1 reply
  • 22 views

Userlevel 3
Badge +6

I have a processflow that does some logging and calling an api when certain tasks are executed.
This works fine except for one task.
This task also calls another processflow and therefor never calls my api processflow…

My first idea was “can I call a processflow from another processflow?”, well it seems I can do that with a subflow…
But a subflow cannot call a task (I use a task to collect data before logging and calling the api).

I can add the logic also to the processflow that is being executed but I rather keep everything in a single location ;)

Any suggestions?

icon

Best answer by Vincent Doppenberg 13 August 2023, 13:38

View original

This topic has been closed for comments

1 reply

Userlevel 6
Badge +4

Hello Alban_T,

You can call a task from a subflow, but you will have to use the Execute system task process action. Note that with this process action, the task parameters can only be entered using input parameters, default logic will not be available for system tasks.

I hope this helps.