In SS1.0, how to use `nlapiScheduleScript()` witho...
# suitescript
b
In SS1.0, how to use
nlapiScheduleScript()
without deployment id? I tried
nlapiScheduleScript('customscript_id', "", params);
but it didn't work for me. Any help would be appreciated
m
Since
deployId
is an optional parameter, try using
null
rather than an empty string.
b
Thank you. That works