My Stuff
Nominate Your Peers for NetSuite Support Community's Choice of the Quarter! Submit your nomination today.
Intelligent Payment Automation version 1.0.3 is now available in the SuiteApp Marketplace. The SuiteApp, powered by BILL, lets you automate payments, manage vendor details, and bank account information within NetSuite. Learn more
No Limits. Just possibilities.
Join us for complimentary one-day events around the world and step into a future fueled by AI and limitless potential. Explore new breakthroughs, sharpen your skills, and connect with experts who are shaping what’s next. Experience bold keynotes, interactive learning, and connections that span the global NetSuite community. Discover what's next at SuiteConnect Tour 2026.
Join us for complimentary one-day events around the world and step into a future fueled by AI and limitless potential. Explore new breakthroughs, sharpen your skills, and connect with experts who are shaping what’s next. Experience bold keynotes, interactive learning, and connections that span the global NetSuite community. Discover what's next at SuiteConnect Tour 2026.
Celebrate Your 2025 Community Recap & Achievements!
We’re excited to announce that the 2025 Community Recap is now available! This special recap highlights the amazing contributions and achievements of our members over the year and celebrates the collective success of our community.
Check your personalized recap to see the impact you made in 2025 and how your efforts helped shape our community’s growth and success.
View Your 2025 Community Recap
Thank you to everyone for your passion, collaboration, and support. Here’s to building an even stronger community together in the year ahead!
We’re excited to announce that the 2025 Community Recap is now available! This special recap highlights the amazing contributions and achievements of our members over the year and celebrates the collective success of our community.
Check your personalized recap to see the impact you made in 2025 and how your efforts helped shape our community’s growth and success.
View Your 2025 Community Recap
Thank you to everyone for your passion, collaboration, and support. Here’s to building an even stronger community together in the year ahead!
Staying Connected During the Holidays
Season’s greetings to you and yours! As we head into the holidays (December 24 – January 4), we want to take a moment to celebrate the incredible strength and collaboration within our community. Even during the break, you can continue to benefit from connecting with peers, searching related threads, posting your questions, and marking helpful replies as “Accepted” in the Support Community.
Please note our dedicated team will be on reduced coverage during this time, and regular responsiveness will resume on January 5. Wishing you a joyful and restful holiday season!
-The NetSuite Support Community Team
Season’s greetings to you and yours! As we head into the holidays (December 24 – January 4), we want to take a moment to celebrate the incredible strength and collaboration within our community. Even during the break, you can continue to benefit from connecting with peers, searching related threads, posting your questions, and marking helpful replies as “Accepted” in the Support Community.
Please note our dedicated team will be on reduced coverage during this time, and regular responsiveness will resume on January 5. Wishing you a joyful and restful holiday season!
-The NetSuite Support Community Team
Comments
-
How did you get this work? I am trying to do something similar. I have a work order with a sublist which is from a custom record with a field with Record is Parent set as the work order. I have a requirement to copy the work order and the sub lists. Is there a way to copy the sublists using insertLineItem or…
-
Hello, thanks for the response! We did actually try to remove them that way, but for whatever reason they didn't go away (unless I'm not setting it up as hidden the same way you're suggesting, see screenshot). We have since been able to hide them on the site, but we used a rather large case statement that explicitly hides…
-
Thanks! So I have to deal with the Latin :-(
-
That's the short name, but the full name is available in Latin characters. Check out the list at Setup>Company>States/Provinces/Counties Is there a way to store the short name in English rather than Latin for other countries?
-
Thanks for the feedback!
-
Thanks Michoel!
-
Thanks for the response. I got the button color get changed in edit mode by adding the script as your instructions. Is there a way to change the color of the button on view mode as well?
-
In that window, prior to showing the items list, I would like to display a custom transaction body field.
-
The code that I attached is a client script referenced on a suitelet. nlapiGetLineItemCount works fine and I get the alert for the count. But it is not adding lines, that is where I have the issue. Thanks!
-
Is it possible to implement this design for a grouped search?
-
Thanks for the response. Basically, I want to mock up the 'Save & Copy' in the time record as we do in sales orders. I know how to add a button in the time form and transfer data to the suitelet. But I couldn't figure out how to display the new time record with the request data. Can anyone guide me with this? Thanks in…
-
Just wondering whether you got this figured out?
-
Try nlapiLookupField('customer',11658,'custentity4')
-
You could deploy an afterSubmit userevent script on transaction that performs a search using the VOIDED transaction search filter and the internalId of the current record to determine if the current transaction is voided. var voided = new nlobjSearchFilter('voided', null, 'is', 'T'); var record = new…
-
This could be done using nlapiSendEmail function.
-
You can write a server script deployed to sales order. You can do it on the afterSubmit function when type=create. Check if you have the desired item in the order and if it is there, send the email. You can take a look at the help document to see how to use nlapiSendEmail function. There are sample scripts using this…
-
Try addressid instead of addressinternalid.
-
In the General Preferences, set the Show Internal IDs to true. Now on the search list view or edit mode, you can see the ID of the search in the 'customsearchXX' format.
-
Use the code that you were using before.. var lineDept = nlapiGetLineItemValue('item','custcol4',1);
-
Try this on validate line function. function itemow(type){ if(type=='item'){ var lineDept = nlapiGetCurrentLineItemValue('item','custcol4'); nlapiSetFieldValue('custbody12',lineDept); } return true; }
-
Hope this helps... if ( request.getMethod() == 'GET' )//GET { caseId = request.getParameter('supportcase'); var form = nlapiCreateForm('XXX', true);//10 POINTS //hidden field to get the case internal id in the suitelet var caseField = form.addField('caseid', 'text', 'Job'); caseField.setDefaultValue(caseId);…
-
You could redirect to the suitelet from the Theme by checking the url of the page. If it is the url for Thank You page, then open the suitelet link in the same window. window.open(suiteletURL, "_parent"); Hope this helps.
-
I've used our logo in the signature. <img alt="" src="http://shopping.na1.netsuite.com/core/media/media.nl?id=11365&c=3593927&h=ecb7fbfc76230f053d98" style="width: 220px; height: 78px" /></p> I just double checked and this image is in the file cabinet with the "Available without login" box checked. Sorry.…
-
I got it working when I copied the bundle to the Repository :-)
-
Hi there, We are facing the same issue. When a bundle updates a script, the parameter values from the deployments are getting cleared out even when the deployments are not updated. Any work around for this? Thanks, Iby
-
Try selecting All Roles under the Audience tab of the search.
-
Where you able to get the client scripts working? I am not able to get any alerts or set the field values. Only thing that happens is if I put just the line of code to returns false, it will stop from adding the item to the cart. Also, if I force an error in the script, it throws an error. I am trying to set the rate of an…
-
You can add code in the Theme to hide or disable the button. You can check the url to find the address page or check the existence of the id of the button or any address fields id to make sure that you are in the right page.
-
Awesome. Thankyou so much for the ideas!
-
I am using multi-currency. I have set Euro & USA for one customer and when I try to create an order with currency as euro, it throws the [Code=INSUFFICIENT_PERMISSION] error. //salesorder.setCurrencyName("euro"); //salesorder.setCurrencyName("EUR"); //salesorder.setCurrencyName("Euro");