How to global search records using custom field?

When creating a custom field for a record, there’s an option to include it in the global search. Enabling this allows the record to be found in global search results using the value entered in that custom field.

Bug Capture Tools

What is a Bug Capture Tool? A bug capture tool (also known as a visual feedback or defect reporting tool) is software designed to help teams identify, document, and report software bugs or website issues efficiently. These tools typically allow users to annotate screenshots, record videos, capture technical metadata (like browser details, console logs, or… Continue reading Bug Capture Tools

REST API for updating an RMA by PATCH method

Scenario: if a user needs to update the RMA record, we can use the method ‘PATCH’ in RESTLET. Method: PATCH End point URL: https://[account id].suitetalk.api.netsuite.com/services/rest/record/v1/returnAuthorization/[RMA record id] sample: https://123456-sb1.suitetalk.api.netsuite.com/services/rest/record/v1/returnAuthorization/123 Request body: {     “item”: {         “items”: [             {            … Continue reading REST API for updating an RMA by PATCH method

Formatting Today’s Date in dd/mm/yyyy Format

 To generate today’s date in add/mm/yyyy format that reflects local time, not UTC, within a SuiteScript environment. let today = new Date(); let localDate = new Date(today.getTime() + (today.getTimezoneOffset() * 60000)); let dd = (‘0’ + localDate.getDate()).slice(-2); let mm = (‘0’ + (localDate.getMonth() + 1)).slice(-2); let yyyy = localDate.getFullYear(); let formattedDate = dd + ‘/’… Continue reading Formatting Today’s Date in dd/mm/yyyy Format

Introduction to GraphQL API

Requirement:   Modern applications demand flexible, efficient, and developer-friendly ways to interact with data. Businesses and developers need an API approach that: Reduces over-fetching and under-fetching of data Allows clients to request exactly the data they need Simplifies integration across multiple data sources Supports scalable and maintainable systems       Concern with REST APIs:… Continue reading Introduction to GraphQL API

Working of the Global Positioning System

Introduction The Global Positioning System (GPS) is a satellite-based navigation system that provides precise location (latitude, longitude, altitude) and time information globally. Operated by the U.S. Space Force, GPS relies on a constellation of satellites, ground control stations, and user receivers to deliver accurate positioning data. This document delves into the technical workings of GPS,… Continue reading Working of the Global Positioning System

Published
Categorized as Robotics

Comparison of metric and imperial system of Measurment in screws

1. Basic Units Metric System (ISO): Uses millimeters (mm) for diameter, pitch, and length. Example: M4 × 12 → 4 mm diameter, 12 mm length. Imperial System (UTS – Unified Thread Standard): Uses inches (″) for diameter and length. Thread pitch is measured in threads per inch (TPI) instead of mm. Example: #8-32 × 1/2″… Continue reading Comparison of metric and imperial system of Measurment in screws

Published
Categorized as Robotics

Add to Cart Button Visibility – PCV Configuration Impact

In certain cases, the Add to Cart button may not appear for logged-in users, even when viewing an item that is available for purchase. This behavior can vary across customers for the same item and is typically linked to the PCV (Price and Customer Visibility) setup. Key Points: The visibility of the Add to Cart… Continue reading Add to Cart Button Visibility – PCV Configuration Impact

Resource & Capacity Planning in ERP: Driving Efficiency with NetSuite

In today’s competitive business environment, companies cannot afford to overlook the importance of resource and capacity planning. Both are critical to ensuring projects are delivered on time, within budget, and with the right level of quality. Within an ERP ecosystem like NetSuite, these processes become even more powerful by integrating real-time data, automation, and reporting.… Continue reading Resource & Capacity Planning in ERP: Driving Efficiency with NetSuite