How to Block Creting Transfer Order when the items are already used in Sales Order
Month: September 2023
Proposal for KPI Dash Board Customization using Excel refresh
Proposal for KPI Dash Board Customization using Excel refresh
What is the difference between .js, .tsx and .jsx in React?
In React, file extensions like .js, .jsx, and .tsx are used to differentiate between different types of files based on their content and purpose. .js (JavaScript): This is the standard file extension for JavaScript files. In a React application, you can use .js files to write React components and application logic. You can write React… Continue reading What is the difference between .js, .tsx and .jsx in React?
Item Receipt From Purchase Order Displays No Records to Show
Scenario The user wants to receive line items from Purchase Orders using the Receive button but the Items and Expenses Tab on Item Receipt displays No Records To Show. Solution Receive the items in Inbound Shipment Open Purchase Order Record Customize the Form On the Sublist Fields tab, Quantity on Shipments: Enter Checkmark Click Save Once the customized form is already saved, the Quantity on Shipments… Continue reading Item Receipt From Purchase Order Displays No Records to Show
Saved Search formula to filter all the item fulfillment Created in the account
The client would like to filter all the item fulfillment that are in shipped status(created through UI or through bulk processing etc)created in the account. We can use the saved search formula as below
Saved search formula to filter item program name in the item fulfillment contains “Brands and People”
In the summary filter add the formula [“max(formulanumeric: CASE WHEN {item.custitemtmg_program_name} != ‘Brands & People’ THEN 1 ELSE 0 END)”, “equalto”, “0”]
Saved Search formula to filter the Item fulfillment with inventory items only
In the summary filter add the formula [“max(formulanumeric: CASE WHEN {item.type}!=’Inventory Item’ THEN 1 ELSE 0 END)”, “equalto”, “0”],
Search filter to Fetch the Item fulfillment which are created after 5 PM Yesterday to 5 PM Today
[“formulanumeric: CASE WHEN {datecreated} BETWEEN TO_DATE(TO_CHAR({today},’YYYY-MM-DD’) || ‘ 17:00:00’, ‘YYYY-MM-DD HH24:MI:SS’) – 1 AND TO_DATE(TO_CHAR({today},’YYYY-MM-DD’) || ‘ 17:00:00’, ‘YYYY-MM-DD HH24:MI:SS’) THEN 1 ELSE 0 END”, “equalto”, “1”]]]
NetSuite Promotion: Buy 4 Get 1 Free
Scenario Customers are eligible for a 100% discount on an additional item when they buy at least four of that items. Solution By utilizing Item Promotion we can create a promotion for buy 4 get 1 free. For that Navigate to List> Marketing> Promotions> New (Item Promotion) Add basic information like “Name” & “Description” Select the… Continue reading NetSuite Promotion: Buy 4 Get 1 Free
Creating a project in next.js
Next.js is a React framework that simplifies server-side rendering, routing, and other important aspects of building web applications. Here’s a step-by-step guide to creating a new project in Next.js:Prerequisites:Node.js and npm: Ensure you have Node.js (LTS version) and npm (Node Package Manager) installed on your system. You can download them from the official website: https://nodejs.org/… Continue reading Creating a project in next.js