User friendly Tech help – Helping ppl learn

Ignore trivial things and train your mind to think big Solution:-  Create CustomMetadata type in salesforce (Setup > custom metatype) Create Extract Dataraptor Select object = “custom metadata Name“ Do the mapping of input JSON and expected output JSON Preview runs the datatraptor   n n Tags Dataraptor, salesforce, Vlocity n n CONTROL YOUR EMOTIONS…

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({…