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.
Comments
-
you should be able to lookup the value in the post based on the internal id of the SELECT passed to the post. you can then pull the name (value) from the list. var type = 'mylistid'; var id = 'internalid in post'; var columnArray = ["name"]; var searchLookUp = search.lookupFields({ type: type, id: id, columns: columnArray…
-
That fixed it, thanks.
-
I was able to get a sublist field to disable within a client script. The following is in the lineInit. var currentRecord = scriptContext.currentRecord; var currIndex = currentRecord.getCurrentSublistIndex({ sublistId: 'item' }); var objSubrecord = currentRecord.getSublistField({ sublistId:'item', fieldId:'amount',…
-
I've developed a solution in suitescript 1.0 to get around this. first: create a user event to add the reject button to the recordtype. You will want to add conditional logic to only display this button in a pending approval state. form.addButton('custpage_buttonreject', rejectButtonText, 'onclick_clientReject()');…