Regression Testing v/s Re-Testing – User friendly Tech help

Problem:– Understanding the difference between Regression and RE-TestingnnnExample:-nSuppose you were testing some software application and you found defects in some ncomponent.nn 1. You log a defect in bug tracking tool. n2. Developer will fix that defect and provide you with the new build with bug fix.n3. You need to re-run the failed test cases to make sure that…

Expand and collapse single Lightning web component Accordion

Problem: We need an account accordion that can be expanded and collapsed by the user. By default, it should be launched in a collapsed state. Solution: A custom solution was designed by playing with the properties of the current LWC accordion. The key was to use the “allow-multiple-sections-open” property and set the active section “active-section-name”…

lwc – User friendly Tech help

As of now, SFDC does not support Quick Action for LWC Solutions always exists Problem- Using Quick Action to launch custom Lightning web components. Solution:-  Create a Lightning component as a wrapper for Quick action, to launch in subTab by using Open SFDC interface. ({ init: function(component) { var workspaceAPI = component.find(“workspace”); workspaceAPI.getFocusedTabInfo().then(function(response) { workspaceAPI.openSubtab({…

Handling redirect in Vlocity Integration Procedure having response code of 307 – User friendly Tech help

Problem:-Clients api was having redirect policy on the server but its not handled by Vlocity integration procedure(IP), thus its failing with 307 response code n Solution:-  n n Error:- 307 Temporary Redirect n Inside IP create “Remote Action” to refer the Apex class and apex method, which handles the redirect 307 error. n Note:- This…