Identifying Items with Missing Expiration Dates in Lot Numbered Inventory – UI Search

Description: This article addresses the issue of identifying inventory items with missing expiration dates within the NetSuite UI search interface. It outlines the criteria used to pinpoint these items and provides insights into the resulting data, aiming to assist users in resolving this inventory management challenge effectively. Item Search Criteria: Inventory Number : Expiration Date… Continue reading Identifying Items with Missing Expiration Dates in Lot Numbered Inventory – UI Search

Resolve “An error occured while trying to generate the Sitemap.” when Using a Custom Module in SuiteCommerce Advanced

The error “An error occured while trying to generate the Sitemap” can be experienced when generating a Sitemap for the SuiteCommerce Advanced webstore for several factors. One reason that was noted for this error is that when developers create a custom module using a Suitelet. To avoid this error, users need to use the External URL for Suitelet… Continue reading Resolve “An error occured while trying to generate the Sitemap.” when Using a Custom Module in SuiteCommerce Advanced

Create a Saved Search for Web Store Items with No Image

To create a Saved Search that will show all the web store items with no image. We need to follow the below steps Navigate to Lists > Search > Saved Searches > New Click Item Search Title: Enter Title Click Criteria Click Standard Filter:  Select Display in Web Site Select Yes Click Set Select Image… Continue reading Create a Saved Search for Web Store Items with No Image

Resolve Bad AJAX Request when publishing changes for Commerce Categories in Site Management Tools

When publishing in Site Management Tools make sure you have the proper permissions to access the tool. You are likely to run into a Bad Ajax Request error when using a custom role in Site Management Tools. Using an Administrator Role: Navigate to Setup > User/Roles > Manage Roles Edit Custom Role Go to Permissions > Setup sub tab Add Commerce Categories, and set to level Full Click Save

Saved Search to Show Backordered Items in Sales Orders for a Specific Date Range

Applies To Product: NetSuite 2022.1   Scenario User wants to create a Saved Search to show items with backordered quantities in Sales Orders created within a specific date range. Solution Navigate to Reports > Saved Searches > All Saved Searches > New Select Transaction Search Title: Enter Title Click Criteria Click Standard Filter: Note: Always click Add or Set if prompted once Criteria is selected and adjusted as needed… Continue reading Saved Search to Show Backordered Items in Sales Orders for a Specific Date Range

CSV Import of Customer to Add Subsidiary

Applies To Product: NetSuite 2022.1   Scenario Users wanted to add Subsidiary to Customer Record via CSV Import.   Solution 1. Create a CSV file with the following information: Customer Internal ID Subsidiary Name 2. Navigate to Setup > Import/Export > Import CSV Records 3. Import Type : Select Relationships 4. Record Type : Select Customer-Subsidiary Relationship 5. Select File to upload 6. Click Next 7. Data Handling : Select Add 8. Click Next 9. Your Fields : Select Customer… Continue reading CSV Import of Customer to Add Subsidiary

Commerce Extensions

Commerce Extensions offer a wide variety of features and functions that you can use to enhance your Commerce website. Why customize when the feature you want may already be available in an extension distributed by NetSuite? Most of the Commerce extensions introduce new options to the configuration record, making it possible for anyone to configure… Continue reading Commerce Extensions

SuiteCommerce Base Theme Improvements

The SuiteCommerce Base Theme has been updated to include several improvements including the following: Appearance improvements to the theme, including to the header, footer, and MyAccount areas. Updates were made to make the theme more intuitive and aesthetically pleasing, including changes to fonts, backgrounds, and the search field. New CMS areas in the footer and… Continue reading SuiteCommerce Base Theme Improvements

How to send the reset password email link using the firebase in react

using this we can send the email link to reset the password from the firebase email will be sent. From the docs, to send the email: https://firebase.google.com/docs/reference/js/v8/firebase.auth.Auth#sendpasswordresetemail import { getAuth, sendPasswordResetEmail } from “firebase/auth”; const auth = getAuth(); sendPasswordResetEmail(auth, email) .then(() => { // Password reset email sent! // .. }) .catch((error) => { const errorCode… Continue reading How to send the reset password email link using the firebase in react