Interaction Log layout in Salesforce
Use the interaction log to write notes in call logs while using a Salesforce console application. A call log is an activity record that automatically generates when you use a ....
Use the interaction log to write notes in call logs while using a Salesforce console application. A call log is an activity record that automatically generates when you use a ....
Chat window: To enable or disable chat settings in Salesforce, follow the below steps 1. Go to Customize --> Chatter --> Chat Settings. 2. Enable or disable to view or hide.
Similar to the way functions work in a programming language, custom Visualforce components allow you to encapsulate common design patterns and then reuse those patterns in one or more Visualforce ....
Sample Code: <apex:page controller="Sample"> <apex:actionstatus id="counterStatus"> <apex:facet name="start"> <div class="waitingSearchDiv" id="el_loading" style="background-color: #fbfbfb; height:100%;opacity:0.65;width:100%;"> <div class="waitingHolder" style="top: 100px; ....
1. Avoid nested loop. Make use of Map data type instead of nested loop. 2. Make use of future methods. 3. Try to use Aggregate SOQL. Check the below link ....
1. Go to Setup --> Monitor --> Log --> Debug logs. 2. Click "New" button and add your name to get the debug logs. 3. Create or update the record ....
It is not possible as of now. Cheers!
1. What are all the relationships available in salesforce? Master Detail Lookup Self Hierarchial 2. How to create 1 to 1 relation ship? Create a rollup of count field in ....
Sample Code: DescribeSObjectResult sobjectRes = Employee__c.sObjectType.getDescribe(); system.debug('Object Label is ' + sobjectRes.getLabel()); system.debug('Key prefix is ' + sobjectRes.getKeyPrefix()); system.debug('Plural Label is ' + sobjectRes.getLabelPlural()); system.debug('Object Name is ' + sobjectRes.getName()); ....