To fetch value from a custom field created using script in advanced pdf template. <td align=”center” margin=”0px” padding-bottom=”3px” padding-top=”3px” style=”border-color: #a09fa3; border-bottom:thin; border-right:thin;” width=”8%”> <#if record.custpage_jj_item_data?has_content> <#assign itemData = record.custpage_jj_item_data?eval> <#list itemData as itData> <#if item.item == itData.itemName> … Continue reading Fetch value from custom field in advanced pdf template
Month: March 2025
Custom field using script to store manufacturer country from item
Script to create a custom field and store the manufacturer country from item record. define([“N/search”, “N/ui/serverWidget”], (search, serverWidget) => { /** * Defines the function definition that is executed before record is loaded. * @param {Object} scriptContext * @param {Record} scriptContext.newRecord – New record * @param {string} scriptContext.type – Trigger… Continue reading Custom field using script to store manufacturer country from item
Unit Testing Template for JIRA comments
Unit Testing (1).pptx
NetSuite 2025.1 Release preview testing of STUDCO
Standard Test cases: SBSUN-RP_StdRP.pdf Customization test cases: Studco_Custo_RP_Testing_2025.pdf RP Issues: RP Issues – Studco.pdf
NetSuite 2025.1 Release preview testing of STERI TEK
Standard RP test cases: STERI_Standard_RP_2025.1.pdf Customizations RP: Steri-Tek_Customization_RP_Testing_2025.1.pdf RP Issues: RP Issues- STERI-TEK.pdf
NetSuite 2025.1 Release preview testing of Marshall Electronics
Standard flow: MARL RP Standard Flow.pdf Customization Test cases: MARL Release Preview Testing 2025.1 Customizations Original.pdf
NetSuite 2025.1 Release preview testing of Crystal Tones
Standard Test cases : Crystal_Tones_Standard_RP.pdf Customization test cases CRYS_Customization_2025.pdf RP Issues:RP Issues – CRYS.pdf
NetSuite 2025.1 Release preview testing of Cleerline Technologies
Standard test cases :CLTG-Standard Flow RP Testing 2025.1.pdf
NetSuite 2025.1 Release preview testing of Aspire Systems
Standard test cases : ASPIRE Standard Flow RP Testing.pdf Customization test cases: Customization Release Preview Testing Document – ASPIRE.pdf Issues / concerns reported: RP Issues ASPIRE.pdf
Removing Unwanted Words by JavaScript
Scenario: The formatFundName function cleans up a string by removing specific words like “The” at the beginning and “Fund” at the end. This is useful for standardizing names while keeping the core meaning intact. It uses startsWith() and endsWith() to check if the string contains these words and then removes them using replace(). /** *… Continue reading Removing Unwanted Words by JavaScript