In NetSuite, item pricing for a customer is determined based on a hierarchy of pricing options. When multiple pricing rules exist (such as Group Pricing, Item Pricing, and Price Levels), NetSuite uses a specific priority order to determine the final price assigned to a customer. Here’s the pricing hierarchy NetSuite follows, from highest to lowest… Continue reading NetSuite Pricing Hierarchy (Order of Precedence)
Month: March 2025
Customer Login Access To The Contact Of The Customer
To grant a contact login access to the Customer Center in NetSuite, follow these steps: Open the Customer Record and navigate to the System Information tab. Click on the Access subtab. Locate the contact who needs login access and check the appropriate box. In the Role column, select Customer Center from the dropdown list. Set… Continue reading Customer Login Access To The Contact Of The Customer
Custom Role Unable to Access the Smart Count Review Page
When the Smart Count Review page is accessed from a custom role, an error message is shown The error message is “An error occurred while executing the server script. You do not have privileges to view this page”. So the custom role needs to be added to the roles list for this page. To provide… Continue reading Custom Role Unable to Access the Smart Count Review Page
Set NetSuite date format on saved searches
Consider a scenario where you exported records from NetSuite via a saved search flow, but the date fields were exported in the European format D/M/YYYY rather than your preferred format, DD-MMM-YYYY. You might have wondered if the issue was because the Celigo export had used the date format in the company preferences setting, which had… Continue reading Set NetSuite date format on saved searches
How to Update Product Quantity in Magento 2 via API
Endpoint: PUT https://your-magento-site.com/rest/V1/products/SHE-211359BK/stockItems/2911 Headers: Authorization: Bearer {your_token} Content-Type: application/json Body: { “stock_item”: { “qty”: 50, “is_in_stock”: true, “manage_stock”: true, “use_config_manage_stock”: false } }
How can I get an admin token in Magento 2 using the REST API?
To authenticate and obtain an admin token in Magento 2, send a POST request to the endpoint: https://your-magento-site.com/rest/V1/integration/admin/token Request payload: { “username”: “your_admin_username”, “password”: “your_admin_password” } If the credentials are valid, Magento returns a token like this: “abcd1234abcd5678abcd90efgh” ✅ Use this token in your subsequent API requests by adding it to the Authorization header as:… Continue reading How can I get an admin token in Magento 2 using the REST API?
The error message “UPS account number that was provided as the payment method is missing or invalid”
The error message “UPS account number that was provided as the payment method is missing or invalid.” in NetSuite usually occurs due to one of the following reasons: Possible Causes: Incorrect UPS Account Number The UPS account number entered in NetSuite is incorrect, invalid, or has expired. Missing UPS Account Number The UPS account number… Continue reading The error message “UPS account number that was provided as the payment method is missing or invalid”
A Comprehensive Guide to XCUI Test: Automating UI Testing for iOS Applications
In the competitive landscape of mobile app development, ensuring a flawless user experience is crucial. XCUI Test, Apple’s official UI testing framework, provides developers with the tools needed to automate user interface interactions and validate app functionality effectively. This article explores the features, advantages, and best practices of XCUI Test, offering insights into how to… Continue reading A Comprehensive Guide to XCUI Test: Automating UI Testing for iOS Applications
Understanding UI Automator 2: A Comprehensive Guide to Android UI Testing
In the realm of mobile application development, ensuring a seamless user experience is paramount. As applications grow in complexity, the need for robust testing frameworks becomes increasingly important. UI Automator 2 is one such framework that has gained popularity among Android developers and testers for its ability to automate user interface interactions across applications. This… Continue reading Understanding UI Automator 2: A Comprehensive Guide to Android UI Testing
Creating a Procedural Grid Using UVs in a Shader (GLSL)
Creating a Procedural Grid Using UVs in a Shader (GLSL) Procedural textures are a powerful way to create patterns without relying on image textures. In this article, we’ll explore how to generate a grid pattern using UV coordinates in a GLSL shader. Understanding UV Mapping for a Grid In a typical shader, UV coordinates range… Continue reading Creating a Procedural Grid Using UVs in a Shader (GLSL)