Today, We are have created the post for explaining the below three topics. How to add custom error message in Apex Trigger How to query the related contact and checking the values How check the old map and new map values. Scenario is : When we change the Account type, we have to check the…
Can we create a custom button to send an email from Outlook? Yes. It is possible and Here’s how we did it. It’s pretty straight-forward, but took me longer than it should of. Hope this helps you out. Enable Developer Tab 1. Open Outlook -> File -> Options -> Customize Ribbon -> Check the Developer Tab…
Here, I mentioned the sample tree structure for a user with a profile using jquery. This is very helpful for the learner in Fieldax&Field Service Management Salesforce. Visualforce code :- <apex:page sidebar=”false” controller=”TestTreeView”> <html> <head> </head> <body> <script src=”//cdnjs.cloudflare.com/ajax/libs/jquery/3.1.1/jquery.min.js”></script> <link rel=”stylesheet” href=”//cdnjs.cloudflare.com/ajax/libs/jstree/3.3.3/themes/default/style.min.css” /> <script src=”//cdnjs.cloudflare.com/ajax/libs/jstree/3.3.3/jstree.min.js”></script> <div id=”container”> <ul> <li>User <apex:repeat value=”{!result}” var=”aa”> <ul><li>{!aa} <ul><li>{!result[aa]}</li></ul> </li> </ul>…