Discussions
Read on for the latest updates including:
• Agenda Builder launch
• SuiteWorld On Air registration
• New NetSuite Prompt Studio Contest
• And more!
Check out this thread to learn more!
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?