Amazon Seller Fulfilled Prime Add-On in NetSuite Connector

Amazon Seller Fulfilled Prime (SFP) is a program that allows qualified sellers to get the Prime badge on their products and to deliver directly to Prime subscribers using their own shipping operation. NetSuite Connector does not require any additional setup to process Amazon SFP orders. SFP orders sync using the same NetSuite Connector process that… Continue reading Amazon Seller Fulfilled Prime Add-On in NetSuite Connector

Vendor Bills in Amazon Settlement Sync

Expenses recorded against a sales order in Amazon settlement reports are posted as bills in NetSuite. As vendor bills, these expenses can be properly claimed from tax departments. The Amazon Settlement sync processes settlement adjustments from Amazon into NetSuite as any of the following types: Order modifications – Fees that Amazon charges per order. To… Continue reading Vendor Bills in Amazon Settlement Sync

Example of a RESTlet that Manipulates Scheduled Script

     /**  * @NApiVersion 2.x  * @NScriptType Restlet  */ define([‘N/task’], function(task) {   return {     get : function() {       var mrTask = task.create({         taskType: task.TaskType.SCHEDULED_SCRIPT       });       mrTask.scriptId = 488;       mrTask.deploymentId = ‘customdeploy_scheduledscript’;       mrTask.params = {         custscriptcustom_data: ‘data’       };       mrTask.submit();       return “Scheduled script updated”;     }   } });       

SSP Applications (SuiteScript 1.0 Compared with SuiteScript 2.0)

SSP applications can be written in both SuiteScript 1.0 and SuiteScript 2.0 but the two versions of SuiteScript cannot be combined in a single SSP application. Each SSP application can contain scripts written in either SuiteScript 1.0 or SuiteScript 2.0. The version of SuiteScript affects how the SSP applications are created, installed, and deployed. Note: Enabling… Continue reading SSP Applications (SuiteScript 1.0 Compared with SuiteScript 2.0)

Hide a Column in a Sublist

Scenario You are the NetSuite administrator for your organization. You use the invoice record type for your invoices. This record type includes everything you need to manage your invoices, but it also includes some fields you don’t need. In the Item sublist on an invoice record, you don’t need to populate the Item field. This… Continue reading Hide a Column in a Sublist

Validate Order on Entry

Customization Details This customization for this use case includes: A custom field (Cases per Pallet) that is used to store the number of cases of the item that are included on one pallet A custom field (Item Weight) that is used to store the weight of a single item A client script triggered on the… Continue reading Validate Order on Entry