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.
New AI Community Guidelines. Please review and follow them to ensure AI use stays safe, accurate, and compliant.
Keep an eye out for upcoming NetSuite events, including meetups, workshops, and webinars. These sessions are a great way to connect with peers, learn from experts, and stay current on the latest NetSuite updates and best practices. Registration links are provided in each event.
Save $300 - limited to first 1,000 registrants
Join the NetSuite community to innovate, connect, and discover what’s next.
SuiteWorld brings thousands of innovators, builders, and leaders together to learn, connect, and shape what’s next. This October, explore how to build a stronger foundation for growth through inspiring keynotes, major product reveals, hands-on sessions, and unforgettable moments—all in one place for our biggest event of the year. Register now
Join the NetSuite community to innovate, connect, and discover what’s next.
SuiteWorld brings thousands of innovators, builders, and leaders together to learn, connect, and shape what’s next. This October, explore how to build a stronger foundation for growth through inspiring keynotes, major product reveals, hands-on sessions, and unforgettable moments—all in one place for our biggest event of the year. Register now
.save() not saving any item records that are pulled from a search?
Can someone help me troubleshoot my Suitelet? I have usually been working with 1.0 and this is my first 2.0 script where I'm trying to edit/save records.
With 2.0 client-side I'm able to load and save item records from the javascript developer console... this 2.0 suitelet seems to be strictly loading and not saving the records. I'm not getting any error messages. Thanks for any guidance
/** * * @NApiVersion 2.x * @NScriptType Suitelet * @NModuleScope SameAccount */ define(['N/record', 'N/search'], function (record, search) { function onRequest(context) { try { // CREATE SEARCH var itemSearchObj = search.create({ type: "item", filters: [ ["name","contains","mtrx"], "AND", ["matrixchild","is","T"], "AND", ["displayname","isempty",""] ], columns: [ search.createColumn({name: "internalid", label: "internalid"}), search.createColumn({name: "itemid", label: "itemid"}), search.createColumn({name: "displayname", label: "displayname"}), search.createColumn({name: "salesdescription", label: "salesdescription"}), search.createColumn({name: "type", label: "type"}), ] }); // ITERATE THROUGH SEARCH var searchResultCount = itemSearchObj.runPaged().count; var sReturn = ""; log.debug("itemSearchObj result count",searchResultCount); itemSearchObj.run().each(function(result){ sItemID = result.getValue("itemid"); sItemInternalID = result.getValue("internalid"); sItemName = result.getValue("displayname"); // LOAD ITEM RECORD var oRecord = record.load({ type: record.Type.INVENTORY_ITEM, id: sItemInternalID, isDynamic: false, defaultValues: null }); oRecord.setValue({ fieldId: "salesdescription",
0