Proposal for Mini Cart and My Account enhancements for personalized products

Proposal Summary This proposal covers the suggetions for enhancing the Cart, Mini Cart and the MyAccount page in the Suite Commerce Website of The Artina Group. Requirement The requirement is to add the enhancement • Cart and Mini-Cart Page: Add a button on the mini-cart and cart page to remove all items with a single… Continue reading Proposal for Mini Cart and My Account enhancements for personalized products

How can I use a Certificate file in NetSuite to sign a HTTP request with Suitescript?

Jira Task : INVER-47 SS2.0 module N/https/clientCertificate holds the answer. Instead of using https.post() use clientCertificate.post() which can send SSL requests with a digital certificate. define([‘N/https/clientCertificate’], /** * @param{clientCertificate} clientCertificate */ (clientCertificate) => { /* 1st create certificate in NetSuite UI (Setup > Pereferences > Certificates) */ const certId = ‘custcertificate_xy’; /* 2nd use certificates… Continue reading How can I use a Certificate file in NetSuite to sign a HTTP request with Suitescript?

How to upload Digital Certificates in NetSuite?

To upload a new certificate: Go to Setup > Company > Preferences > Certificates. At the top of the page, click Create New. In the New Certificate window, on the Details tab, enter a descriptive name for this certificate in the Name field. In the ID field, enter a script ID for this certificate. The script ID of the certificate lets you access the certificate… Continue reading How to upload Digital Certificates in NetSuite?

PROPOSAL FOR CUSTOM SALES ORDER ENTRY SCREEN & PROCESS

Proposal Summary  This proposal outlines the customization of sales order entry screen and sales order management within the production environment as of standard NetSuite sales order management functionality.   Requirement  Create a new sales order form for handling sales order process for Enduro. The new form needs to incorporate additional fields like “Number of pallets,” “Type… Continue reading PROPOSAL FOR CUSTOM SALES ORDER ENTRY SCREEN & PROCESS

NetSuite-DispatchTrack Integration

DispatchTrack is an advanced delivery management software designed to streamline the entire product delivery process. From the moment a customer places an order until it is shipped, DispatchTrack offers comprehensive features to enhance the efficiency and transparency of the delivery process.  Seamlessly managing the entire product delivery lifecycle, DispatchTrack ensures real-time tracking of delivery trucks,… Continue reading NetSuite-DispatchTrack Integration

Setting Up the Manufacturing Task Scheduler

Before you install the Manufacturing Task Scheduler, the following features and preferences are required: Go to Setup > Company > Enable Features. Click the Items & Inventory subtab, check the box for these two features: Check the Manufacturing Work In Process box. Check the Manufacturing Routing and Work Center box. Go to Setup > Manufacturing > Manufacturing Preferences. In the Production Execution section,… Continue reading Setting Up the Manufacturing Task Scheduler

Find a value in array of objects (JavaScript)

This post will discuss how to find a value in an array of objects in JavaScript. 1. Using Array.prototype.find() function The recommended solution is to use the find() method that returns the first occurrence of an element in the array that satisfies the given predicate. The following code example demonstrates this by finding a person with the name John. var… Continue reading Find a value in array of objects (JavaScript)