Skip to main content
Question

'SAVE' Pop Up while Trying to Split a Task in FSM

  • March 9, 2026
  • 3 replies
  • 10 views

Forum|alt.badge.img+4

Whenever we try to split a task using the ‘split task’ button (image: split_task_issue.png) to create child tasks there is always a pop up (image: split_task_popup.png) to save the new task. Is there any way to create the task without the pop-up by just clicking the 'Split Task' button? 

3 replies

Shneor Cheshin
Superhero (Employee)
Forum|alt.badge.img+28
  • Superhero (Employee)
  • March 9, 2026

Hi ​@TDCANJANA 

I am not aware of the baseline button of ‘Split Task’.

What is the screen in the screenshot? Is this a custom button? Is there a custom client script attached to the click event?

Anyhow, you probably can implement this with a configuration of a custom button and a client script and/or a business rule.

Cheers!


Forum|alt.badge.img+4
  • Author
  • Do Gooder (Customer)
  • March 10, 2026

Hi ​@Shneor Cheshin,

This is a copy button and there is an underlying Copy Map. We have not created any client script around it. This screenshot is from REQUEST screen.


Shneor Cheshin
Superhero (Employee)
Forum|alt.badge.img+28
  • Superhero (Employee)
  • March 10, 2026

@TDCANJANA 

You can create a custom Copy/Split/<YOUR_LABEL> button. Then add a client script to the click event.

This is how we solved it

var taskRow=getDataTableSelectedRows('task')[0];

if(isNullOrEmptyString(taskRow) == false){

var task_id = taskRow.data['task.task_id'];

if(isNullOrEmptyString(task_id) == false){
var parameters = {};
parameters.table_name = 'TASK';
parameters.copy_map_id = 'C_TASK_COPY_DEFAULT';

parameters.copy_from_keys = {};

var key_item = {};
key_item.column_name = 'task_id';
key_item.column_value = task_id;

parameters.copy_from_keys['key_item'] = key_item;


var copyResponse = executePerform('copy',parameters);


if(copyResponse.message != null)
{
alert(copyResponse.message);
}
else{
refreshScreen();
}
}
else
{
alert("Please select a Task Record from the list!");
}
}

 

Cheers!