Adding Item Fields to Transaction Records for Advanced PDF Usage

One of the limitations of Advanced PDF is that for each line in the transaction record, it can only read the fields that are explicitly on the transaction record. It cannot traverse over to the item record and read those fields. We can source item fields on Advanced PDFs by adding those fields to transaction… Continue reading Adding Item Fields to Transaction Records for Advanced PDF Usage

Uses of WP activity log plugin

The WP Activity Log plugin is a tool designed for WordPress websites to keep track of user and site activities. It’s particularly useful for site administrators and owners who want to monitor changes, user logins, and other important events happening on their WordPress site. Here are some key features commonly found in WP Activity Log… Continue reading Uses of WP activity log plugin

Fixing Broken Internal Links on Your WordPress Website: A Comprehensive Guid

To address the issue of broken internal links on a WordPress website, you can use several tools and plugins designed specifically for this purpose. Here are the steps you should follow: 1. Identify Broken Links First, confirm the broken links identified by Ahrefs. You can use additional tools to ensure you have a comprehensive list… Continue reading Fixing Broken Internal Links on Your WordPress Website: A Comprehensive Guid

Merging Saved Search and SuiteQL Queries

It is possible to execute a SuiteQL query that will run exclusively for the results of a saved search. We can run a saved search and can write queries only to be executed for the data or results of the saved search result. Example: let internalIds = []; inventoryitemSearchObj.run().each(function (result) { internalIds.push(result.id); return true; });… Continue reading Merging Saved Search and SuiteQL Queries

search.lookupFields Function

In NetSuite’s SuiteScript, the search.lookupFields function is used to perform a direct lookup of a record’s fields without having to load the entire record. This can be useful for retrieving specific field values quickly and efficiently. Here’s a basic example demonstrating how to use search.lookupFields in SuiteScript 2.0: /** * @NApiVersion 2.x * @NScriptType UserEventScript… Continue reading search.lookupFields Function

Gorilla Testing

Gorilla Testing is a type of software testing which is performed on a module based on some random inputs repeatedly and checks the module’s functionalities and confirms no bugs in that module. So based on the pattern of Gorilla Testing, it is also known as Torture Testing, Fault Tolerance Testing or Frustrating Testing. It is… Continue reading Gorilla Testing

Retrieve the count of Quantity Pricings from an item record for use in scripting

The field “price1headercount” can be used to retrieve the count of quantity pricing permitted for an item, and a loop can be implemented to customize them based on this count. Example script: define([‘N/record’], /** * @param{email} email * @param{record} record * @param{runtime} runtime * @param{search} search */ (record) => { /** * Defines the function… Continue reading Retrieve the count of Quantity Pricings from an item record for use in scripting

Pairwise Software Testing

Pairwise Testing is a type of software testing in which permutation and combination method is used to test the software. Pairwise testing is used to test all the possible discrete combinations of the parameters involved. Pairwise testing is a P&C based method, in which to test a system or an application, for each pair of… Continue reading Pairwise Software Testing