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.
.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