We can edit the values inside a Custom list using script. But to create a new custom list is not possible. Script:var parentOption = record.load({type: ‘customlist’,id: optionDetaildarr[0][“optionInternalID”],isDynamic: false,}); var numLines = parentOption.getLineCount({sublistId: ‘customvalue’}); parentOption.setSublistValue({sublistId: “customvalue”,fieldId: “value”,value: optionalListValue,line: numLines});parentOption.setSublistValue({sublistId: “customvalue”,fieldId: “abbreviation”,value: optionalListValue,line: numLines});var id = parentOption.save();
Author: Bibin Babu
Custom List Search Possibility
We can search a custom list in netsuite and get the values from the custom list using saved search. For that: NavigateCustomization> Lists> Click on the “List” link on the respective lists that to be searched> search. Script:var customlist92SearchObj = search.create({type: listID,filters:[[“name”, “is”, option]],columns:[search.createColumn({name: “name”,sort: search.Sort.ASC,label: “Name”}),search.createColumn({ name: “internalid”, label: “Internal ID” })]});
Pickrr Integration Functional Document
Proposal summary An integration to place an order in Pickrr when the status of Item fulfillment is changed to “Shipped” for a particular vendor in netsuite. Requirement API integration for integrating Netsuite to Pickrr for order creation. Our Solution We will be creating a script that will check whether the status of item fulfillment is… Continue reading Pickrr Integration Functional Document
Sales order form Update, Netsuite Magento Integration Functional Document.
Proposal summary A process to update sales order memo field and sales order status change. Requirement If Magento Status = ‘Closed’ & RMA has been created in NS Then update Sales Order > Memo field = “Full – ” + RMA ID Else then update Sales Order > Memo field = “Partial – ” +… Continue reading Sales order form Update, Netsuite Magento Integration Functional Document.
Matrix Item Creation, Netsuite – Magento Integration Functional Document
Proposal summaryA process to create and update Matrix items through API calls from Magento to Netsuite.RequirementTo create and update matrix parent items as well as child items as per the request. The API call will be for either creating parent items or adding subitems under the parent items. Our SolutionAs per the understanding, the JSON… Continue reading Matrix Item Creation, Netsuite – Magento Integration Functional Document