Category Archives: suitescript

Calling ClientScript from Suitelet

Suppose there is a scenario where we want to create a form and we want to perform some action on the client side as in UI of netsuite. So what a can do for the better netsuite customization that we tell you in this tutorial of as a netsuite solution provider.

In Simple words we have to write a suitelet which can call a client script on click of button and that button is … Read the rest


Rest Web Services in NetSuite!!

Yes you read it right this time as your  netsuite solution provider  we want to give insights of future plan of netsuite’s new  technical turnaround. We already know many of us who are experienced in NetSuite Implementation and Netsuite integration were waiting for the REST.

As per the warning provided by oracle netsuite that REST Web Services is a beta feature. The contents of this feature are preliminary and may be changed or discontinued … Read the rest


Things to understand before selecting ERP

Hello folks here in the series if blog this time as a netsuite solution provider we come up with something basic but really important from the perspective of the clients. Sometime few netsuite solution providers do not give more emphasize on the clarity which is supposed to provided to the Clients to show them the pecularities and characteristics of different ERPs present in the ecosystem.

Now here come a question… Why its an important to … Read the rest


Debugging a suitescript in NetSuite

In this NetSuite Training we can use the SuiteScript Debugger to debug server-side scripts and core plug-in implementations.As a netsuite solution provider we recommend you to use the power of debugger .The SuiteScript Debugger provides two debugging modes, which are based on the type of script you want to debug.

Ad hoc Debugging

Enables you to debug code fragments written “on-the-fly.” Withad-hoc debugging  you are debugging a new script or code snippet that does not … Read the rest


HOW TO SET SUBLIST SUB RECORD VALUES IN SUITE SCRIPT 1.0 AND SuiteScript 2.0

As NetSuite Solution provider we are commited to provide you best NetSuite Customization and NetSuite Support tips.
Subrecord values are retrieved and set in different ways in 1.0 and 2.0. Below examples can be used to understand the difference.

Code example for setting Sublist subrecord in 1.0.

 Note some variable have not been defined. Define them as per your accounts requirements

  var load_inv = nlapiCreateRecord(‘inventoryadjustment’, {recordmode: ‘dynamic’});

load_inv.setFieldValue(‘account’, ‘1019’);

load_inv.setFieldValue(‘adjlocation’, 106);

load_inv.setFieldText(‘custbody_cp_transaction’, ‘Coating zero parent

Read the rest

DIFFERENCE BETWEEN CLIENT SCRIPT SAVE FUNCTION AND USER EVENT BEFORE SUBMIT FUNCTION?

A lot of times validation is required on submit of a record and developers can get confused on whether to use client script save function or user event before submit function to perform the validation. The below points can be used to make an informed decision in NetSuite Customization.TRIGGER POINT:
Client script save is triggered only on create, edit and copy.User event before submit is triggered on create, edit, delete, xedit, approve, reject,
Read the rest

SOME FACTS ABOUT NETSUITE SCHEDULED SCRIPT

What are scheduled scripts?Scheduled scripts are Netsuite server side scripts used for processing large amount of data/records.

What is the governance limit of scheduled scripts?10000 units.

How is a scheduled script executed?

In NetSuite Customization Scheduled script can be executed either manually from the script deployment page by clicking on save and execute or it can be executed from the scripts using scheduling api’s or it can be scheduled to run at a

Read the rest

SOME FACTS ABOUT NETSUITE SUITELET SCRIPT

Aa NetSuite solution provider we come up with suitelet.

What are Suitelet scripts?
Suitelets are server-side scripts that operate in a request-response model.

What are the two types of suitelets?

Front end and Back end suitelet.

What are front end suitelets?

In Netsuite Customization Suitelets which are used for designing custom pages that look like standard Netsuite pages. It can be used for creating a form like page to enter user data, creating html page,

Read the rest

How To Trigger Field Change On Click Of Mark All Button?

In netsuite customization ,Field Change Event in client script triggers on change of values in any field in the UI. But when you change the field values using buttons like mark all or add multiple, the client script doesn’t trigger. Netsuite suggests to write a user event script to do this validation. But there are many scenarios where the validation has to be performed in field changed function and it can’t be replaced by User
Read the rest

SOME FACTS ABOUT NETSUITE USER EVENT SCRIPT

In this netsuite training and netsuite customization tutorial we show:
WHAT ARE USER EVENT SCRIPTS?

User Event scripts are server side scripts which are executed when users perform certain actions on records, such as create, load, edit, copy, delete, submit,approve, reject, xedit, cancel etc.

As a specialized netsuite implementation and netsuite solution provider

we first want you to understand:

WHAT IS THE PURPOSE OF USER EVENT SCRIPT?

To validate field values, to add custom fields,

Read the rest