При тестировании скрипта выдается следующая ошибка
Error: com.trackstudio.exception.GranException: Could not execute JDBC batch update
In: .setTaskUdfValue ( udfId , taskId , Nm , lc , tz )
Message: Sourced file: inline evaluation of: ``import java.lang.StrictMath; import com.trackstudio.tools.formatter.DateFormatte . . . '' : target exception
сам скрипт
Trigger / Create Task / AFTER Trigger
import com.trackstudio.kernel.manager.KernelManager;
String taskId = task.getId();
String Zaja = task.getUdfValue("Заявитель");
String udfId = CSVImport.findUDFIdByName("Заявитель");
String Nm = task.getHandler().getLogin();
String lc = sc.getLocale();
String tz = sc.getTimezone();
if (Zaja.equals(""))
{KernelManager.getUdf().setTaskUdfValue(udfId,taskId,Nm,lc,tz);
task.update(true);}
return task;
