How to call abstract class methods in Salesforce?
Abstract Class: public abstract class SampleAbstract { public Task newTask; public void createT(Id caseId, Id accountId) { newTask = new Task(); ....
Abstract Class: public abstract class SampleAbstract { public Task newTask; public void createT(Id caseId, Id accountId) { newTask = new Task(); ....
1. Go to dataloader.io. 2. Click "Login With Salesforce" button. 3. Select the Environment and click "Login" button. 4. Enter the username and password and click "Login in to Salesforce" ....
1. Go to Workbench and select Apex Execute. 2. Enter the code and click "Execute" button to view the result.
CASESAFEID( ) is used to convert 15 digit Id to 18 digit id in Formula field in Salesforce Cheers!!!
apex:selectOption: If we are sure about the values, we can make use of apex:selectOption. Sample Code: <apex:selectList > <apex:selectOption itemValue="Apple" itemLabel="Apple"/> <apex:selectOption itemValue="Orange" itemLabel="Orange"/> ....
apex:selectOption: If we are sure about the values, we can make use of apex:selectOption. Sample Code: <apex:selectList > <apex:selectOption itemValue="Apple" itemLabel="Apple"/> <apex:selectOption itemValue="Orange" itemLabel="Orange"/> ....
Sample Code: <apex:page sidebar="false" > <apex:iframe height="300" width="300" src="https://infallibletechie.com" scrolling="true"/> </apex:page> Output:
To add console components, go to Setup --> Customize --> Console --> Custom Console Components.
1. Edit the page layout. 2. Click the gear icon. 3. Re-arrange the fields.
getQueries() getQueries() returns the number of SOQL queries that have been executed as of now. Cheers!!!