ec
09/20/2022, 6:44 PMtask.create
. This works fine. However, the params
(script parameters passed to the other M/R script) do not flow properly.
In another context, literally the identical call works. It seems like in User Events or Scheduled or Suitelet contexts this call works, params and all, but not the below from within a M/R script. Anybody ever experience this before?
var mrTask = task.create({
taskType: task.TaskType.MAP_REDUCE,
scriptId: 'customscript_xyz',
params: {
custscript_xyz: 'string here'
}
});
mrTask.submit();
ec
09/20/2022, 7:52 PMtask.create
may be a character length (or other?) issue. Are there any limits to the length of a string i may pass to a script parameter (which type = Long Text
).karlenigma
09/20/2022, 10:47 PMkarlenigma
09/20/2022, 10:47 PMec
09/21/2022, 12:53 AM