Lifecycle Event Test functionality gives an error in the HR Activity Set Launcher workflowIssue Lifecycle Event Test functionality might give the following error in the "HR Activity Set Launcher" workflow if there are many activity sets and/or activities. 2022-04-23 13:18:44 (055) API_INT-thread-3 B2C641E91B07895067B0657CE54BCB34 txid=3bfc85e91b07 WARNING *** WARNING *** Evaluator: org.mozilla.javascript.EcmaError: Unterminated string literal Caused by error in sys_ws_operation.3aeb1f2e532033001fb2ddeeff7b12ca.operation_script at line 5 2: 3: var activitySetInputs = !gs.nil(workflow.variables.activity_set_inputs) ? JSON.parse(workflow.variables.activity_set_inputs) : {'testRun': false}; 4: var isTestRun = activitySetInputs.testRun; ==> 5: var activitySets = new hr_LEType().getActivitySetsByLEType(current.hr_service.le_type); 6: //dependent sets should be launched first in order for them to be ready for completion of immediate sets 7: //launching workflows for activity sets with trigger type other than immediate 8: for (var i = 0; i < activitySets.length; i++) { 2022-04-23 13:18:44 (056) API_INT-thread-3 B2C641E91B07895067B0657CE54BCB34 txid=3bfc85e91b07 WARNING *** WARNING *** Evaluator: org.mozilla.javascript.EcmaError: Unterminated string literal Caused by error in sys_ws_operation.3aeb1f2e532033001fb2ddeeff7b12ca.operation_script at line 1 ==> 1: coordinator = new global.WorkflowCoordinator( {workflow:'HR Activity Launcher'} ); 2: 3: var activitySetInputs = !gs.nil(workflow.variables.activity_set_inputs) ? JSON.parse(workflow.variables.activity_set_inputs) : {'testRun': false}; 4: var isTestRun = activitySetInputs.testRun; CauseThe "HR Activity Set Launcher" workflow input "Activity set inputs" might exceed its max length (default is 4000) if there are many activity sets and/or activities. ResolutionWorkaround is to increase the max length of the input "Activity set inputs" (e.g. from 4000 to 8000).