My Stuff
On Friday, October 10, 2025, at 8:00 PM Pacific Time, our Case Management System will undergo a scheduled maintenance for approximately 4 hours. During this time, case creation via SuiteAnswers will be unavailable and inbound calls will be routed to Customer Service.
Share Your SuiteWorld Experience & Earn a Special Badge!
Comments
-
Hello @Frankey, Good day. Upon checking, you already have a case in progress with NetSuite Support. It would be best to work with them on this.
-
Hello @kees.netsuiteadmin, I tried but could not replicate the error you are receiving. This is the code I used for testing: function fieldChanged(context) { var currentRec = context.currentRecord var fieldName = context.fieldId if(fieldName === 'shipmethod'){ log.debug("passed conditional statement"); var carrierId =…
-
Hi @oliver zheng, Per checking, it was mentioned that the Suitelet script runs asynchronously when using https.post.promise, however, the executor (possibly the UE script) waits at the end for all the pending promises to finish. If you do not want to wait until it ends, you may want to consider changing to Scheduled…
-
Hello @User_ZVM32, Good day and thank you for posting this new thread! Hello everyone! We'd greatly appreciate your support in this matter.
-
Hello @User_Q3A12, Good day and thank you for posting this new thread! Hello everyone! We'd greatly appreciate your support in this matter.
-
Hello @Bee Yook, Just to be clear, NetSuite uses two integration APIs. SOAP and REST. Setting up the permission to access the integration record is needed to set both of them up. — REST WEB SERVICES You could create a custom role and perform these steps to add permissions for REST API Setup. (Reference: REST Web Services…
-
Hello @User_5MUAE, Good day and thank you for posting this new thread! Hello everyone! We'd greatly appreciate your support in this matter.
-
Hi @DavidChristiansen, We do not have any documentation pointing to the availability of Bulk Queries and Webhooks in NetSuite in the future. However, it would also be best if you communicate this to your account manager. They may have more information. I hope this helps! If you find this reply to your question useful,…
-
Hi @Aaron McCausland, I wanted to check in to make sure you didn't miss my previous message. If you require any more help, please don't hesitate to reach out. If not, please let us know by clicking the “Yes” button for “Did this answer the question?” below, you’ll be able to help the community members who might have a…
-
Hello @Vernita, Thanks for getting back. I believe the approach you used would be the best option.
-
Hello @Aaron McCausland, What are the other permissions you have in the Permissions > Transactions sublist? Please provide a screenshot or a list. Per checking, the DWI role requires Token-Based Authentication and therefore also needs TBA permission. This could explain why it is not included in your options. Reference:…
-
Hello @Bee Yook, 1) is this Set Up SOAP Web Services same as Set Up Web Services? Yes, the Set Up Web Services is now Set Up SOAP Web Services. 2) what is the latest access rights for Integration role for API only? Can you please explain this further? I'm not sure I understand. 3) I saw in system got a role…
-
Hello @Aaron McCausland, May I know what documentation you are using as a guide? It is not necessary to have the NS Analytics Warehouse to be able to use the Data Warehouse Integration (DWI) role. If you're currently using a custom role, it could be permission-related. for example, if you need to view Sales Orders, you…
-
Hi @Vernita, I wanted to check in to make sure you didn't miss my previous message. If you require any more help, please don't hesitate to reach out. If not, please let us know by clicking the “Yes” button for “Did this answer the question?” below, you’ll be able to help the community members who might have a similar…
-
Congratulations, @Tigran Shahnazaryan! 🏅
-
Happy to help!
-
Hi @KevinWong, I'm touching base to confirm that you didn't miss my previous message. If you find yourself in need of further assistance, please don't hesitate to get in touch.
-
Hello @User_B6T7M, I'm circling back to ensure you saw my previous communication. Should you require any additional support, please don't hesitate to contact us.
-
Hello @User_LN8ZZ, Just a quick follow-up to ensure you didn't overlook my earlier message. If there's anything more, please don't hesitate to inform us.
-
Hi @AdrianCarr, You can set the subtype field's value to 'Sale'. itemRecord.setValue({ fieldId: 'subtype', value: 'Sale' }) I hope this helps! If you find this reply to your question useful, others might as well. By clicking the “Yes” button for “Did this answer the question?” below, you’ll be able to help the community…
-
Hi @oliver zheng, Can you please elaborate further?
-
Hello @Vernita, I haven't tried this myself but if the parent record is a standard record that supports custom sublists, you may be able to achieve a similar result. You can hide the child record's sublist from the custom form and then add the custom sublist to the record. I hope this helps! If you find this reply to your…
-
Hello @Prince Lenin, Good day and thank you for posting this new thread! Hello everyone! We'd greatly appreciate your support in this matter.
-
Hello @BM136, Thank you for posting in the NetSuite Support Community! Hello everyone! Your expertise and knowledge are greatly appreciated, and we ask that you kindly offer your support.
-
Hi @AdrianCarr, Good day and thank you for posting this new thread! Hello everyone! We'd greatly appreciate your support in this matter.
-
Hello @Benjamin Paul - USA, There is no out-of-the-box solution to this but an alternative would be to create a custom field (or fields if you want the created by and last modified by to be separate) and a workflow or a script that would run on beforeSubmit to set the value of the custom fields. I hope this helps! If you…
-
Hi @kees.netsuiteadmin, When I tried it on my test account, I also got the same result as you did so it might be expected, but so far there has not been a related case and I have not found any documentation related to it. Most cases were asking about workflows or scripts.
-
Hi @KevinWong, isBillable only applies to line items. It only appears in the Transaction Saved Search because this type of saved search shares both the main/header line and line items. If I am not mistaken, it only has No as its value regardless of whether the transactions contain billable items or not. I hope this helps!…
-
Hello @User_B6T7M, Instead of using the From Field radio button, you can use the Formula field instead to construct a conditional statement using CASE WHEN. I hope this helps! If you find this reply to your question useful, others might as well. By clicking the “Yes” button for “Did this answer the question?” below, you’ll…
-
Hello @User_LN8ZZ, That is because the error could be caused by the following: Invalid line ID used (hence the suggestion of the non-existent line in the error message) Invalid Field/Sublist, meaning that the field or sublist is not modifiable. However, I ran your code but it worked fine on my end. I only modified the…