Skip to main content
Solved

copying record

  • March 30, 2026
  • 1 reply
  • 24 views

Forum|alt.badge.img+4

When copying a record via a task, can we configure it to automatically navigate to the newly created record in the IAM?

Best answer by Erwin Ekkel

When using a task to copy a record you can use a process flow to achieve this effect. 

Here’s a simple example: 

Add a start tabel task and a go to row to the process flow.

Add a process variable to determine the added row:

 


In the task logic return the newly added row (make sure the returned task parameter is set as output). And use this value as input for the go to row process variable:
 

 

1 reply

  • Answer
  • March 31, 2026

When using a task to copy a record you can use a process flow to achieve this effect. 

Here’s a simple example: 

Add a start tabel task and a go to row to the process flow.

Add a process variable to determine the added row:

 


In the task logic return the newly added row (make sure the returned task parameter is set as output). And use this value as input for the go to row process variable:
 

 


Forum|alt.badge.img+4
  • Author
  • Sidekick
  • March 31, 2026

Thanks for the example — works great!