Assignment Rules
Create assignment rules to automate your organization’s lead generation and support processes. Lead Assignment Rules—Specify how leads are assigned to users or queues as they are created manually, captured from ....
Create assignment rules to automate your organization’s lead generation and support processes. Lead Assignment Rules—Specify how leads are assigned to users or queues as they are created manually, captured from ....
Returns a value by looking up a related value on a custom object similar to the VLOOKUP() Excel function. The field_to_return must be an auto number, roll-up summary, lookup relationship, ....
1. Through Sales force Import wizard how many records we can import? Using Import wizard, we can upload up to 50000 records. 2. Import wizard will support for which Objects? ....
Enterprise WSDL Strongly typed, the object and its attributes are fixed. Contains the metadata about all standard and custom fields and objects. Can only be used against your Salesforce instance. ....
Deployment methods in Salesforce are Change Sets Eclipse with Force.com IDE installed ANT Tool
1. What is the difference between Lookup Relationship and Master-Detail Relationship? Master – Detail Relationship : 1. We cannot create master – detail relationship type fields directly if records already ....
What are permission sets and how do they differ from profiles? When will you use profile and permission sets together? Difference between roles and profiles? What are controllers? What are ....
SOQL: SELECT Id, Name, Profile.UserLicense.Name FROM User WHERE Name IN ( 'Magulan Duraipandian', 'Test Test' ) Salesforce License Types: Salesforce Designed for users who require full access to standard CRM ....
Force.com - One App is the license which is applied to users who will only use 1 custom application. Cheers!!!
Sample Code: Visualforce Page: <apex:page controller="sample" > <apex:form > <apex:pageBlock > <apex:pageBlockTable value="{!intList}" var="i"> <apex:column value="{!i.Name}"/> <apex:column value="{!i.Member__r.Name}"/> </apex:pageBlockTable> </apex:pageBlock> </apex:form> </apex:page> Apex Controller: public class sample { public List<Interest__c> ....