Discussions
Stay up-to-date with the latest news from NetSuite. You’ll be in the know about how to connect with peers and take your business to new heights at our virtual, in-person, on demand events, and much more.
Now is the time to ask your NetSuite-savvy friends and colleagues to join the NetSuite Support Community! Refer now! Click here to watch and learn more!
nlapiLoadRecord ('vendor', vendorID) - SSS_NOT_YET_SUPPORTED
nlapiLoadRecord - From NS documentation --- This API is supported in all script types
vendor record - From NS documentation --- Scripting Level = Full, Scriptable in Client and Server SuiteScripts
Why I am getting this error "SSS_NOT_YET_SUPPORTED" when trying to run the code?
Here is a snip it of code - On Save Client Script.
function approvePOSendEmail (type, name) { var vendor = nlapiGetFieldValue('entity'); var vRecord = nlapiLoadRecord('vendor', vendor); var contact = vRecord.getField('phone'); alert(phone); } 0