let purchaseorderSearchObj = search.create({type: “purchaseorder”,filters:[[“custbody27”, “anyof”, “2”],“AND”,[“custbody28”, “noneof”, “@NONE@”],“AND”,[“status”, “anyof”, “PurchOrd:F”],“AND”,[“item.class”, “noneof”, “57”, “110”],“AND”,[“item.custitem_jj_product_type”, “noneof”, “3”],“AND”,[“mainline”, “is”, “F”],“AND”,[“type”, “anyof”, “PurchOrd”],“AND”,[[“systemnotes.date”, “on”, “yesterday”], “AND”,[“systemnotes.newvalue”, “is”, “Pending Bill”], “AND”,[“systemnotes.field”, “anyof”, “TRANDOC.KSTATUS”], “AND”,[“systemnotes.type”, “is”, “F”]]],columns:[search.createColumn({name: “internalid”,summary: “GROUP”,label: “Internal ID”}),search.createColumn({name: “custbody28”,summary: “GROUP”,label: “End Destination”})]});let searchResultCount = purchaseorderSearchObj.runPaged().count;
Month: September 2023
Unable to Delete Promotion Code
Description : User is trying to delete a promotion but is getting an error “This record cannot be deleted because it has dependent records”. One of the reasons is that the promotion record was already used on a transaction like Sales Order or Invoice. To delete the promotion, the promotion code has to be removed… Continue reading Unable to Delete Promotion Code
Component Software Testing
Component Testing is a type of software testing in which usability of each individual component is tested. Along with the usability test, behavioral evaluation is also done for each individual component. To perform this type of testing, each component needs to be in independent state and also should be in controllable state. Each component of the software should… Continue reading Component Software Testing
Selenium Manager update (0.4.12)
Selenium Manager 0.4.12 is shipped with Selenium 4.12.0. This release aims to stabilize the features provided so far, delivering a new relevant characteristic: automated browser management for Firefox. A new release of Selenium Manager is out. For this release, we made a relevant decision concerning the Selenium Manager versioning format. From now on, Selenium Manager… Continue reading Selenium Manager update (0.4.12)
Group id and Arifact id in Selenium
Group ID: In Selenium, a “Group ID” is a way to organize and categorize related projects or modules within a broader ecosystem. It helps to group projects that share similar functionalities or are part of a larger project. Think of it as a namespace for your project within the Selenium ecosystem. For instance, if you… Continue reading Group id and Arifact id in Selenium
CodeClimate
CodeClimate is a platform that provides automated code analysis and software engineering insights to help development teams improve the quality of their codebases. It offers a range of features and services aimed at identifying and addressing issues in code, ensuring coding best practices, and enhancing overall software maintainability. Here are some key aspects and features… Continue reading CodeClimate
Item Setup for SuiteCommerce MyAccount
SuiteCommerce MyAccount (SCMA) displays item images in the following ways: Purchase History Returns Invoices Quotes To ensure that the item image appears, you must edit the item records for all items exposed to your SCMA site. The following procedure explains how to do this manually, but you can also use NetSuite’s CSV Import feature to… Continue reading Item Setup for SuiteCommerce MyAccount
Synchronous and asynchronous
Synchronous and asynchronous are two ways of executing tasks or operations in a computer program, and they refer to how the program handles the flow of execution: Synchronous: In synchronous operations, tasks are executed one after the other, in a sequential manner. Each task must complete before the next one begins. Think of it as… Continue reading Synchronous and asynchronous
Express.js
The line import express from ‘express’; is used to import the Express.js framework into your JavaScript or TypeScript file. Express.js is a popular web application framework for Node.js. Once you import Express.js in your file, you can use it to create web applications, define routes, handle HTTP requests, and build server-side functionality. Here are some… Continue reading Express.js
Verify if a Website Has Been Indexed in Google
There are a different ways of checking to see if a website, webpage or domain has been indexed in Google. One of the easiest way to check if an individual webpage has been indexed is to use a search operator.By using either the site: or info: search operators in Google will help a user check if the page has been… Continue reading Verify if a Website Has Been Indexed in Google