Discussions
It’s that time of the year again! As we embrace the holiday cheer, we want to share an important announcement regarding our holiday schedule. Our dedicated team of NetSuite Support Gurus will be taking a short break to recharge during the holidays, from December 24, 2024, to January 1, 2025. We’ll be back in full swing, ready to assist you on January 2nd. During the break, feel free to explore the wealth of NetSuite resources on our platform.
As we celebrate the season's joys, we are incredibly grateful for your ongoing support and engagement. Have a fantastic holiday break, and let's gear up for an incredible 2025!
Here are some examples to get your creative juices flowing.
"Did I pay vendor John Doe last month?"
"Take me to my largest sales order for this month."
"What invoices haven't been paid yet?"
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?