saved search to show the customers’ global subscription status as “opt out” in customer records.

Navigate to Lists > Search > Saved Searches > New. 2. Search Type: Entity 3.  Criteria Filter: Select Global Subscription Status Global Subscription Status: select any of Dropdown list: select Soft Opt-Out Dropdown list: select Confirmed Opt-Out  Click Set 4.  Results Field: Select Global Subscription Status Click Add 9. Click Save

Display the TV show details using the API

/**  * @NApiVersion 2.1  * @NScriptType Suitelet  */ define([‘N/search’, ‘N/ui/serverWidget’, ‘N/https’],     /**  * @param{search} search  * @param{serverWidget} serverWidget  * @param{https} https  */     (search, serverWidget, https) => {         /**          * Defines the Suitelet script trigger point.          * @param {Object} scriptContext… Continue reading Display the TV show details using the API

Send email body as a table format

let emailbody = ‘<table border=”1″><tr><th><b>Document Number</b></th><th><b>Customer name</b></th><th><b>Date</b></th><th><b>Amount</b></th></tr>’;                 for (let i = 0; i < salesDet.length; i++) {                     name = salesDet[i].cus;                     tranid = salesDet[i].tranid;        … Continue reading Send email body as a table format

Set customer record as parent of a custom record

Create Custom Record Navigate to Customization > Lists, Records, & Fields > Record Types > New Name: Enter Name Example: business Details ID: Enter ID Click Save Click Edit business Details Click Fields Click New Field Label: Enter Customer Type: Select List/Record List/Record: Select Customer Record is Parent: Enter Checkmark 9.Click Save

Clear the fields when we add same item using the make a copy/copy previous button in the purchase order record

/**  * @NApiVersion 2.1  * @NScriptType ClientScript  * @NModuleScope SameAccount  */ /**      * @param{record} record      * @param{format} format      */     function (record, format) {         /**          * Validation function to be executed when sublist line is committed.        … Continue reading Clear the fields when we add same item using the make a copy/copy previous button in the purchase order record