NetSuite suitecommerce advanced suitescript

HOW TO CREATE A FULL CALENDAR IN NETSUITE USING SUITELET?

A full calendar can be built in netsuite using suitelet script. This would require you to first download the zip file from https://fullcalendar.io/download. Place this file at file cabinet and note down the url of fullcalendar.min.css, fullcalendar.print.min.css, /lib/moment.min.js, /lib/jquery.min.js, fullcalendar.min.js. You can also create a client script and refer that url in html link ref, so that it can be triggered […]

SuiteScript 2.0

USER EVENT SCRIPT 2.0 TO LOAD A RECORD, READ IT’S VALUE AND SET A FIELD VALUE

Below code loads a sales order, reads it’s sublist values and sets value of a custom field. /** *@NApiVersion 2.x *@NScriptType UserEventScript */define([‘N/record’,’N/log’], // modules used    function(record,log) {           function afterSubmit(context) {            if (context.type !== context.UserEventType.DELETE)             {                  […]

NetSuite suitescript

USING NETSUITE API nlapiSetCurrentLineItemMatrixValue

There are many api’s in Netsuite which are not frequently used in customization’s but has lot of importance. Feel free to reach your NetSuite Solution Provider , TheSmilingCoders for proper netsuite implementation, netsuite consultation , netsuite customization, netsuite Support,netsuite Training, nlapiSetCurrentLineItemMatrixValue can be used to set the price of an item in the item record. This cannot be achieved by using the api nlapiSetLineItemValue. […]