Create custom records using recmach function in script

The word recmach is attached to the custom records id when the record is attached into another record. We can use this function to create custom records instead of using record.create function. So, the governance limit is controlled.   newRecord.selectNewLine({ sublistId: ‘sublistid’ });                     newRecord.setCurrentSublistValue({  … Continue reading Create custom records using recmach function in script

Scheduled Script To Delete Address From Employee Record

The client needs to delete all the addresses in the employee record. We have created a scheduled script to delete them without affecting any other fields. /**  * @NApiVersion 2.1  * @NScriptType MapReduceScript  */ define([‘N/record’, ‘N/search’],     /**  * @param{record} record  * @param{search} search  */     (record, search) => {      … Continue reading Scheduled Script To Delete Address From Employee Record

Create a Custom List using Suitelet

Sample to create a custom list using Suitelet. To create a custom list, we use “serverWidget.createList” and then choose the style of the list which includes the following – Later add the columns to the list using ”list.addColumns”. This includes parameters like – id label type align (Optional) Finally, Add rows using “list.addRows” /** *… Continue reading Create a Custom List using Suitelet

JJ KB testing

Test content One Two  <td class=”addressheader” align=”left” style=”margin-top:2px;”>Account ID: ${parameters.data._cseg5__text} </td>  <td class=”addressheader” align=”right” style=”margin-top:2px;”>Währung : ${parameters.data._currency__text} </td>  <!–Statement for Fund Currency–>

Pushing Customer Data to Numerik

Below code defines the pushing customer data to Numerik /** * @NApiVersion 2.1 * @NScriptType UserEventScript */ /******************************************************************************* * Date : 19 July 2021 * * Author: Jobin & Jismi IT Services LLP * Script Description : Pushing Customer data to numerik * ******************************************************************************* * DEPLOYMENT: CUSTOMER * This script summarises on pushing Customer data… Continue reading Pushing Customer Data to Numerik

Pushing Customer Data to Numerik

Below code defines the pushing customer data to Numerik /** * @NApiVersion 2.1 * @NScriptType UserEventScript */ /******************************************************************************* * Date : 19 July 2021 * * Author: Jobin & Jismi IT Services LLP * Script Description : Pushing Customer data to numerik * ******************************************************************************* * DEPLOYMENT: CUSTOMER * This script summarises on pushing Customer data… Continue reading Pushing Customer Data to Numerik

How to fetch saved search data with the title

Recently, I worked on a single-page application(SPA) for rendering saved search data from NetSuite. The client wanted to reuse the application for multiple saved searches. So, the app was designed with a search internal ID as a URL parameter and the data was fetched using the ID. However, the client also wanted to show the… Continue reading How to fetch saved search data with the title