Discussions
Join the NetSuite community to innovate, connect, and discover what’s next.
SuiteWorld brings thousands of innovators, builders, and leaders together to learn, connect, and shape what’s next. This October, explore how to build a stronger foundation for growth through inspiring keynotes, major product reveals, hands-on sessions, and unforgettable moments—all in one place for our biggest event of the year. Register now
Why am I receiving Update Netsuite table error?
Hi, recently need to meet user requirement to update a customized column on transaction table. So create two sql statements to test.
1: select tranid, custbody_ucsd_exported_to_ofc, custbody_ucsd_ofc_request_id
from transaction
where custbody_ucsd_exported_to_ofc = 'F' and tranid = 'CRM3899'
It works fine and returned a record expected.
2: update transaction set custbody_ucsd_exported_to_ofc = 'T' where tranid = 'CRM3899'
run this got error:
Error: [NetSuite][SuiteAnalytics Connect JDBC Driver][OpenAccess SDK SQL Engine]Functionality is not supported.[10115]
SQLState: HYC00
ErrorCode: 10115
Does this error mean Netsuite database not support update ? or it is permission issue? How can I resolve this issue? I seachd google for this error not not much information available. Would Netsuite Guru please recommend what to do next?