Workflow Create Task Advanced Script Not Executing Twice Description The workflow activity Create Task advanced script is not executing twice within the Graphical Workflow Editor. This issue occurs when the workflow has this sequence of activities: Begin Create Task (advanced script: task.short_description = 'test - ' + problem.number + ' - ' + problem.short_description;) Create Task (advanced script: task.short_description = 'test - ' + problem.number + ' - ' + problem.short_description;) End After Create Task 1 has finished executing the script as expected, it moves to Create Task 2. However, the Create Task 2 fails to execute the second script due to the error: "problem" is not defined. Workaround Replace problem with current in the run script: task.short_description = 'test - ' + current.number + ' - ' + current.short_description; Related Problem: PRB591097