Building Reusable AI-Powered Tools in NetSuite with the Custom Tool Script Type

What Is the Custom Tool Script Type? NetSuite’s 2025.2 release introduces a new SuiteScript classification: the Custom Tool Script Type. This script type is designed to encapsulate reusable logic — especially for AI-powered interactions — that can be invoked across multiple contexts like workflows, Suitelets, RESTlets, and scheduled scripts. Unlike traditional script types (User Event,… Continue reading Building Reusable AI-Powered Tools in NetSuite with the Custom Tool Script Type

Strict GS1-128 compliance barcode in Advance PDF Template

In the NetSuite advanced PDF template, barcode type GS1-128 is not supported in the <barcode> tag. However, we can usually achieve it by setting the codetype “code128” and setting the value according to the GS1-128 format. But if the GS1-128 barcode we need to create needs a Group separator, we wouldn’t be able to create… Continue reading Strict GS1-128 compliance barcode in Advance PDF Template

Barcodes in Advanced PDF Templates

In the Advanced Template Editor, edit the HTML markup source and use the BFO tag <barcode /> to create a custom bar code. To add a custom bar code to an advanced template: Open the advanced template in the template editor and click the Source Code toggle. Scroll down to the portion of the HTML markup source… Continue reading Barcodes in Advanced PDF Templates

SOAP Webservice Request-Level Preferences

Some SOAP web services preferences can be set at the request level. Request-level preferences override company-wide settings. In this way, the user sending the SOAP request can control these preferences externally and override the company-level SOAP preferences. The available preferences are: disableMandatoryCustomFieldValidation disableSystemNotesForCustomFields ignoreReadOnlyFields runServerSuiteScriptAndWorkflowTriggers warningAsError bodyFieldsOnly pageSize returnSearchColumns disableMandatoryCustomFieldValidation This preference impacts mandatory custom… Continue reading SOAP Webservice Request-Level Preferences

Issue Management

The Issue Management feature lets you set up NetSuite to document and manage issues that occur with the products you manufacture and sell. Customer support reps and quality assurance employees primarily enter issues. However, you can control which roles have access to issues and what settings those roles have access to. Before employees can start… Continue reading Issue Management

Suitescript is not triggering when the record is created or updated through SOAP Webservice

There are several possible reasons why a SuiteScript may not trigger when a record is created or updated in NetSuite through a SOAP request. To ensure that the script runs properly in the SOAP web service context, verify the following points: The script is in Released status and configured to Execute as Administrator. The script… Continue reading Suitescript is not triggering when the record is created or updated through SOAP Webservice

Effective Expense Report Approval Routing: Best Practices for Streamlined Processes

Expense report approval routing is crucial for organizations to efficiently manage employee expenses while ensuring compliance and financial accuracy. Key steps in the process include clear policy guidelines, automated approval workflows, and integration with accounting systems to ensure timely reimbursements and accurate records. Best practices include mobile accessibility, multi-department involvement, and transparent approval status tracking.… Continue reading Effective Expense Report Approval Routing: Best Practices for Streamlined Processes

Partial Fulfillment in Shopify via GraphQ

In Shopify, a partial order typically refers to either: Creating an order with only a subset of items from a customer’s full cart. More commonly, partially fulfilling an existing order — fulfilling only some line items or quantities. This guide focuses on partial fulfillment of existing orders using Shopify’s GraphQL API. Step 1: Retrieve Fulfillment… Continue reading Partial Fulfillment in Shopify via GraphQ

PCDLoader

import * as THREE from “three”; import { OrbitControls } from “three/addons/controls/OrbitControls.js”; import { useEffect, useMemo, useRef } from “react”; import { OBJLoader } from “three/addons/loaders/OBJLoader.js”; import { PCDLoader } from “three/examples/jsm/loaders/PCDLoader.js”; import { GUI } from “dat.gui”; import useSliderStore from “../store/store”; function ThreeScene() { // store // const index: number = 300; const sliderValue… Continue reading PCDLoader