Discussions
Stay up-to-date with the latest news from NetSuite. You’ll be in the know about how to connect with peers and take your business to new heights at our virtual, in-person, on demand events, and much more.
Now is the time to ask your NetSuite-savvy friends and colleagues to join the NetSuite Support Community! Refer now! Click here to watch and learn more!
Update your Profile with your Support type to get your Support Type badge.
Expand your NetSuite knowledge by joining our Ask A Guru Live sessions. RSVP on this event now.
Don't miss out on our Question of the Week! You only have until tomorrow, September 11, 2025, 2PM ET to comment your answers and earn rewards! Click here for more details.
Uncover the power of data with the Analytics Hub —your ultimate guide to mastering NetSuite Saved Searches and Reports. Simplify the complex and unlock your organization's true potential. Dive into the Analytics Hub now and soar to new heights!
NetSuite 2025.2 Release Notes - This document summarizes the changes to NetSuite between 2025.2 and the previous release.
To help you get the most out of your 2025.2 Release Preview account, review the topics outlined in the 2025.2 Release Preview Guide.
SuiteWorld October 6 - 9, 2025: Agenda Builder is live!
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!
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!
getText inside Suitelet
How do you get the text in a drop down field?
Have tried a lot of different things, such as getParameter, getParameterValues, but I keep on returning either the "key" value, or an error. (Error is that the function doesn't exist)
Looking for the equivilent to getText function inside Suitelet. Any thoughts on that?
p.s. how do you insert code in these forums?
function SimpleForm(request, response) { if ( request.getMethod() == 'GET' ) { var form = nlapiCreateForm('Modem Builder'); var field = form.addField('textfield','text', 'Text'); field.setLayoutType('normal', 'startcol') var manufacturers = form.addField('custpage_manufacturers','select', 'Manufacturer'); manufacturers.addSelectOption('',''); manufacturers.addSelectOption('CP', 'Cradlepoint'); manufacturers.addSelectOption('SW', 'Sierra Wireless'); manufacturers.addSelectOption('DI', "Digi Int'l"); manufacturers.addSelectOption('EN', 'Encore Networks'); manufacturers.addSelectOption('CA', 'CalAmp'); manufacturers.addSelectOption('MT', 'Multitech'); var product_type = form.addField('custpage_product','select', 'Product Type'); product_type.addSelectOption('',''); product_type.addSelectOption('MR', 'M2M Router'); product_type.addSelectOption('MM', 'M2M Modem'); product_type.addSelectOption('MG', 'M2M Gateway'); form.addSubmitButton('Submit'); response.writePage( form ); } else { var form = nlapiCreateForm("Suitelet - POST call" ); var resultField1 = form.addField('custpage_manufacturers_output', 'text', 'Text Field value entered: ' ); resultField1.setDefaultValue(request.getParameter( 'custpage_manufacturers' )); ###########where this only returns the key. But I need the
0