Quick Fix to find out missing permissions

To figure out the permissions required to access a certain screen perform the following: First, navigate to that screen as a user who can access it (like an Administrator), then save that URL. Next, try to access the same URL with a user you’re trying to give the permissions to. NetSuite will provide an insufficient… Continue reading Quick Fix to find out missing permissions

Google Cloud Launches New AI Tools For Retailers

In advance of the National Retail Federation 2023 show in New York City, Google Cloud is launching a variety of new AI tools for retailers. These include a shelf-checking tool to help retailers more effectively keep their inventory stocked, an updated ecommerce technology for better product discovery, and a new personalization capability to provide more… Continue reading Google Cloud Launches New AI Tools For Retailers

NetSuite Analytics Warehouse Software

Effective Date: 1/30/2023Region: NOAM, UK, ANZ The NetSuite Analytics Warehouse now contains additional verticalized content for Software companies. Built using the SuiteSuccess design and build process, this content is made available through the SuiteApp Marketplace as a downloadable .dva file for current NSAW subscribers. The content includes 3 projects and 33 visualizations that helps Software… Continue reading NetSuite Analytics Warehouse Software

Pack Station Mobile App has been enhanced and renamed to NetSuite Ship Central.

NetSuite Ship Central enables order fulfillment processing in your location using a tablet or kiosk device. It supports multilevel packing that lets you pack items into cartons, then transfer packed cartons onto pallets. After you complete your packing, you can process the packed items for shipping. What are the capabilities included in NetSuite Ship Central?NetSuite… Continue reading Pack Station Mobile App has been enhanced and renamed to NetSuite Ship Central.

Sales Order> Item Sublist> Price Level Has No Option as Custom

Scenario: Transactions> Sales> Enter Sales Orders Choose a Customer Under Item Tab> Add an Item Note that in the Price Level Column, No Option for Custom Solution: 1. Go to Transactions > Sales > Enter Sales Order.2. Hover your mouse pointer on Customize > click Customize Form.3. Go to Screen Fields tab > Columns subtab.4. Mark the “Show” checkbox for Rate.5. Click Save.… Continue reading Sales Order> Item Sublist> Price Level Has No Option as Custom

Create saved search for Multi-Subsidiary Vendors

When we create vendor searches and vendor saved searches, we can obtain results for all of the secondary subsidiaries assigned to the multi-subsidiary vendor. On the Available Filters subtab, select Subsidiary Fields, and then choose the fields to include as filters. On the Results > Columns subtab, select Subsidiary Fields, and then choose the fields… Continue reading Create saved search for Multi-Subsidiary Vendors

encodeURIComponent

The encodeURIComponent() function encodes a URI by replacing each instance of certain characters with one, two, three, or four escape sequences representing the UTF-8 encoding of the character (will only be four escape sequences for characters composed of two surrogate characters). Compared to encodeURI(), this function encodes more characters, including those that are part of… Continue reading encodeURIComponent

Discount Amount using Saved Search

Go to List -> Saved Search -> Saved Searches -> New -> Transaction Under the criteria subtab: Add field Item fields… -> Type -> Discount Item Under Results subtab: Add Amount column The summary Type is Sum If we want to use the formula for getting Discount Amount in the Results: CASE WHEN {item.type}=’Discount’ Then… Continue reading Discount Amount using Saved Search

In the CSV context script can’t get Custom sublist

If a user event script is deployed for a record, it can’t fetch the custom sublist if the context is CSV import. But it will work in other contexts. If it is aftersubmit, the solution that we can use is to load the record, instead of using newRecord from the script context. Also, we can… Continue reading In the CSV context script can’t get Custom sublist

Resolve Error: “INVALID_TYPE_1_USE_2” for Custom Date/Time Field on Suitelet page if get values from client script

Description An error occurred in the script while running the suite let page after adding the date filters to get the results. SOLUTION: Use N/format module *** Get the custom date using the data type Value *** var fromDateRecValue = context.currentRecord.getValue({ fieldId: ‘custpage_fromdate’ }); *** Change the value to date format *** var fromDateRec =… Continue reading Resolve Error: “INVALID_TYPE_1_USE_2” for Custom Date/Time Field on Suitelet page if get values from client script