How to make an email template available in lookup search?
To make an email template available in lookup search, enable the 'Available For Use' checkbox.
To make an email template available in lookup search, enable the 'Available For Use' checkbox.
To make approval process active, open the approval process and click 'Activate' button. Cheers!!!
Leaders in cloud computing systems for customer relationship management, CRM, sales, social, call centre, knowledge management software cloud computing. Salesforce is an enterprise cloud computing company that provides business software ....
1. Click 'Developer Console' under your name. 2. Click 'Query Editor', enter your SOQL Query and then click 'Execute' button. (or) Cheers!!!
Sample code: List<User> u = new List<User>();List<Id> ids = new List<Id>();String test = 'test';u = Database.Query('SELECT Id, Name FROM User WHERE Name =: test');System.debug('User details are ' + u);for(User usr ....
In order to test Grant Login access, do the following steps. To Grant Login Access in Salesforce Lightning, follow the below steps. 1. Go to Settings. 2. Select Grant Account Login Access. To Grant ....
Standard controller encapsulates just a single Sobject (e.g. Account, Opportunity). Standard list controller contains a list of records (one or more), and has additional functions to facilicate paging (moving between ....
StandardController Controller Extensions contain the same functionality and logic that are used for standard Salesforce pages. need finer control for how information is accessed for your page, you can write ....
Step 1. Create a new Visualforce page called BasicTemplate. <apex:page><apex:stylesheet value="http://developer.force.com/workbooks/vfdemo.css"/><h1>My Fancy Site</h1><apex:insert name="body"/></apex:page> The key here is the <apex:insert> component. You won’t visit this page (unless developing it) directly. ....
Sample Code: <apex:page> <p>Test Before</p> <apex:include pageName="MainPage"/> <p>Test After</p></apex:page> here MainPage is a another Visualforce page. <apex:page > Main Page : Welcome to Infallible Techie Site </apex:page> Output: