Aadhar Number : Aadhaar is a 12-digit unique identification number issued by the Unique Identification Authority of India (UIDAI) to the residents of India. Goods and Services Tax (GST) : GST is an indirect tax imposed in India on the supply of goods and services, right from the manufacturer to the consumer. It is a… Continue reading India Localization SuiteTax Terms and Definition
Month: February 2022
Test cases when creating a file upload field
When a file uploaded in the field 1. Is the File Explorer Window opening upon clicking the File Name button2. Is the user able to view all the files in the file explorer window3. Is the user able to select the file4. Is the user able to upload the file5. Is the uploaded file viewable6. … Continue reading Test cases when creating a file upload field
Test cases for pdf template of physitrack plc
Sales order sync- Shopify to NetSuite
/** * @NApiVersion 2.1 * @NScriptType MapReduceScript */define([‘N/error’, ‘N/config’, ‘N/record’, ‘N/runtime’, ‘N/search’, ‘N/https’, ‘../Utility/JJ Shopify NS Utility.js’, ‘../Common Library/JJ Shopify Common Library.js’], /** * @param{error} error * @param{record} record * @param{runtime} runtime * @param{search} search */ (config, error, record, runtime, search, https, jjUtil, shopifyLib) => { const shopifyLibrary = shopifyLib.Library; /** * Defines the function… Continue reading Sales order sync- Shopify to NetSuite
Digital Clock in JavaScript
HTML input field non-white spacing validation
In certain situations, there comes some validation to disallow white spaces in input filled. The below-given regex can use for such validation. The above-given Regex shows invalid if, there exists any white space in the input field value. If you want to validate the non-whitespace only for the starting and ending position of the input… Continue reading HTML input field non-white spacing validation
For checking and adding auto http protocol for input type URL validation
In normal input field ‘type = URL’ in the HTML form, has a default validation. It will only allow a URL with prefix protocol. ie, http://www.test.com as a sample domain. Even though www.test.com is a valid domain structure, it will be failed for the above-mentioned validation. It is necessary for http:// or https:// protocol. So,… Continue reading For checking and adding auto http protocol for input type URL validation
NetSuite Manufacturing: A Walk Through
Introduction The manufacturing process proper will always begin with a work order, which is an internal request to build/assemble a certain number and type of one or several inventory items. These items to-be-built could either be final products or intermediate components. For instance, a furniture manufacturing company, has many furniture products each of which is itself assembled… Continue reading NetSuite Manufacturing: A Walk Through
To replace the elements in an array with the elements of another array
We can replace part of an array with items from another array,
What is the ternary operator and how do we can use it?
JavaScript’s ternary operator (?:), also called the conditional operator, is used to replace a conditional statement, most commonly an assignment. For example: As you can tell from the above example, the ternary operator is shorter than using and if…else statement and allows us to assign the resulting value to a variable provided the condition is pretty much… Continue reading What is the ternary operator and how do we can use it?