To create a suitescript 2 folder and service file for loading the file . The code is added below We can fetch the data from the entry point or view file the. The method of fetching the data is added below
Month: October 2023
Newsletter creation with Figma Tool
Setting Up Figma: Sign in to your Figma account or create a new one if you don’t have an account already. Open Figma on your web browser and create a new project. Creating a New File: Click on the “Create new” button in the Figma dashboard. Choose the “New file” option to create a new… Continue reading Newsletter creation with Figma Tool
How to prevent a customer from navigation to checkout from cart when they enter invalid state and zip code in shipping cost estimate section
We can restrict customers from navigating to checkout while entering invalid country and zipcode in cart’s estimate shipping section using this solution. JavaScript: In here, respBody will contain the result of whether the zip code and country are valid or invalid
Restricting the items based on the domain on the search section of webstore
In a multi domain website , we have to filter the items based on the domain. We have already filter the category based on the domain , so the in the PLP, PDP page on the webstore now items are obtaining based on the domain But in case of the search in the webstore the… Continue reading Restricting the items based on the domain on the search section of webstore
Cost Centre in NetSuite
In NetSuite, a cost center structure is a way to organize and track expenses and costs within your organization. It helps you allocate and manage costs to specific departments, locations, or projects, allowing for better financial management and reporting. Here’s how you can set up a cost center structure in NetSuite: Create Departments: In NetSuite,… Continue reading Cost Centre in NetSuite
How to restrict the edit button using user event script
In the user event script, we can disable or remove the standard buttons using button id. If you need to restrict the edit from the lists view use error message and throw that error based on your condition. Do not add try catch block for the error create portion. If you add try catch for… Continue reading How to restrict the edit button using user event script
Q-Test Testing Tool
QTest is a test management tool designed to help software development teams manage their testing efforts effectively. It provides a centralized platform for organizing and tracking test cases, managing test execution, and reporting on test results. QTest was developed by Tricentis, a company specializing in software testing solutions. Test Case Management: QTest allows teams to… Continue reading Q-Test Testing Tool
Browsera- Cross-Browser Testing Tool
Browsera is a web-based automated website testing tool that helps in identifying and reporting cross-browser layout issues and scripting errors on websites. It is designed to streamline the process of testing websites across various browsers and provide a detailed analysis of any discrepancies found. Here are some key features and aspects of Browsera: Automated Testing:… Continue reading Browsera- Cross-Browser Testing Tool
Neurosymbolic AI testing
Neurosymbolic AI testing involves evaluating and validating AI systems that combine neural networks (deep learning) with symbolic reasoning or knowledge representation methods. These systems aim to bridge the gap between traditional symbolic AI, which is strong in logical reasoning and knowledge representation, and neural networks, which excel at handling unstructured data and pattern recognition. Neurosymbolic… Continue reading Neurosymbolic AI testing
To create Holo Circle Gradient with CSS
Solution HTMl Code <div class=”watermark”></div> CSS Code .watermark { position: absolute; top: 24%; right: 70%; pointer-events: none; opacity:0.2; -webkit-transform:rotate(69.754deg); flex-shrink: 0; border-radius: 50%; width: 775px; height: 775px; border: double 125px transparent; border-radius: 50%; background-image: linear-gradient(white, white), linear-gradient(to right, #7EAF00,#D8E7B3,transparent ,transparent);… Continue reading To create Holo Circle Gradient with CSS