When a client performs a Sandbox refresh, these are the steps required to re-setup the sandbox website: Add a new (fake) domain record to the website setup record If the sandbox’s domain is ‘sandbox.website.com’, it won’t let you reuse it immediately (for some reason) Recreate the sandbox domain record (this could take a little bit… Continue reading How to re-setup a sandbox SCS/SCA site after a SB refresh
Month: November 2023
Change the date format as system preference date and time zone using script
Here we have used to fetch the system preference date format and time zone and using the format module. let dateFormat = runtime.getCurrentUser().getPreference({ name: ‘DATEFORMAT’ }); let timeZone = runtime.getCurrentUser().getPreference({ … Continue reading Change the date format as system preference date and time zone using script
How to create custom sequences in premier pro
Adobe Premiere Pro allows users to create custom sequences to match their project’s specific requirements. Here’s a step-by-step guide on how to create custom sequences in Premiere Pro: Open Premiere Pro:Launch Adobe Premiere Pro on your computer. Create a New Project:If you haven’t already, start a new project by selecting “New Project” in the Start… Continue reading How to create custom sequences in premier pro
Decode Function in saved search
We can use decode function for mutilple conditions check like nested if condition. DECODE( (CASE WHEN {item.type} = ‘Inventory Item’ AND {quantity} = {quantityshiprecv} THEN 1 ELSE (CASE WHEN {item.type} = ‘Inventory Item’ AND {quantity} != {quantityshiprecv} AND {closed} = ‘T’ THEN 1 ELSE 0 END) END ), 1, 1, 0 ) Using… Continue reading Decode Function in saved search
Create a subfolder in the file cabinet using script
In the script, we can create a subfolder in the file cabinet. let val = -15; //Internal ID of the parent folder let objRecord = record.create({ … Continue reading Create a subfolder in the file cabinet using script
PROPOSAL FOR CREDIT LIMIT AUTOMATED NOTIFICATIONS
CREDIT LIMIT AUTOMATED NOTIFICATIONS Proposal Summary This proposal outlines the solution designed for automated email il functionality for customers that either reach or exceed the credit limit during order placement. If a customer attempts to place an order that exceeds their credit limit, prevent the order from being fulfilled and send the email to CSR… Continue reading PROPOSAL FOR CREDIT LIMIT AUTOMATED NOTIFICATIONS
Measure software product failures and errors.
What are software product failures and errors?Software product failures and errors are different types of defects that occur in a software product. A failure is when a software product does not meet the expected or specified requirements, or behaves in an unexpected or incorrect way. An error is the underlying cause of a failure, which… Continue reading Measure software product failures and errors.
Formula to find the day difference between two Dates
Scenario: In the vendor record, we have a status called ‘Charity Status’. While creating a vendor record, the status is set to ‘Initial contact’. The status of the vendor will converted to ‘Approved – Active’ after a time period. So the requirement is to calculate the number of days from the ‘Initial contact’ date/ create… Continue reading Formula to find the day difference between two Dates
How do we stay relevant in software testing?
Software testing is a dynamic and evolving field that requires constant learning and adaptation. As technology changes, so do the expectations and challenges of testing software products. How do you stay relevant in software testing and keep up with the latest trends, tools, and techniques? Here are some tips to help you sharpen your skills… Continue reading How do we stay relevant in software testing?
The best practices for regression testing
Regression testing is a type of software testing that verifies that the existing functionality of a software system is not affected by any changes or updates. It is an essential part of ensuring the quality and reliability of software products, especially in agile development environments where changes are frequent and iterative. In this article, we… Continue reading The best practices for regression testing