glTF Transform

glTF Transform supports reading, editing, and writing 3D models in glTF 2.0 format. Unlike 3D modeling tools — which are ideal for artistic changes to geometry, materials, and animation — glTF Transform provides fast, reproducible, and lossless control of the low-level details in a 3D model. The API automatically manages array indices and byte offsets, which… Continue reading glTF Transform

Planning and Budgeting in NetSuite – Real Scenario (Retail Firm)

In NetSuite, Planning and Budgeting refers to the process of forecasting financial performance, allocating resources, and managing expenses efficiently. It helps businesses automate budgeting workflows, improve forecast accuracy, and make data-driven decisions. NetSuite’s Planning and Budgeting module integrates with financial data to provide real-time insights, ensuring organizations stay aligned with their financial goals. Example: Planning… Continue reading Planning and Budgeting in NetSuite – Real Scenario (Retail Firm)

MatCaps

MatCap (Material Capture, also known as LitSphere) are complete materials, including lighting and reflections, so you can add it to an object and not have any need for, well, lighting and reflections. MatCaps allows you to create a surface material and lighting environment simply by painting an object so that it looks like how you want your… Continue reading MatCaps

Fluid Engine

The general Architecture of the engine is as follows: it has a Fluid Simulator class, which you need to properly initialize before use, and deintialize before you switch out of the scene or close the game, and Fluid GPU Resrouce class, where you need to do the same. Once you have the initialization behind you, you can build a… Continue reading Fluid Engine

PROPOSAL FOR TRANSFER ORDER INTEGRATION IN WEB APP

Proposal Summary  This proposal outlines the integration of Transfer Order Management into the existing web app,  allowing delivery personnel to efficiently track and confirm deliveries of transfer orders. The proposed  solution will also automate the creation of Item Receipts in NetSuite, ensuring seamless  synchronization between the web app, Firebase, and NetSuite.  The integration will focus… Continue reading PROPOSAL FOR TRANSFER ORDER INTEGRATION IN WEB APP

Error in Monday.com to NetSuite Integration using Celigo

When integrating Monday.com with NetSuite through a custom flow, you might encounter several common errors. Here are some of the typical issues and their potential solutions: Authorization Issues: Error: “Your automation has failed due to an authorization issue.” Cause: This can happen if the API token or credentials are incorrect or if there are issues… Continue reading Error in Monday.com to NetSuite Integration using Celigo

Published
Categorized as Celigo

LTL Carrier and Tracking Details

We can create a custom record to store tracking details with the following fields: Carrier (List/Record) Tracking Number (Text) Tracking Link (Long Text / URL) Item Fulfillment (List/Record) Sales order (List/Record) Points to consider in record creation: The Item Fulfillment and Sales Order fields should be marked as “Record is Parent” to appear as sublists… Continue reading LTL Carrier and Tracking Details

Script checks for changes in tax codes and updates them if they have changed:

/**  * @NApiVersion 2.1  * @NScriptType MapReduceScript  */ define([‘N/runtime’, ‘N/record’, ‘N/cache’, ‘N/search’, ‘N/file’],     /**      * @param{runtime} runtime      *  @param{record} record      * @param{cache} cache      * @param{search} search      */     (runtime, record, cache, search, file) => {         /**    … Continue reading Script checks for changes in tax codes and updates them if they have changed:

Payment Record – VOID button

User event Trigger for Void action of Transaction in NetSuite VOID actions do not have a dedicated execution context, meaning they are not explicitly supported in user event scripts. When a transaction is voided, scripts designed to run on the EDIT action may still trigger, potentially causing unexpected behavior for VOID actions. To prevent unintended… Continue reading Payment Record – VOID button

N/cache Module

The N/cache module is part of the NetSuite Applications Suite and is used for temporary, short-term storage of data. This module helps improve performance by reducing the need for scripts to repeatedly retrieve the same data  1.Here are some key features of the N/cache module: Cache Creation: You can create a cache that is available to the… Continue reading N/cache Module