Marwan
06/21/2022, 11:31 AMcom.netsuite.suitescript.scriptobject.GraalValueAdapter@318128f7
This code just updates some records.battk
06/21/2022, 11:49 AMbattk
06/21/2022, 11:49 AMMarwan
06/21/2022, 11:50 AMvar
right? 😭Marwan
06/21/2022, 11:50 AMSciuridae54696d
06/21/2022, 2:05 PMvar errorObj = error.create({
name: "ERROR_CODE",
message: "Error MSG",
notifyOff: true,
});
throw errorObj;
then in summarize
var mapSummary = context.mapSummary;
var arrErrors = [];
var arrErrorMsg = [];
mapSummary.errors.iterator().each(function(key, error) {
arrErrors.push(key);
arrErrorMsg.push(error);
return true;
});
log.error("map key: " + arrErrors, "error: " + arrErrorMsg);
Sciuridae54696d
06/21/2022, 2:06 PMMarwan
06/21/2022, 3:19 PMSciuridae54696d
06/21/2022, 3:33 PMSciuridae54696d
06/21/2022, 3:33 PMRywin
06/22/2022, 1:39 AMRywin
06/22/2022, 1:49 AMSciuridae54696d
06/22/2022, 3:19 AMRywin
06/22/2022, 7:00 AMMarwan
06/22/2022, 10:05 AMMarwan
06/23/2022, 11:57 AM