User wants to remove the Currency Symbol in Customer Statement 1. Navigate to Lists > Accounting > Currencies 2. Click on the Currency to edit 3. Mark the Override Currency Format checkbox 4. Clear the Symbol field 5. Click Save
Author: Keerthy Davis
Download Estimate CSV File
User Event /** * @NApiVersion 2.1 * @NScriptType UserEventScript */ define([], () => { /** * Defines the function definition that is executed before record is loaded. * @param {Object} scriptContext … Continue reading Download Estimate CSV File
Reasons Why Locations Might Not Be Assigned Automatically – ALA
Sometimes, a location that you expected to be assigned is not in fact assigned to a sales order line. There are a number of reasons why this might happen. Here are some of the most common things you can check to determine why a location was or was not assigned: Insufficient stock at the location.… Continue reading Reasons Why Locations Might Not Be Assigned Automatically – ALA
Create Folder in File Cabinet using script
/** * @NApiVersion 2.1 * @NScriptType UserEventScript */ define([‘N/record’], (record) => { const FOLDEROBJ = { “customer” :1160, “vendor” :1161, “inventoryitem” :1164, “lotnumberedinventoryitem”… Continue reading Create Folder in File Cabinet using script
Scheduled script to set the Last Successful Login date timestamp in Employee record
/** * @NApiVersion 2.1 * @NScriptType ScheduledScript */ define([‘N/search’, ‘N/record’], function(search, record) { /** * @description Main function * @param {*} context */ function execute(context) { try { LastSuccessfulLoginDateOfEmployee(); } catch… Continue reading Scheduled script to set the Last Successful Login date timestamp in Employee record
Blank Page Is Printed When Printing Packing Slip of a Sales Order or the Related Item Fulfillment
Blank page is showing when printing Packing Slip via Transactions > Management > Print Checks and Forms > Packing Slips and Return Forms or via printing from an Item Fulfillment transaction. A. See if there is Drop Shipment PO transaction created Navigate to Transactions > Sales > Enter Sales Orders > List Click View on the concerned Sales Order transaction On the Sales Order > Items tab, check the Create PO column B. If there is a Drop… Continue reading Blank Page Is Printed When Printing Packing Slip of a Sales Order or the Related Item Fulfillment
Customize Item Fulfillment Form and Move the Packages or Carrier Fields to the Primary Information
The user wants to customize the Item Fulfillment form and try to move the packages or carrier fields to the primary information. Solution :- Carrier and Packages is not customizable by design as data displayed in these areas are controlled by several settings/preferences. Moreover, the fields customers would want to move (Dimensions: length, width, height, 3rd… Continue reading Customize Item Fulfillment Form and Move the Packages or Carrier Fields to the Primary Information
Apply Discount in Amount column in SO
/** * @NApiVersion 2.1 * @NScriptType UserEventScript */ /******************************************************************* * MAGT-808 Apply Discount in Amount Calculations in SO * *************************************************************** * * Date: 24-10-2024 * * Author:Jobin & Jismi IT Services LLP. * * Description: Apply Discount in Amount Calculations in SO * * Created By: JJJ0135, Jobin & Jismi IT Services LLP * *… Continue reading Apply Discount in Amount column in SO
File Cabinet FreeMarker Directive
If you edit templates in the source code, you can use the filecabinet FreeMarker directive to reference files directly from the File Cabinet. By using this directive, you can embed text, images, and fonts that are stored in the File Cabinet into the template. For example: <@filecabinet nstype=”image” src=”https://<accountID>.app.netsuite.com/core/media/media.nl?id=21&c=4130331&h=fb3b8b4ac4f67b2c369b”/> When you add an image to… Continue reading File Cabinet FreeMarker Directive
Saved Search for List IFs that are ready to fulfill in a specific location
let salesorderSearchObj = search.create({ type: “salesorder”, settings:[{“name”:“consolidationtype”,“value”:“ACCTTYPE”}], filters: [ … Continue reading Saved Search for List IFs that are ready to fulfill in a specific location