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…

Naming conventions for various Vlocity components – User friendly Tech help

This is just a recommendation list, please feel free to share your thoughts and suggestions, to help others n n ClientName_VlocityAbbrevationComponentName n n n n SN n Type n Type-SuggestedPrefix n SuggestedName n n n 1 n VlocityOmniScript n DT_OsXXXX n Example: DT_OsShowUsers n n n 2 n VlocityIntegrationProcedure n DT_IpXXXX n Example: DT_IpGetUsersList n…