There is a scripting way without using searches to get the record type of a NetSuite record, if you have the internal ID: nlapiGetRecordType({internalid}) This can be run in the browser console on a NetSuite record page. You can also get the internal ID of the current record using: nlapiGetRecordId() Putting them together, you can… Continue reading List of Netsuite commands in browser console- to get the record type
Month: January 2024
Bamboo – continuous integration and deployment tool
Bamboo is a continuous integration and deployment tool that ties automated builds, tests, and releases together in a single workflow Bamboo is an Atlassian product, a continuous integration (CI) and continuous deployment (CD) tool that helps automate software development’s build, test, and deployment processes. It’s designed to work seamlessly with other Atlassian products like Jira,… Continue reading Bamboo – continuous integration and deployment tool
What is W3C Validation
W3C validation is the process of checking a website’s code to determine if it follows the formatting standards. If you fail to validate your website’s pages based on W3C standards, your website will most likely suffer from errors or poor traffic owing to poor formatting and readability. 1. Help Improve Rankings in Search Engines W3C validation helps you… Continue reading What is W3C Validation
Ethical Considerations in Automated Testing
Introduction: Introduce the growing role of automated testing in software development and highlight its impact on the overall quality and efficiency of the software delivery process. The Rise of Automated Testing: Briefly discuss the evolution of automated testing tools and their increasing adoption in the industry, emphasizing the benefits they bring to the development life… Continue reading Ethical Considerations in Automated Testing
“Filename too long error” during git clone in GitHub Desktop
Why is the Error Happening? When doing a git clone from remote repositories on Windows operating systems PowerShell and GitHub Application, the problem “Filename too long” occurs. It only affects Windows users because Git is compiled using MSYS. It utilizes an earlier version of the Windows API; therefore, filenames are limited to 260 characters. How… Continue reading “Filename too long error” during git clone in GitHub Desktop
Resolving Search and Display Issues with NetSuite Customer IDs
NetSuite’s flexibility in customizing customer IDs can sometimes lead to challenges, especially when auto-generated numbers and override permissions come into play. This article addresses an issue where updated sequences render some existing customer records unsearchable, impacting global and transaction search functionalities. The solution involves correcting the Customer ID format and ensuring seamless accessibility. When auto-generated… Continue reading Resolving Search and Display Issues with NetSuite Customer IDs
Removal of Headers of CSV file from the Current Working Directory
Python program for removing headers from csv files import csv,os os.makedirs(‘headerRemoved’, exist_ok=True) #loop through every file in the current working directory for fileName in os.listdir(‘.’): if not fileName.endswith(‘.csv’): continue print(‘Removing Header From CSV’+fileName) #read the csv file skipping the first row csvRows=[] csvFileObj=open(fileName) readObj=csv.reader(csvFileObj) for row in readObj: if readObj.line_num ==1: continue csvRows.append(row) csvFileObj.close()… Continue reading Removal of Headers of CSV file from the Current Working Directory
Boomi – Branch Shape
Branch shape The Branch shape is used when you have several actions that you want to execute in sequence. Each branch consists of a separate path that is executed in sequential order. A branch’s path is executed to completion before executing the next branch. When you configure a Branch shape the Branch Properties dialog opens.… Continue reading Boomi – Branch Shape
Boomi – Process Call Shape
Process Call shape The Process Call shape enables you to execute another process from within a process. The subprocess that is called is considered a separate, distinct process execution. NOTE The process that calls another process is sometimes referred to as a parent or main process. The process that the parent process calls is sometimes… Continue reading Boomi – Process Call Shape
How to invert svg image using css?
Just style the SVG element directly svg { -webkit-filter: invert(1); filter: invert(1); }