Jul 27 2017
Posted By : aecc
Comments
In NetSuite, there is a kind of record called subrecord, it is similar to the record and most of the record APIs can be used on the subrecord. The most significant different between the record and a subrecord is that the subrecord must have a parent record, the subrecord cannot exist in the system without … Continue reading “Working with Subrecord on SuiteScript”
Jul 27 2017
Posted By : aecc
Comments
Netsuite Provides the SuiteFlow to customize the system functionality and business process without any scripting needed. Compared with SuiteScript, it has a similar functionality except the following differences *For SuiteFlow, user can define the SuiteScript as SuiteFlow Actions, and use them in the SuiteFlow. Let’s start with creating a simple SuiteFlow for Quote/Estimate Record. Go … Continue reading “NetSuite SuiteFlow.”
Jul 27 2017
Posted By : aecc
Comments
Saved Search in NetSuite is a powerful tool. One can create a custom field and use a Saved Search to auto populate the custom field without the help of scripting. Each time the form contains this custom field is displaying, the saved search will run and populate the field with data from saved search. Today … Continue reading “Source Custom Field from Saved Search.”
Jul 27 2017
Posted By : aecc
Comments
Version 2.0 of SuiteScript allows developers to use modules to better structure their code. For example, you load a message module if you need to display a message at the top of the screen. There are two main functions in SuiteScript 2.0: define and require. When you use “define” the system loads all modules before … Continue reading “SuiteScript 2.0.”
Jul 27 2017
Posted By : aecc
Comments
NetSuite provides a way the user can add their own plugin into system. Other scripts can instant the plugin and call the function in the plugin to avoid repeat codes. Let’s start from building a plugin and install it in the system We will build a plugin that find all the Sales Orders in the … Continue reading “How to create a NetSuite Custom Plugin using SuiteScript 2.0.”
Jul 27 2017
Posted By : aecc
Comments
In SuiteScript 1.0, the Scheduled Script is often used to do some scheduled work or bulk operations in the system such as bulk/periodic updating/creation records. SuiteScript 2.0 provides a more powerful way than the Scheduled script in API 1.0 with the Map/Reduce SuiteScript. Map/Reduce Script is a server side script that is capable to handle … Continue reading “Map/Reduce SuiteScript 2.0”
Jul 27 2017
Posted By : aecc
Comments
This article is about the basic setup and working procedures using manufacturing routing. The Manufacturing Routing feature enables you to schedule and record manufacturing operational activities against a complex work order that requires multiple steps. To enable “Manufacturing routing” feature: 1) Go to Setup > Company > Setup Tasks > Enable Features. 2) Click the … Continue reading “Manufacturing routing in NetSuite.”
Jul 27 2017
Posted By : aecc
Comments
*This feature is available in OneWorld Account Only There is a powerful feature in NetSuite that can manage the intercompany sales transactions between different subsidiaries and be able to automatically generate elimination journal entries. In this way, the user has no need to manually create and track intercompany transactions and manually create and post elimination … Continue reading “Arm’s Length – Inter-company Sales and Billing Transactions in NetSuite.”
Jul 27 2017
Posted By : aecc
Comments
Here I’m going to describe a process on how to create a custom button that shows a page with a custom HTML code. The first step is to create a user event script that executes before the page is loaded. The following code shows an example of the implementation: function beforeLoad_showAllCustomers(type, form, request) { var … Continue reading “How to implement a suitelet with custom HTML code.”
Jul 26 2017
Posted By : aecc
Comments
To implement a custom html page in NetSuite you need to go through the following steps: 1) Create an HTML page with integrated javascript code: The code above shows the structure of the HTML page. Here we use AngularJS framework to communicate with the server restlet api. We use $http service to extract JSON data … Continue reading “How to implement a custom HTML (with integrated javascript) that uses restlet to get data.”
How to create .zpl extension file to print custom Shipping Labels directly to a Zebra printer
How to create a button in NetSuite to open a saved search result
How to Prevent User from Editing the Record — Using Client Side Script.
Include Custom Module in NetSuite 2.0 Script.
Overcome saved search each() function limitation