Scenario The user wants to know the reason of automatic change in value of Printed Picking Ticket field in the System Notes of a Sales Order. Solution The value of the Printed Picking Ticket field on System Notes of a Sales order would change from F to T once the Picking Ticket is printed from the Sales Order. If the Sales Order is only partially fulfilled, the Printed Picking Ticket field would reset… Continue reading Reasons of Printed Picking Ticket Field Value Change on Sales Order’s System Notes
Category:
How RCM Works in NetSuite (India Localization)
How RCM Works in NetSuite (India Localization) India Localization SuiteTax Engine NetSuite provides a free managed SuiteApp called India Localization SuiteTax Engine that supports GST compliance, including RCM. It integrates with transactions to apply GST rules based on Indian tax laws. RCM Configuration RCM is triggered when purchases are made from vendors where GST liability… Continue reading How RCM Works in NetSuite (India Localization)
Liquid Neural Networks
Liquid Neural Networks Liquid Neural Networks (LNNs) are a new type of AI created by MIT that behave more like living neurons than fixed computer models. Instead of using static equations, each neuron in an LNN updates its internal state continuously. This lets the network adapt in real time, making it ideal for fast-changing or… Continue reading Liquid Neural Networks
Automated Location routing for Powerpony orders
Requirement: For some specified SKUs, and based on the ship state the Powerpony orders need to default to east cost and west cost locations. Solution: In the Celigo flow achieving this is not possible as adding complex conditions is not feasible. Hence we can add a server scripts to set the location values based on… Continue reading Automated Location routing for Powerpony orders
What Are Microservices
What Are Microservices? (Short & Simple Guide) Microservices is a modern software architecture style where a large application is broken down into many small, independent services. Each service focuses on doing one specific task and can be developed, deployed, and scaled separately. Key Features Independent Services: Each microservice runs on its own and doesn’t depend… Continue reading What Are Microservices
Create a Library Function
/** * @NApiVersion 2.x * @NScriptType Suitelet * @NModuleScope Public */ define([ ‘../Library.FHL.2.0.js’ , ‘N/record’ , ‘N/search’ ], function(Library, Record, Search) { /** * Initialise function for suitelet * * @param {Object} context * @return {Any} data */ … Continue reading Create a Library Function
Node.js code for making a POST API call to NetSuite using OAuth 1.0.
const axios = require(‘axios’); const CryptoJS = require(‘crypto-js’); const ACCOUNT_ID = ”; const ENDPOINT = “; const AUTH = { consumerKey: ”, consumerSecret: ”, token: ”, tokenSecret: ” }; function generateOAuthHeader(httpMethod, url) { try { const nonce = Math.random().toString(36).substring(2); … Continue reading Node.js code for making a POST API call to NetSuite using OAuth 1.0.
Joining Datasets in NSAW
Joining datasets in NetSuite Analytics Warehouse (NSAW) allows you to combine information from multiple sources into a single dataset for reporting and dashboards. When you add multiple record types, NSAW uses SQL-style joins to determine how the data relates. Inner Join Returns only the records that have matching values in both datasets. Best when you… Continue reading Joining Datasets in NSAW
Setting up Tax Deduction at Source (TDS) in NetSuite
Setting up Tax Deduction at Source (TDS) in NetSuite involves enabling the SuiteTax feature and installing the India Localization bundles to configure specific rules, rates, and vendor information. The process ensures accurate, automated TDS calculations and compliance with Indian tax regulations. Prerequisites Enable SuiteTax: This is the foundational tax engine in NetSuite needed for the… Continue reading Setting up Tax Deduction at Source (TDS) in NetSuite
Upcoming Change to the SuiteAnalytics Connect ODBC Driver [February 16, 2026]
The root certificate for the SuiteAnalytics Connect Service will be rotated on February 16, 2026. After this change, old versions of the Linux ODBC driver for SuiteAnalytics Connect will stop working. If you are using a Linux ODBC driver, upgrade your driver to version 8.10.181 and adjust the Truststore parameter before February 16, 2026. If you… Continue reading Upcoming Change to the SuiteAnalytics Connect ODBC Driver [February 16, 2026]