Description: This was my previous task . While customer is registered , get the domain name in the backend and set the domain field created.So, we can understand the website from which website the customer is registered. Solution: 1. First i created new extenstion Customer Record Extension. . 2. The extension requires only a suitescript file and a… Continue reading While customer is registered , get the domain name in the backend and set the domain field created.
Month: March 2023
How Can I Get Previous NetSuite Release Notes?
Have you ever wondered where to find release notes of older releases? I faced a similar inquiry recently, and it transpired to be relatively straightforward. The release notes’ URL structure has remained consistent throughout the years: https://system.netsuite.com/app/help/helpcenter.nl?fid=ReleaseNotes_<YYYY>.<number>.0.pdf Replacing the <YYYY> placeholder with the target year e.g. 2023, and <number> with 1 or 2 does the… Continue reading How Can I Get Previous NetSuite Release Notes?
Resolve error: “Invalid orderstatus reference key H.” When Changing Order Status Using Workflow
User is trying to override the Order Status to Closed using workflow, it returns the error “Invalid orderstatus reference key H”. Transactions can be set the Order Status to Closed only if all Items on the Order are also Closed. Below is a sample of workflow that sets the Order Status to Closed after clicking… Continue reading Resolve error: “Invalid orderstatus reference key H.” When Changing Order Status Using Workflow
how to add current domain name on a sales order page with the help of transactionbody field
how to add current domain name on a sales order page with the help of transactionbody field to achieve this first we need to add the custom field in the Add a custom field in the Sales order and fill the field with value from website. step 1: Create a transaction body field. Customization ->… Continue reading how to add current domain name on a sales order page with the help of transactionbody field
How to disable scroll to change number in field using JavaScript
When a number is entered in a container and clicked on a button the scroller option to change the number is disabled to fixe the entered value. Given an HTML document containing <input type = “number”> attribute and the task is to disable the mouse scroll wheel to change number value using JavaScript/jQuery. Approach: Select… Continue reading How to disable scroll to change number in field using JavaScript
How to add a sales order payment link and make the link dynamic in the extension?
It is useful to autofill the correct payment amount of any particular sales order by clicking on the payment button on the website. Then it will navigate to external payment link with the payment amount. The sales order Id is stored in a variable and after that it is used in the Payment link which… Continue reading How to add a sales order payment link and make the link dynamic in the extension?
Different items that can be managed in NetSuite.
NetSuite is a comprehensive cloud-based enterprise resource planning (ERP) software that provides a wide range of functionalitiesand tools to help businesses manage various aspects of their operations.Some of the different items that can be managed in NetSuite include: Inventory ItemNetSuite inventory item records let you track the quantity and value of your inventory. Your balance… Continue reading Different items that can be managed in NetSuite.
How to Check the SSL certificate of a particular domain is valid or not in the browser.
For checking the validity date of SSL certificate of a domain follow the steps given below: (Currently in the example showing steps in chrome web browser other browsers also have similar steps) Load the domain in the browser you want to test. Click on the padlock icon and then click the connection secure: 3. Then… Continue reading How to Check the SSL certificate of a particular domain is valid or not in the browser.
Non-functional Testing
Software testing of the non-functional kind is done to confirm that the application meets its non-functional requirements. It checks to see if the system is acting in accordance with the specifications or not. It examines every component that isn’t examined during functional testing. Software testing methods called “non-functional testing” examine the system’s non-functional characteristics. Non-functional… Continue reading Non-functional Testing
How to force Input field to enter numbers only using JavaScript
As there are many ways to force the input field to take input-only numbers. The two methods by which we can do one of which is using by ASCII code and other is by using the replace() or isNaN() fn. First method : The example below illustrate Input[type=”text”] allows only Numeric Value using Javascript with the help… Continue reading How to force Input field to enter numbers only using JavaScript