A. Create a custom transaction body field.1. Navigate to Customization > Lists, Records, & Fields > Transaction Body Fields > New.2. Enter a Name for the custom field. (Ex. Custom Shipping Tax Code)3. Check the Sale check box on the Applies To tab.4. Save. B. Create a workflow that will set the value of the custom field.1. Navigate to Customization > Scripting > Workflows > New.2. Enter a Name for the workflow.3. Set Record Type field to Transaction.4. Set Sub Types fields to <Transaction Type>… Continue reading Custom Field That Will Make Shipping Tax Code or Shipping Tax Rate Value Available on Custom Saved Search
Month: February 2023
Cannot find ‘Print on Check As’ field on Vendor Saved Search
The name of the Print on Check As field is shown differently on the Vendor Saved Search. To add this field on the search results, users should select Print As field instead.
Saved Search to Show Quantity-Based Item Pricing
Navigate to Lists > Search > Saved Searches > New Click Item Enter the Title Click Criteria Click Standard Filter: Select Pricing Fields… Pricing Filter: Select Price Level Price Level: Select any of desired Price LevelExample: Base Price Click Set Click Results Click Columns Field: Select Name Summary Type: Select Group Select Pricing Fields… Pricing Fields: Select Price Level Summary Type: Select Group Select Formula (Numeric) Summary Type: Select Maximum Formula: Enter Case when {pricing.pricelevel} = ‘Base Price’ and {pricing.quantityrange} = ‘1-19’ then {pricing.unitprice} else null end… Continue reading Saved Search to Show Quantity-Based Item Pricing
What is scroll snap type?
The scroll-snap-type specifies how the elements will snap into focus when you stop scrolling, and in what direction. To achieve scroll-snap behavior, the scroll-snap-type property must be set on the parent element, and the scroll-snap-align property must be set on the child elements. Default value: none.
Telling NetSuite that you have clicked the UI button “SAVE” onthe record.
We can do this by writing in the script. getNLMultiButtonByName(‘multibutton_submitter’).onMainButtonClick(this); return false;
Sent an email containing a bullet-point list
var listtodisplay = (function () {// listitems is an array of string to be listedvar string = “”;lisitems.forEach(function (item) {string += (‘<br>• ‘ + item.toString());});return string;})(); concatenate the above string listtodisplay to the Body of the email.
How to shrink a header on scroll with CSS and JavaScript.
Step 1) Add HTML: Create a header: Example Code: <div id=”header”>Header</div> Step 2) Add CSS: Style the header: Example Code: #header { background-color: #f1f1f1; /* Grey background */ padding: 50px 10px; /* Some padding */ color: black; text-align: center; /* Centered text */ font-size: 90px; /* Big font size */ font-weight: bold; position: fixed; /* Fixed position – sit on top of… Continue reading How to shrink a header on scroll with CSS and JavaScript.
Free SuiteApp: Application Performance Management (APM)
Performance Management (APM) How to Install Application Performance Management (APM) To install APM, go to Customization > SuiteBundler > Search & Install Bundles. Use the following information to search for the SuiteApp: Bundle Name: Application Performance Management Bundle ID: 67350 The APM tools are available at Customization > Performance. Review of Application Performance Management (APM) APM was… Continue reading Free SuiteApp: Application Performance Management (APM)
Free SuiteApp: File Drag and Drop
How to Install NetSuite File Drag and Drop To install File Drag and Drop, go to Customization > SuiteBundler > Search & Install Bundles. Use the following information to search for the SuiteApp: Bundle Name: File Drag and Drop Bundle ID: 41309 Location: Production (Account ID 3751218) File Drag and Drop is a managed SuiteApp and… Continue reading Free SuiteApp: File Drag and Drop
Supply Allocation Pop-up Window
The Allocated Demand and Allocated Supply pop-up windows are available with recent release on the Supply ChainSnapshot: On supply order lines, such as purchase orders, transfer orders, or work orders, the allocated demand figure links to a pop-up window. This pop-up window displays the details of each allocated demand order. On inventory lines, the allocated… Continue reading Supply Allocation Pop-up Window