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!
Don’t miss your chance to meet our SuiteGurus—NetSuite Support professionals and subject matter experts with extensive experience in select product areas, including OneWorld, Advanced & Basic Accounting, Supply Chain Management, Receivables & Payables, CRM, Account Administration, and the SuiteCloud Platform. Full Conference attendees can prebook exclusive 30-minute one-on-one sessions for your product questions.
Spots are limited! Register through your Agenda Builder and find SuiteGuru under Agenda Enhancements.
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?